123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752 |
- ngram,count,df,len
- space,26683,0.14332984180699918,5
- standard,26036,0.13985443020976016,8
- quantum,25736,0.1382429565170682,7
- equation,25576,0.13738350388096582,8
- scalar,25499,0.13696989229984155,6
- data,25270,0.13573980071442002,4
- decay,24168,0.12982032068326485,5
- limit,23498,0.12622136276958612,5
- quark,23380,0.12558751645046062,5
- value,23312,0.1252222490801171,5
- particle,23280,0.12505035855289662,8
- matter,23207,0.12465823328767492,6
- solution,22825,0.12260629011898047,8
- coupling,21939,0.11784707114656354,8
- effective,21659,0.11634302903338437,9
- potential,21137,0.11353906480810035,9
- structure,21118,0.11343700480756318,9
- general,20976,0.11267424059302232,7
- interaction,20968,0.1126312679612172,11
- qcd,20621,0.11076733005667015,3
- scale,20583,0.11056321005559584,5
- different,20378,0.10946203636558967,9
- analysis,20328,0.10919345741680767,8
- particular,20251,0.1087798458356834,10
- approach,20113,0.1080385679370451,8
- dimension,19551,0.10501974055273548,9
- contribution,18861,0.10131335105954395,12
- phase,18581,0.09980930894636478,5
- time,18301,0.09830526683318562,4
- system,18246,0.09800982998952543,6
- possible,18189,0.09770364998791395,8
- production,18113,0.09729540998576532,10
- number,18109,0.09727392366986276,6
- method,18064,0.09703220261595896,6
- form,18024,0.09681733945693337,4
- spectrum,17535,0.09419063733784545,8
- correction,17079,0.09174119732495367,10
- physic,17062,0.09164988048236779,6
- paper,17044,0.09155319206080627,5
- property,16991,0.09126849837509736,8
- constraint,16708,0.08974834152499127,10
- background,16645,0.08940993204952596,10
- calculation,16485,0.08855047941342357,11
- gravity,16436,0.08828727204361722,7
- experimental,16235,0.0872075846695136,12
- constant,16019,0.08604732361077538,8
- experiment,15888,0.08534364676496656,10
- higgs,15733,0.08451105202374237,5
- process,15703,0.08434990465447319,7
- operator,15663,0.0841350414954476,8
- first,15620,0.08390406359949507,5
- study,15491,0.08321112991163752,5
- framework,15386,0.08264711411919534,9
- standard_model,15371,0.08256654043456074,14
- condition,15188,0.08158354148201864,9
- recent,15065,0.08092283726801493,6
- supersymmetric,14759,0.07927913410146913,14
- neutrino,14681,0.07886015094136921,8
- lhc,14656,0.07872586146697821,3
- light,14635,0.07861305830848977,5
- boson,14610,0.07847876883409878,5
- small,14579,0.07831224988585395,5
- group,14510,0.07794161093653479,5
- momentum,14357,0.07711975935326189,8
- density,14326,0.07695324040501705,7
- due,14282,0.0767168909300889,3
- point,14279,0.07670077619316198,5
- region,14216,0.07636236671769667,6
- distribution,14128,0.07588966776784035,12
- current,14027,0.07534713829130073,7
- type,13771,0.07397201407353692,4
- relation,13753,0.0738753256519754,8
- prediction,13578,0.07293529933123842,10
- dark,13443,0.07221013616952704,4
- vacuum,13377,0.0718556119571348,6
- present,13135,0.07055568984502994,7
- high,13097,0.07035156984395563,4
- sector,13047,0.07008299089517364,6
- scenario,12961,0.0696210351032686,8
- bound,12904,0.06931485510165714,5
- problem,12853,0.0690409045738995,7
- example,12805,0.06878306878306878,7
- transition,12600,0.0676818950930626,10
- heavy,12543,0.06737571509145113,5
- chiral,12477,0.0670211908790589,6
- black,12406,0.06663980877178846,5
- action,12277,0.06594687508393092,6
- charge,12239,0.06574275508285661,6
- work,12174,0.06539360244944001,4
- matrix,12160,0.06531840034378106,6
- finite,12105,0.06502296350012086,6
- fermion,12028,0.06460935191899658,7
- amplitude,11984,0.06437300244406843,9
- string,11969,0.06429242875943383,6
- strong,11955,0.06421722665377488,6
- level,11953,0.0642064834958236,5
- temperature,11814,0.06345983401820965,11
- hole,11745,0.0630891950688905,4
- su,11626,0.06244997717078935,2
- class,11565,0.06212231085327532,5
- black_hole,11564,0.06211693927429968,10
- measurement,11553,0.06205785190556764,11
- factor,11406,0.06126822979614858,6
- cosmological,11396,0.061214514006392176,12
- gev,11371,0.06108022453200118,3
- simple,11220,0.06026911610667956,6
- mechanism,11151,0.05989847715736041,9
- expansion,11150,0.059893105578384766,9
- collision,11130,0.05978567399887197,9
- vector,11112,0.05968898557731045,6
- way,10942,0.05877581715145167,3
- presence,10941,0.05877044557247603,8
- invariant,10915,0.05863078451910939,9
- meson,10878,0.05843203609701072,5
- collider,10866,0.05836757714930304,8
- higher,10830,0.05817420030618,6
- section,10817,0.058104369779496685,7
- dynamic,10773,0.05786802030456853,7
- range,10693,0.057438293986517334,5
- mode,10681,0.057373835038809655,4
- low,10681,0.057373835038809655,3
- description,10475,0.05626728976982784,11
- various,10474,0.0562619181908522,7
- ratio,10424,0.05599333924207021,5
- cross,10353,0.05561195713479977,5
- dark_matter,10351,0.055601213976848494,11
- future,10336,0.055520640292213895,6
- perturbation,10329,0.05548303923938442,12
- hadron,10328,0.05547766766040878,6
- consistent,10297,0.05531114871216394,10
- physical,9965,0.0535277844922515,8
- corresponding,9863,0.05297988343673623,13
- spin,9768,0.05246958343405044,4
- loop,9746,0.05235140869658636,4
- dependence,9570,0.05140601079687374,10
- theoretical,9494,0.05099777079472511,11
- pair,9464,0.05083662342545591,4
- gravitational,9419,0.05059490237155212,13
- lepton,9417,0.050584159213600835,6
- lattice,9411,0.050551929739746995,7
- boundary,9392,0.05044986973920984,8
- flavor,9377,0.05036929605457524,6
- scattering,9343,0.05018666236940349,10
- geometry,9301,0.04996105605242661,8
- conformal,9175,0.04928423710149599,9
- magnetic,9159,0.049198291837885745,8
- several,9138,0.049085488679397306,7
- universe,9066,0.048698734993151235,8
- dimensional,9001,0.04834958235973465,11
- massive,8982,0.048247522359197485,7
- extension,8973,0.048199178148416726,9
- important,8972,0.04819380656944109,9
- scalar_field,8966,0.04816157709558725,12
- formalism,8940,0.048021916042220614,9
- minimal,8930,0.04796820025246421,7
- tensor,8897,0.04779093814626809,6
- numerical,8849,0.04753310235543738,9
- spacetime,8843,0.04750087288158354,9
- supersymmetry,8831,0.04743641393387586,13
- evolution,8820,0.047377326565143825,9
- approximation,8757,0.047038917089678514,13
- set,8689,0.046673649719335,3
- free,8687,0.04666290656138372,4
- role,8661,0.046523245508017085,4
- part,8581,0.04609351918996589,4
- violation,8560,0.04598071603147745,9
- low_energy,8498,0.04564767813498778,10
- perturbative,8462,0.04545430129186474,12
- feature,8455,0.04541670023903526,7
- correlation,8405,0.04514812129025327,11
- gluon,8344,0.04482045497273924,5
- representation,8333,0.044761367604007195,14
- classical,8298,0.0445733623398598,9
- single,8292,0.044541132866005965,6
- search,8257,0.04435312760185857,6
- possibility,8255,0.044342384443907285,11
- direct,8152,0.04378911180941638,6
- behavior,8101,0.04351516128165874,8
- previous,8097,0.043493674965756186,8
- high_energy,8085,0.04342921601804851,11
- rate,8063,0.043311041280584425,4
- tev,8059,0.04328955496468187,3
- existence,8056,0.04327344022775495,9
- exact,8035,0.04316063706926651,5
- context,8030,0.04313377917438831,7
- second,8014,0.04304783391077807,6
- photon,7981,0.04287057180458196,6
- mixing,7954,0.04272553917223968,6
- local,7903,0.04245158864448204,5
- agreement,7903,0.04245158864448204,9
- dual,7893,0.04239787285472565,4
- linear,7823,0.042021862326430855,6
- certain,7793,0.041860714957161656,7
- breaking,7789,0.0418392286412591,8
- wave,7772,0.04174791179867322,4
- explicit,7736,0.041554534955550185,8
- application,7567,0.04064673810866704,11
- dynamical,7555,0.04058227916095936,9
- account,7455,0.04004512126339538,7
- electroweak,7454,0.040039749684419736,11
- relevant,7426,0.03988934547310182,8
- baryon,7419,0.03985174442027234,6
- signal,7374,0.03961002336636854,6
- arbitrary,7268,0.039040635994950716,9
- channel,7243,0.03890634652055972,7
- construction,7173,0.03853033599226493,12
- observables,7168,0.038503478097386724,11
- relativistic,7161,0.03846587704455725,12
- critical,7153,0.03842290441275213,8
- addition,7135,0.03832621599119061,8
- observation,7096,0.038116724411140654,11
- additional,6998,0.03759030967152795,10
- event,6995,0.03757419493460103,5
- massless,6967,0.03742379072328311,8
- resonance,6948,0.03732173072274595,9
- expression,6938,0.03726801493298955,10
- algebra,6934,0.037246528617086994,7
- formula,6890,0.03701017914215884,7
- full,6844,0.036763086509279404,4
- weak,6834,0.036709370719523,4
- gamma,6818,0.03662342545591277,5
- similar,6802,0.036537480192302525,7
- implication,6758,0.03630113071737437,11
- detail,6750,0.03625815808556925,6
- metric,6740,0.03620444229581286,6
- transverse,6736,0.036182955979910295,10
- asymmetry,6727,0.036134611769129535,9
- independent,6698,0.03597883597883598,11
- supergravity,6698,0.03597883597883598,12
- renormalization,6680,0.03588214755727446,15
- configuration,6605,0.03547927913410147,13
- coefficient,6512,0.03497972228936696,11
- bulk,6472,0.034764859130341365,4
- holographic,6445,0.034619826497999086,11
- hadronic,6444,0.034614454919023444,8
- final,6432,0.03454999597131577,5
- integral,6422,0.03449628018155937,8
- global,6360,0.03416324228506969,6
- degree,6343,0.034071925442483816,6
- source,6303,0.03385706228345822,6
- extra,6251,0.03357774017672495,5
- special,6231,0.03347030859721215,7
- technique,6217,0.033395106491553195,9
- symmetric,6170,0.03314264227969812,9
- ad,6140,0.03298149491042892,2
- component,6125,0.03290092122579432,9
- many,6100,0.032766631751403326,4
- one,6074,0.03262697069803669,3
- inflation,6058,0.03254102543442645,9
- anomaly,6052,0.03250879596057261,7
- power,6052,0.03250879596057261,5
- thermal,6049,0.03249268122364569,7
- transformation,6049,0.03249268122364569,14
- diagram,6045,0.03247119490774313,7
- total,6016,0.032315419117449576,5
- lagrangian,5985,0.032148900169204735,10
- information,5970,0.03206832648457014,11
- entropy,5970,0.03206832648457014,7
- cp,5954,0.0319823812209599,2
- consequence,5949,0.0319555233260817,11
- larger,5940,0.03190717911530094,6
- regime,5925,0.031826605430666344,6
- invariance,5894,0.03166008648242151,10
- dirac,5893,0.03165471490344587,5
- fundamental,5864,0.03149893911315231,11
- complex,5837,0.03135390648081003,7
- fluctuation,5810,0.031208873848467756,11
- initial,5795,0.03112830016383316,7
- flux,5788,0.031090699111003678,4
- oscillation,5763,0.030956409636612683,11
- topological,5740,0.030832863320172967,11
- one_loop,5730,0.030779147530416565,8
- uncertainty,5708,0.03066097279295249,11
- flat,5696,0.03059651384524481,4
- specific,5687,0.03054816963446405,8
- simulation,5658,0.030392393844170494,10
- sigma,5631,0.03024736121182822,5
- phenomenological,5621,0.030193645422071817,16
- horizon,5616,0.03016678752719362,7
- sum,5609,0.03012918647436414,3
- brane,5606,0.03011307173743722,5
- freedom,5583,0.029989525420997504,7
- latter,5541,0.029763919104020625,6
- proton,5523,0.02966723068245911,6
- formulation,5510,0.02959740015577579,11
- duality,5506,0.029575913839873232,7
- anomalous,5495,0.02951682647114119,9
- angle,5494,0.029511454892165553,5
- parton,5492,0.02950071173421427,6
- electromagnetic,5482,0.029446995944457873,15
- difference,5466,0.029361050680847635,10
- complete,5451,0.029280476996213035,8
- cosmic,5418,0.02910321489001692,6
- rule,5392,0.028963553836650283,4
- scheme,5385,0.028925952783820805,6
- neutral,5383,0.028915209625869524,7
- significant,5364,0.028813149625332365,11
- yang_mills,5357,0.028775548572502887,10
- pion,5302,0.028480111728842693,4
- good,5294,0.028437139097037573,4
- motion,5284,0.028383423307281174,6
- moment,5283,0.028378051728305535,6
- differential,5240,0.02814707383235302,12
- generalized,5227,0.028077243305669703,11
- experimental_data,5185,0.027851636988692825,17
- curvature,5184,0.027846265409717186,9
- singularity,5177,0.027808664356887707,11
- precision,5176,0.02780329277791207,9
- generation,5173,0.02778717804098515,10
- element,5161,0.02772271909327747,7
- nucleon,5140,0.02760991593478903,7
- natural,5077,0.02727150645932372,7
- interesting,5056,0.02715870330083528,11
- product,5054,0.027147960142884002,7
- new_physic,5049,0.0271211022480058,10
- angular,5043,0.02708887277415196,7
- real,5034,0.0270405285633712,4
- universal,5032,0.027029785405419924,9
- final_state,5011,0.026916982246931485,11
- nuclear,5011,0.026916982246931485,7
- radiation,5005,0.026884752773077645,9
- principle,4990,0.02680417908844305,9
- version,4986,0.026782692772540487,7
- generic,4979,0.026745091719711008,7
- ii,4965,0.02666988961405205,2
- connection,4960,0.02664303171917385,10
- nature,4958,0.026632288561222572,6
- electron,4936,0.026514113823758494,8
- analytic,4935,0.026508742244782856,8
- space_time,4931,0.026487255928880293,10
- cosmology,4924,0.026449654876050815,9
- size,4890,0.02626702119087906,4
- electric,4866,0.0261381032954637,8
- comparison,4854,0.026073644347756022,10
- stable,4852,0.026062901189804744,6
- quantity,4845,0.026025300136975262,8
- interpretation,4837,0.025982327505170145,14
- correspondence,4810,0.02583729487282787,14
- signature,4794,0.02575134960921763,9
- hamiltonian,4778,0.025665404345607393,11
- surface,4722,0.025364595922971557,7
- asymptotic,4691,0.02519807697472672,10
- novel,4689,0.02518733381677544,5
- observed,4682,0.025149732763945963,8
- spectral,4676,0.025117503290092123,8
- sensitivity,4671,0.025090645395213922,11
- soft,4659,0.025026186447506243,4
- test,4655,0.025004700131603684,4
- computation,4654,0.024999328552628045,11
- detection,4635,0.024897268552090887,9
- variable,4588,0.02464480434023581,8
- expectation,4586,0.024634061182284533,11
- available,4576,0.024580345392528135,9
- candidate,4543,0.024403083286332016,9
- main,4542,0.024397711707356377,4
- deformation,4542,0.024397711707356377,11
- impact,4531,0.02433862433862434,6
- procedure,4478,0.024053930652915424,9
- sm,4471,0.024016329600085946,2
- jet,4470,0.024010958021110307,3
- evidence,4457,0.02394112749442699,8
- phenomenon,4449,0.023898154862621868,10
- flow,4424,0.02376386538823087,4
- origin,4419,0.023737007493352672,6
- double,4406,0.023667176966669354,6
- family,4397,0.023618832755888594,6
- usual,4388,0.023570488545107834,5
- radiative,4386,0.023559745387156553,9
- width,4384,0.023549002229205276,5
- top,4374,0.023495286439448877,3
- lower,4370,0.023473800123546315,5
- central,4364,0.02344157064969248,7
- mean,4362,0.023430827491741198,4
- derivative,4336,0.02329116643837456,10
- generalization,4329,0.023253565385545082,14
- delta,4310,0.023151505385007924,5
- use,4303,0.023113904332178446,3
- manifold,4299,0.023092418016275883,8
- determination,4274,0.022958128541884885,13
- fact,4270,0.022936642225982327,4
- literature,4266,0.022915155910079768,10
- respect,4236,0.022754008540810573,7
- direction,4202,0.022571374855638815,9
- stability,4200,0.022560631697687534,9
- polarization,4198,0.022549888539736256,12
- fit,4194,0.022528402223833698,3
- magnitude,4185,0.022480058013052938,9
- negative,4174,0.022420970644320897,8
- annihilation,4154,0.0223135390648081,12
- modulus,4137,0.022222222222222223,7
- collaboration,4132,0.022195364327344022,13
- aspect,4123,0.022147020116563262,6
- heavy_ion,4083,0.02193215695753767,9
- condensate,4079,0.02191067064163511,10
- open,4072,0.021873069588805628,4
- compact,4057,0.02179249590417103,7
- phenomenology,4047,0.021738780114414633,13
- color,4045,0.021728036956463352,5
- choice,4021,0.021599119061047996,6
- line,4014,0.021561518008218514,4
- magnetic_field,4010,0.021540031692315956,14
- static,3988,0.021421856954851878,6
- smaller,3968,0.02131442537533908,7
- vertex,3966,0.0213036822173878,6
- rise,3963,0.021287567480460883,4
- probe,3955,0.021244594848655762,5
- detailed,3947,0.021201622216850645,8
- assumption,3941,0.021169392742996805,10
- detector,3937,0.021147906427094243,8
- modification,3919,0.021051218005532727,12
- infinite,3910,0.021002873794751967,8
- early,3878,0.02083098326753149,5
- sensitive,3846,0.020659092740311014,9
- theorem,3844,0.020648349582359733,7
- positive,3840,0.020626863266457175,8
- quantum_field,3831,0.020578519055676415,13
- combination,3831,0.020578519055676415,11
- fermionic,3831,0.020578519055676415,9
- boundary_condition,3822,0.02053017484489566,18
- pure,3819,0.02051406010796874,4
- plasma,3819,0.02051406010796874,6
- hierarchy,3818,0.020508688528993096,9
- mev,3795,0.02038514221255338,3
- plane,3794,0.02037977063357774,5
- issue,3793,0.020374399054602102,5
- non_trivial,3790,0.020358284317675182,11
- lambda,3789,0.02035291273869954,6
- picture,3786,0.02033679800177262,7
- lorentz,3785,0.02033142642279698,7
- coordinate,3782,0.02031531168587006,10
- basis,3781,0.020309940106894422,5
- branes,3769,0.020245481159186743,6
- beta,3755,0.020170279053527786,4
- non_perturbative,3743,0.020105820105820106,16
- covariant,3737,0.020073590631966266,9
- distance,3734,0.020057475895039346,8
- strength,3731,0.020041361158112427,8
- systematic,3724,0.020003760105282948,10
- reduction,3721,0.019987645368356028,9
- law,3719,0.019976902210404747,3
- sitter,3707,0.01991244326269707,6
- spatial,3699,0.01986947063089195,7
- dependent,3696,0.01985335589396503,9
- exchange,3688,0.019810383262159913,8
- susy,3688,0.019810383262159913,4
- first_order,3677,0.019751295893427872,11
- yukawa,3669,0.019708323261622755,6
- external,3663,0.019676093787768915,8
- effective_field,3644,0.019574033787231757,15
- radius,3641,0.019557919050304837,6
- tree_level,3604,0.019359170628206163,10
- observable,3603,0.01935379904923052,10
- einstein,3595,0.019310826417425403,8
- threshold,3586,0.019262482206644643,9
- effective_field_theory,3557,0.019106706416351087,22
- four_dimensional,3551,0.019074476942497247,16
- alpha,3548,0.019058362205570327,5
- bosonic,3539,0.019010017994789567,7
- excitation,3523,0.01892407273117933,10
- discrete,3521,0.01891332957322805,8
- analytical,3490,0.018746810624983214,10
- quantization,3480,0.018693094835226815,12
- planck,3480,0.018693094835226815,6
- singlet,3472,0.018650122203421694,7
- upper,3454,0.01855343378186018,5
- estimate,3448,0.01852120430800634,8
- relativity,3405,0.018290226412053825,10
- factorization,3400,0.018263368517175624,13
- wilson,3377,0.018139822200735907,6
- quantum_field_theory,3372,0.018112964305857706,20
- fixed,3367,0.01808610641097951,5
- extended,3363,0.018064620095076946,8
- equivalent,3353,0.018010904305320548,10
- mu,3351,0.01800016114736927,2
- abelian,3339,0.01793570219966159,7
- length,3338,0.017930330620685952,6
- pi,3328,0.017876614830929553,2
- mssm,3324,0.01785512851502699,4
- volume,3322,0.017844385357075714,6
- next_to_leading,3311,0.017785297988343673,15
- n2,3295,0.017699352724733435,2
- cosmological_constant,3285,0.017645636934977036,21
- noncommutative,3283,0.01763489377702576,14
- necessary,3282,0.017629522198050116,9
- relative,3280,0.01761877904009884,8
- heavy_quark,3278,0.017608035882147557,11
- effective_theory,3275,0.017591921145220638,16
- appropriate,3271,0.01757043482931808,11
- ground,3262,0.01752209061853732,6
- muon,3255,0.01748448956570784,4
- infrared,3239,0.017398544302097602,8
- change,3238,0.01739317272312196,6
- reaction,3228,0.01733945693336556,8
- fraction,3220,0.017296484301560444,8
- able,3215,0.017269626406682243,4
- precise,3213,0.017258883248730966,7
- chemical,3207,0.017226653774877126,8
- canonical,3179,0.017076249563559208,9
- idea,3177,0.017065506405607927,4
- scaling,3176,0.017060134826632288,7
- geometric,3165,0.01700104745790025,9
- target,3164,0.01699567587892461,6
- characteristic,3163,0.01699030429994897,14
- finite_temperature,3158,0.016963446405070772,18
- force,3147,0.01690435903633873,5
- effective_action,3146,0.016898987457363093,16
- flavour,3142,0.016877501141460534,7
- deviation,3142,0.016877501141460534,9
- two_dimensional,3137,0.016850643246582333,15
- nonlinear,3131,0.016818413772728493,9
- conformal_field,3117,0.016743211667069536,15
- propagator,3111,0.016710982193215696,10
- i.e,3102,0.016662637982434936,3
- lightest,3101,0.016657266403459298,8
- next_to_leading_order,3101,0.016657266403459298,21
- non_abelian,3099,0.016646523245508017,11
- higher_order,3092,0.016608922192678538,12
- series,3090,0.016598179034727257,6
- mechanic,3089,0.016592807455751618,8
- tool,3088,0.01658743587677598,4
- show,3088,0.01658743587677598,4
- tau,3087,0.016582064297800337,3
- star,3086,0.016576692718824698,4
- probability,3085,0.01657132113984906,11
- multiple,3085,0.01657132113984906,8
- kinetic,3084,0.016565949560873417,7
- nucleus,3076,0.0165229769290683,7
- hard,3074,0.01651223377111702,4
- accuracy,3070,0.01649074745521446,8
- statistical,3064,0.01645851798136062,11
- argument,3050,0.016383315875701663,8
- inflationary,3048,0.016372572717750382,12
- zero,3046,0.016361829559799104,4
- useful,3045,0.016356457980823462,6
- formation,3036,0.016308113770042706,9
- compatible,3035,0.016302742191067063,10
- behaviour,3032,0.016286627454140144,9
- conformal_field_theory,3019,0.016216796927456825,22
- question,3019,0.016216796927456825,8
- unitarity,3017,0.016206053769505548,9
- conventional,3013,0.016184567453602985,12
- emission,2980,0.01600730534740687,8
- dominant,2979,0.01600193376843123,8
- alternative,2978,0.01599656218945559,11
- sim,2970,0.01595358955765047,3
- realization,2964,0.015921360083796632,11
- view,2943,0.015808556925308196,4
- partition,2940,0.015792442188381276,9
- suitable,2925,0.015711868503746677,8
- relic,2918,0.015674267450917198,5
- pattern,2913,0.015647409556038997,7
- hand,2910,0.015631294819112077,4
- object,2904,0.01559906534525824,6
- functional,2901,0.01558295060833132,10
- discovery,2899,0.01557220745038004,9
- medium,2898,0.0155668358714044,6
- doublet,2896,0.01555609271345312,7
- n4,2891,0.01552923481857492,2
- top_quark,2883,0.015486262186769802,9
- so_called,2881,0.01547551902881852,9
- generator,2881,0.01547551902881852,9
- pole,2881,0.01547551902881852,4
- dipole,2880,0.015470147449842882,6
- majorana,2868,0.015405688502135202,8
- intermediate,2868,0.015405688502135202,12
- large_hadron,2858,0.015351972712378804,12
- equal,2856,0.015341229554427524,5
- cft,2856,0.015341229554427524,3
- extra_dimension,2854,0.015330486396476245,15
- domain,2833,0.015217683237987806,6
- bar,2830,0.015201568501060888,3
- general_relativity,2827,0.015185453764133968,18
- shape,2826,0.015180082185158327,5
- adscft,2824,0.015169339027207048,6
- conjecture,2822,0.015158595869255768,10
- phi,2822,0.015158595869255768,3
- consistency,2821,0.015153224290280128,11
- short,2819,0.015142481132328849,5
- contrast,2807,0.015078022184621169,8
- tension,2803,0.01505653586871861,7
- ordinary,2794,0.01500819165793785,8
- inclusive,2790,0.014986705342035292,9
- large_hadron_collider,2787,0.014970590605108372,21
- spontaneous,2783,0.014949104289205812,11
- realistic,2781,0.014938361131254532,9
- chern_simons,2779,0.014927617973303253,12
- pp,2765,0.014852415867644294,2
- shift,2750,0.014771842183009696,5
- partial,2725,0.014637552708618698,7
- ion,2706,0.01453549270808154,3
- exotic,2706,0.01453549270808154,6
- basic,2705,0.014530121129105901,5
- pseudoscalar,2701,0.014508634813203341,12
- euclidean,2700,0.014503263234227702,9
- graviton,2698,0.014492520076276421,8
- instability,2690,0.014449547444471302,11
- entanglement,2689,0.014444175865495663,12
- discussion,2684,0.014417317970617464,10
- internal,2677,0.014379716917787983,8
- divergence,2673,0.014358230601885425,10
- second_order,2668,0.014331372707007226,12
- index,2667,0.014326001128031585,5
- review,2663,0.014304514812129025,6
- enhancement,2662,0.014299143233153386,11
- branching,2659,0.014283028496226466,9
- original,2654,0.014256170601348267,8
- treatment,2652,0.014245427443396987,9
- cal,2650,0.014234684285445706,3
- n1,2632,0.014137995863884189,2
- article,2630,0.01412725270593291,7
- least,2629,0.014121881126957269,5
- identity,2622,0.01408428007412779,8
- right_handed,2619,0.01406816533720087,12
- wide,2619,0.01406816533720087,4
- neutrino_mass,2606,0.013998334810517552,13
- neutron,2601,0.013971476915639353,7
- logarithmic,2599,0.013960733757688073,11
- velocity,2596,0.013944619020761153,8
- inverse,2588,0.013901646388956034,7
- beam,2577,0.013842559020223995,4
- chiral_symmetry,2574,0.013826444283297075,15
- absence,2574,0.013826444283297075,7
- thermodynamics,2571,0.013810329546370155,14
- monte,2554,0.013719012703784277,5
- strong_coupling,2547,0.013681411650954798,15
- closed,2545,0.013670668493003519,6
- modified,2544,0.013665296914027878,8
- prospect,2541,0.013649182177100958,8
- unification,2541,0.013649182177100958,11
- end,2541,0.013649182177100958,3
- year,2538,0.013633067440174038,4
- interest,2537,0.0136276958611984,8
- quadratic,2523,0.01355249375553944,9
- qed,2521,0.013541750597588161,3
- carlo,2509,0.013477291649880482,5
- long,2503,0.013445062176026644,4
- unique,2503,0.013445062176026644,6
- hidden,2502,0.013439690597051003,6
- understanding,2501,0.013434319018075363,13
- development,2500,0.013428947439099724,11
- derivation,2497,0.013412832702172804,10
- investigation,2494,0.013396717965245884,13
- proposal,2494,0.013396717965245884,8
- note,2492,0.013385974807294605,4
- other_hand,2491,0.013380603228318964,10
- correct,2487,0.013359116912416405,7
- crucial,2485,0.013348373754465124,7
- parity,2485,0.013348373754465124,6
- frame,2483,0.013337630596513845,5
- error,2465,0.013240942174952327,5
- inelastic,2462,0.013224827438025407,9
- luminosity,2460,0.013214084280074128,10
- primordial,2456,0.013192597964171568,10
- frequency,2453,0.013176483227244648,9
- rhic,2451,0.013165740069293368,4
- unitary,2447,0.01314425375339081,7
- fluid,2445,0.01313351059543953,5
- le,2441,0.01311202427953697,2
- valid,2440,0.01310665270056133,5
- nonperturbative,2431,0.013058308489780571,15
- higgs_boson,2426,0.013031450594902372,11
- integrable,2424,0.013020707436951091,10
- feynman,2412,0.012956248489243413,7
- nontrivial,2407,0.012929390594365214,10
- suppression,2406,0.012924019015389573,11
- thermodynamic,2406,0.012924019015389573,13
- increase,2406,0.012924019015389573,8
- spacetimes,2403,0.012907904278462654,10
- non_linear,2385,0.012811215856901136,10
- consideration,2378,0.012773614804071657,13
- sign,2372,0.012741385330217818,4
- super,2371,0.012736013751242177,5
- ansatz,2370,0.012730642172266538,6
- content,2367,0.012714527435339618,7
- _dimensional,2361,0.012682297961485779,12
- supersymmetric_standard,2337,0.012553380066070421,23
- kind,2337,0.012553380066070421,4
- bps,2335,0.012542636908119142,3
- supersymmetric_standard_model,2333,0.012531893750167862,29
- elastic,2333,0.012531893750167862,7
- tree,2332,0.012526522171192222,4
- variation,2325,0.012488921118362743,9
- uv,2325,0.012488921118362743,2
- proportional,2319,0.012456691644508903,12
- path,2310,0.012408347433728144,4
- angular_momentum,2305,0.012381489538849945,16
- two_loop,2302,0.012365374801923025,8
- unstable,2301,0.012360003222947386,8
- viable,2301,0.012360003222947386,6
- non_zero,2299,0.012349260064996105,8
- astrophysical,2297,0.012338516907044825,13
- maximal,2296,0.012333145328069187,7
- continuum,2295,0.012327773749093546,9
- iib,2290,0.012300915854215347,3
- algebraic,2286,0.012279429538312786,9
- explanation,2282,0.012257943222410228,11
- equilibrium,2280,0.012247200064458948,11
- charm,2279,0.012241828485483308,5
- dilaton,2279,0.012241828485483308,7
- status,2279,0.012241828485483308,6
- definition,2273,0.012209599011629468,10
- wall,2272,0.01220422743265383,4
- leptonic,2272,0.01220422743265383,8
- introduction,2271,0.012198855853678189,12
- nlo,2270,0.012193484274702548,3
- area,2269,0.01218811269572691,4
- key,2265,0.012166626379824349,3
- superconformal,2254,0.01210753901109231,14
- good_agreement,2253,0.012102167432116671,14
- unified,2253,0.012102167432116671,7
- confinement,2239,0.012026965326457712,11
- deep,2235,0.012005479010555153,4
- dispersion,2234,0.012000107431579513,10
- nu,2228,0.011967877957725673,2
- simplest,2220,0.011924905325920554,8
- minkowski,2218,0.011914162167969275,9
- next,2218,0.011914162167969275,4
- yield,2217,0.011908790588993634,5
- composite,2215,0.011898047431042355,9
- program,2213,0.011887304273091075,7
- quark_gluon,2211,0.011876561115139796,11
- transport,2208,0.011860446378212876,9
- attention,2208,0.011860446378212876,9
- tevatron,2206,0.011849703220261595,8
- situation,2202,0.011828216904359036,9
- minimum,2201,0.011822845325383396,7
- gap,2191,0.011769129535626997,3
- e+e_,2182,0.01172078532484624,4
- correlators,2175,0.011683184272016759,11
- third,2169,0.01165095479816292,5
- gas,2169,0.01165095479816292,3
- light_cone,2169,0.01165095479816292,10
- world,2167,0.01164021164021164,5
- regularization,2155,0.011575752692503962,14
- three_dimensional,2153,0.011565009534552681,17
- magnetic_moment,2150,0.011548894797625763,15
- associated,2144,0.011516665323771923,10
- input,2143,0.011511293744796283,5
- cross_section,2137,0.011479064270942443,13
- variety,2129,0.011436091639137324,7
- abundance,2117,0.011371632691429646,9
- eta,2117,0.011371632691429646,3
- gauge_theory,2109,0.011328660059624527,12
- center,2107,0.011317916901673247,6
- gravitational_wave,2106,0.011312545322697607,18
- rapidity,2101,0.011285687427819407,8
- instanton,2098,0.011269572690892488,9
- constituent,2096,0.011258829532941208,11
- compactification,2091,0.011231971638063009,16
- longitudinal,2083,0.01118899900625789,12
- earlier,2081,0.01117825584830661,7
- distinct,2081,0.01117825584830661,8
- harmonic,2081,0.01117825584830661,8
- cm,2077,0.01115676953240405,2
- virtual,2076,0.01115139795342841,7
- strange,2075,0.01114602637445277,7
- lowest,2072,0.01112991163752585,6
- axion,2069,0.011113796900598931,5
- normal,2069,0.011113796900598931,6
- kinematic,2068,0.01110842532162329,9
- equivalence,2067,0.011103053742647652,11
- excess,2057,0.011049337952891253,6
- curve,2053,0.011027851636988693,5
- requirement,2052,0.011022480058013052,11
- propagation,2049,0.011006365321086134,11
- seesaw,2049,0.011006365321086134,6
- solar,2044,0.010979507426207933,5
- cp_violation,2044,0.010979507426207933,12
- observational,2038,0.010947277952354095,13
- chain,2036,0.010936534794402814,5
- compactifications,2035,0.010931163215427175,17
- step,2033,0.010920420057475896,4
- numerical_result,2031,0.010909676899524615,16
- typical,2023,0.010866704267719495,7
- lie,2023,0.010866704267719495,3
- exclusive,2021,0.010855961109768216,9
- singular,2020,0.010850589530792577,8
- inflaton,2017,0.010834474793865657,8
- non_relativistic,2016,0.010829103214890017,16
- null,2011,0.010802245320011818,4
- responsible,2007,0.010780759004109257,11
- first_time,2005,0.010770015846157978,10
- direct_detection,1998,0.0107324147933285,16
- perspective,1996,0.01072167163537722,11
- q2,1984,0.01065721268766954,2
- evaluation,1981,0.01064109795074262,10
- homogeneous,1976,0.010614240055864421,11
- topology,1968,0.010571267424059302,8
- inclusion,1968,0.010571267424059302,9
- jpsi,1968,0.010571267424059302,4
- degenerate,1967,0.010565895845083662,10
- early_universe,1965,0.010555152687132382,14
- algorithm,1959,0.010522923213278542,9
- underlying,1946,0.010453092686595224,10
- setup,1943,0.010436977949668306,5
- coulomb,1943,0.010436977949668306,7
- related,1938,0.010410120054790105,7
- transfer,1937,0.010404748475814466,8
- approximate,1932,0.010377890580936267,11
- soliton,1929,0.010361775844009347,7
- progress,1917,0.010297316896301667,8
- mixed,1915,0.010286573738350388,5
- comment,1914,0.010281202159374747,7
- polynomial,1913,0.010275830580399109,10
- map,1912,0.010270459001423468,3
- axial,1910,0.010259715843472189,5
- average,1910,0.010259715843472189,7
- importance,1909,0.010254344264496548,10
- eigenvalue,1905,0.01023285794859399,10
- ultraviolet,1904,0.010227486369618349,11
- kaluza_klein,1900,0.01020600005371579,12
- much,1899,0.01020062847474015,4
- heavy_ion_collision,1894,0.01017377057986195,19
- conservation,1893,0.01016839900088631,12
- amount,1891,0.01015765584293503,6
- influence,1886,0.010130797948056831,9
- exponent,1882,0.010109311632154271,8
- ray,1876,0.010077082158300433,3
- essential,1874,0.010066339000349152,9
- calabi_yau,1873,0.010060967421373513,10
- fermi,1869,0.010039481105470953,5
- concept,1865,0.010017994789568394,7
- reach,1851,0.009942792683909435,5
- continuous,1847,0.009921306368006876,10
- fusion,1846,0.009915934789031236,6
- separation,1845,0.009910563210055595,10
- planar,1835,0.009856847420299197,6
- rho,1835,0.009856847420299197,3
- elementary,1833,0.009846104262347917,10
- upper_bound,1824,0.009797760051567158,11
- on_shell,1821,0.009781645314640238,8
- validity,1821,0.009781645314640238,8
- well_known,1819,0.009770902156688958,10
- side,1816,0.009754787419762039,4
- non,1811,0.00972792952488384,3
- profile,1803,0.00968495689307872,7
- cold,1803,0.00968495689307872,4
- electrodynamics,1803,0.00968495689307872,15
- dm,1801,0.00967421373512744,2
- perturbative_qcd,1801,0.00967421373512744,16
- universality,1800,0.0096688421561518,12
- resummation,1799,0.009663470577176161,11
- radiative_correction,1796,0.009647355840249242,20
- rotation,1794,0.009636612682297962,8
- invariant_mass,1794,0.009636612682297962,14
- analogous,1793,0.009631241103322322,9
- dark_energy,1788,0.009604383208444122,11
- lead,1787,0.009599011629468482,4
- twisted,1787,0.009599011629468482,7
- conclusion,1786,0.009593640050492843,10
- common,1786,0.009593640050492843,6
- grand,1784,0.009582896892541562,5
- ir,1780,0.009561410576639003,2
- position,1775,0.009534552681760804,8
- gauge_field,1774,0.009529181102785163,11
- improvement,1773,0.009523809523809525,11
- quantum_gravity,1772,0.009518437944833884,15
- proof,1767,0.009491580049955685,5
- e_,1766,0.009486208470980044,2
- maximum,1766,0.009486208470980044,7
- elliptic,1760,0.009453978997126205,8
- broken,1757,0.009437864260199286,6
- ghost,1757,0.009437864260199286,5
- helicity,1753,0.009416377944296726,8
- nonzero,1752,0.009411006365321085,7
- measure,1752,0.009411006365321085,7
- dense,1751,0.009405634786345447,5
- cut,1749,0.009394891628394167,3
- radial,1747,0.009384148470442886,6
- exponential,1744,0.009368033733515966,11
- orbifold,1743,0.009362662154540327,8
- proper,1740,0.009346547417613408,6
- excited,1735,0.009319689522735208,7
- stage,1734,0.009314317943759568,5
- pt,1733,0.009308946364783929,2
- twist,1729,0.009287460048881369,5
- emphasis,1728,0.009282088469905728,8
- indirect,1725,0.00926597373297881,8
- accurate,1717,0.00922300110117369,8
- multiplets,1716,0.00921762952219805,10
- smooth,1716,0.00921762952219805,6
- trajectory,1703,0.009147798995514732,10
- resolution,1703,0.009147798995514732,10
- previous_work,1702,0.009142427416539091,13
- holography,1701,0.009137055837563452,10
- coherent,1701,0.009137055837563452,8
- condensation,1696,0.009110197942685251,12
- comparable,1695,0.009104826363709613,10
- cutoff,1692,0.009088711626782693,6
- rm,1688,0.009067225310880134,2
- multiplicity,1687,0.009061853731904494,12
- five_dimensional,1686,0.009056482152928853,16
- galaxy,1681,0.009029624258050654,6
- isospin,1679,0.009018881100099374,7
- polarized,1678,0.009013509521123734,9
- defect,1677,0.009008137942148095,6
- charged,1672,0.008981280047269896,7
- cmb,1670,0.008970536889318615,3
- sym,1665,0.008943678994440415,3
- better,1664,0.008938307415464777,6
- finding,1662,0.008927564257513496,7
- rare,1659,0.008911449520586576,4
- gut,1657,0.008900706362635296,3
- loss,1656,0.008895334783659658,4
- peak,1656,0.008895334783659658,4
- prescription,1652,0.008873848467757097,12
- weyl,1651,0.008868476888781457,4
- sense,1649,0.008857733730830177,5
- hubble,1642,0.008820132678000699,6
- near,1641,0.008814761099025058,4
- infinity,1638,0.008798646362098138,8
- m_theory,1636,0.008787903204146859,8
- model_independent,1635,0.008782531625171218,17
- critical_point,1635,0.008782531625171218,14
- anti_de_sitter,1635,0.008782531625171218,14
- integration,1631,0.00876104530926866,11
- cancellation,1630,0.008755673730293019,12
- neutrino_oscillation,1628,0.00874493057234174,20
- quark_gluon_plasma,1627,0.0087395589933661,18
- ensemble,1625,0.00872881583541482,8
- brief,1625,0.00872881583541482,5
- super_yang_mills,1624,0.008723444256439181,16
- off_shell,1623,0.00871807267746354,9
- superpotential,1622,0.0087127010984879,14
- anisotropic,1622,0.0087127010984879,11
- accessible,1621,0.008707329519512261,10
- briefly,1621,0.008707329519512261,7
- weakly,1621,0.008707329519512261,6
- anti_de,1618,0.008691214782585341,7
- imaginary,1614,0.00866972846668278,9
- spinor,1614,0.00866972846668278,6
- microscopic,1611,0.008653613729755861,11
- sufficient,1611,0.008653613729755861,10
- appearance,1610,0.008648242150780222,10
- galactic,1610,0.008648242150780222,8
- splitting,1610,0.008648242150780222,9
- branch,1608,0.008637498992828943,6
- degeneracy,1603,0.008610641097950743,10
- atlas,1602,0.008605269518975103,5
- notion,1596,0.008573040045121263,6
- place,1591,0.008546182150243064,5
- regular,1591,0.008546182150243064,7
- anisotropy,1590,0.008540810571267423,10
- d_branes,1586,0.008519324255364865,8
- pressure,1583,0.008503209518437945,8
- initial_condition,1582,0.008497837939462304,17
- late_time,1581,0.008492466360486665,9
- ingredient,1580,0.008487094781511025,10
- sl,1578,0.008476351623559746,2
- improved,1576,0.008465608465608466,8
- purpose,1576,0.008465608465608466,7
- implementation,1575,0.008460236886632826,14
- anomalous_dimension,1571,0.008438750570730267,19
- induced,1571,0.008438750570730267,7
- bottom,1571,0.008438750570730267,6
- fixed_point,1568,0.008422635833803347,11
- hypothesis,1567,0.008417264254827707,10
- microwave,1566,0.008411892675852066,9
- hot,1566,0.008411892675852066,3
- cern,1564,0.008401149517900787,4
- nc,1564,0.008401149517900787,2
- omega,1559,0.008374291623022587,5
- modulus_space,1556,0.008358176886095667,13
- spherical,1556,0.008358176886095667,9
- exact_solution,1556,0.008358176886095667,14
- last,1555,0.008352805307120029,4
- classification,1554,0.008347433728144388,14
- heterotic,1552,0.008336690570193109,9
- quartic,1551,0.008331318991217468,7
- neutralino,1546,0.008304461096339269,10
- statistic,1545,0.008299089517363628,9
- counterpart,1544,0.00829371793838799,11
- theta,1543,0.008288346359412349,5
- primary,1542,0.008282974780436709,7
- best,1537,0.00825611688555851,4
- fragmentation,1535,0.00824537372760723,13
- casimir,1534,0.00824000214863159,7
- square,1533,0.00823463056965595,6
- electromagnetic_field,1530,0.00821851583272903,21
- odd,1527,0.00820240109580211,3
- identical,1526,0.00819702951682647,9
- resonant,1526,0.00819702951682647,8
- extremal,1525,0.008191657937850831,8
- talk,1523,0.008180914779899552,4
- chiral_perturbation,1517,0.008148685306045712,19
- e+,1516,0.008143313727070072,2
- late,1516,0.008143313727070072,4
- discrepancy,1515,0.008137942148094433,11
- landau,1514,0.008132570569118792,6
- relationship,1512,0.008121827411167513,12
- central_charge,1511,0.008116455832191873,14
- instantons,1511,0.008116455832191873,10
- latest,1509,0.008105712674240593,6
- trace,1508,0.008100341095264953,5
- energy_momentum,1508,0.008100341095264953,15
- geometrical,1507,0.008094969516289314,11
- chiral_perturbation_theory,1506,0.008089597937313673,26
- chemical_potential,1505,0.008084226358338033,18
- semiclassical,1493,0.008019767410630355,13
- stringent,1492,0.008014395831654714,9
- interference,1491,0.008009024252679076,12
- decomposition,1490,0.008003652673703435,13
- sphere,1489,0.007998281094727794,6
- speed,1488,0.007992909515752156,5
- core,1486,0.007982166357800876,4
- green,1485,0.007976794778825236,5
- kaon,1482,0.007960680041898316,4
- effective_potential,1480,0.007949936883947037,19
- big,1479,0.007944565304971396,3
- whole,1478,0.007939193725995757,5
- successful,1476,0.007928450568044476,10
- time_dependent,1475,0.007923078989068837,14
- subject,1473,0.007912335831117556,7
- right_handed_neutrino,1473,0.007912335831117556,21
- lhcb,1470,0.007896221094190638,4
- knowledge,1469,0.007890849515214998,9
- relic_density,1469,0.007890849515214998,13
- lifetime,1469,0.007890849515214998,8
- atmospheric,1468,0.007885477936239357,11
- extraction,1466,0.007874734778288078,10
- two_point,1464,0.007863991620336798,9
- true,1463,0.007858620041361158,4
- multiplet,1463,0.007858620041361158,9
- close,1461,0.007847876883409878,5
- reasonable,1460,0.007842505304434238,10
- kernel,1457,0.007826390567507318,6
- acceleration,1456,0.00782101898853168,12
- oscillator,1454,0.007810275830580399,10
- interplay,1452,0.00779953267262912,9
- right,1450,0.007788789514677839,5
- iii,1447,0.0077726747777509195,3
- cosmic_microwave,1445,0.00776193161979964,16
- recent_result,1440,0.007735073724921441,13
- gaussian,1439,0.0077297021459458,8
- hybrid,1439,0.0077297021459458,6
- mathematical,1435,0.007708215830043242,12
- vortex,1435,0.007708215830043242,6
- cosmic_ray,1435,0.007708215830043242,10
- kinematics,1432,0.007692101093116322,10
- known,1431,0.007686729514140682,5
- leptogenesis,1431,0.007686729514140682,12
- cone,1423,0.007643756882335563,4
- strategy,1414,0.007595412671554803,8
- triplet,1413,0.007590041092579164,7
- high_temperature,1413,0.007590041092579164,16
- modular,1410,0.007573926355652244,7
- saturation,1408,0.007563183197700964,10
- schwarzschild,1407,0.007557811618725325,13
- letter,1401,0.007525582144871485,6
- important_role,1399,0.0075148389869202055,14
- bundle,1396,0.007498724249993286,6
- cosmic_microwave_background,1395,0.007493352671017646,27
- clear,1393,0.007482609513066366,5
- gauge_invariant,1393,0.007482609513066366,15
- sizable,1392,0.007477237934090726,7
- special_case,1391,0.007471866355115086,12
- former,1391,0.007471866355115086,6
- sterile,1389,0.007461123197163806,7
- need,1389,0.007461123197163806,4
- supersymmetric_model,1388,0.0074557516181881665,20
- expected,1386,0.007445008460236886,8
- towards,1385,0.007439636881261247,7
- growth,1381,0.007418150565358687,6
- monopole,1381,0.007418150565358687,8
- torus,1379,0.007407407407407408,5
- _1,1377,0.0073966642494561275,2
- intrinsic,1376,0.007391292670480488,9
- deformed,1376,0.007391292670480488,8
- difficult,1370,0.007359063196626648,9
- nonrelativistic,1369,0.007353691617651008,15
- collinear,1368,0.007348320038675369,9
- irreducible,1368,0.007348320038675369,11
- integrated,1367,0.007342948459699729,10
- semileptonic,1365,0.007332205301748449,12
- al,1355,0.00727848951199205,2
- chromodynamics,1353,0.00726774635404077,14
- complementary,1347,0.007235516880186931,13
- differential_equation,1342,0.007208658985308732,21
- higgs_mass,1338,0.007187172669406172,10
- heavier,1338,0.007187172669406172,7
- parallel,1337,0.007181801090430532,8
- cubic,1332,0.0071549431955523326,5
- initial_state,1332,0.0071549431955523326,13
- rightarrow,1330,0.007144200037601053,10
- free_energy,1330,0.007144200037601053,11
- renormalizable,1329,0.007138828458625413,14
- fine_tuning,1328,0.007133456879649773,11
- mirror,1327,0.007128085300674133,6
- manner,1325,0.007117342142722853,6
- d_brane,1324,0.007111970563747213,7
- random,1323,0.007106598984771574,6
- attractive,1322,0.007101227405795934,10
- ev,1320,0.007090484247844654,2
- insight,1319,0.007085112668869014,7
- powerful,1319,0.007085112668869014,8
- non_vanishing,1316,0.007068997931942094,13
- logarithm,1314,0.007058254773990815,9
- creation,1311,0.007042140037063895,8
- rg,1309,0.007031396879112615,2
- vanishes,1307,0.0070206537211613355,8
- little,1306,0.007015282142185696,6
- hydrodynamic,1305,0.007009910563210055,12
- partner,1305,0.007009910563210055,7
- warped,1305,0.007009910563210055,6
- hence,1304,0.007004538984234416,5
- proton_proton,1303,0.006999167405258776,13
- light_quark,1301,0.006988424247307496,11
- dark_matter_candidate,1301,0.006988424247307496,21
- wide_range,1299,0.006977681089356216,10
- d4,1297,0.006966937931404936,2
- localization,1297,0.006966937931404936,12
- unit,1296,0.0069615663524292964,4
- visible,1289,0.006923965299599817,7
- criterion,1287,0.006913222141648538,9
- maxwell,1287,0.006913222141648538,7
- inelastic_scattering,1285,0.006902478983697257,20
- upper_limit,1284,0.006897107404721618,11
- efficient,1283,0.006891735825745978,9
- supernova,1281,0.006880992667794698,9
- kinematical,1276,0.006854134772916499,11
- lower_bound,1276,0.006854134772916499,11
- turn,1276,0.006854134772916499,4
- coupled,1275,0.006848763193940859,7
- concrete,1272,0.006832648457013939,8
- experimental_result,1271,0.006827276878038299,19
- unknown,1270,0.00682190529906266,7
- heat,1269,0.006816533720087019,4
- phys,1268,0.0068111621411113795,4
- cp_violating,1267,0.00680579056213574,12
- laboratory,1267,0.00680579056213574,10
- restriction,1266,0.0068004189831601,11
- running,1266,0.0068004189831601,7
- higher_dimensional,1264,0.00678967582520882,18
- higher_spin,1262,0.0067789326672575406,11
- curved,1261,0.006773561088281901,6
- window,1260,0.00676818950930626,6
- viscosity,1260,0.00676818950930626,9
- relevance,1258,0.006757446351354981,9
- ckm,1257,0.006752074772379341,3
- atom,1256,0.006746703193403701,4
- remarkable,1254,0.006735960035452421,10
- isotropic,1251,0.0067198452985255015,9
- narrow,1251,0.0067198452985255015,6
- broad,1248,0.006703730561598582,5
- short_distance,1247,0.006698358982622942,14
- free_parameter,1242,0.006671501087744743,14
- conserved,1239,0.006655386350817823,9
- theoretical_prediction,1239,0.006655386350817823,22
- squark,1239,0.006655386350817823,6
- code,1239,0.006655386350817823,4
- block,1239,0.006655386350817823,5
- superspace,1238,0.006650014771842183,10
- forward,1236,0.006639271613890903,7
- open_string,1236,0.006639271613890903,11
- iia,1234,0.006628528455939624,3
- hooft,1233,0.006623156876963984,5
- riemann,1233,0.006623156876963984,7
- weight,1230,0.006607042140037064,6
- negligible,1228,0.006596298982085784,10
- linear_collider,1227,0.006590927403110144,15
- adjoint,1226,0.0065855558241345044,7
- azimuthal,1224,0.006574812666183224,9
- ads5,1222,0.006564069508231945,4
- gauged,1222,0.006564069508231945,6
- combined,1220,0.006553326350280665,8
- likely,1217,0.006537211613353746,6
- significance,1215,0.006526468455402465,12
- interacting,1213,0.006515725297451186,11
- overall,1212,0.0065103537184755455,7
- two_body,1212,0.0065103537184755455,8
- applicable,1212,0.0065103537184755455,10
- transverse_momentum,1212,0.0065103537184755455,19
- interval,1211,0.006504982139499906,8
- large_scale,1211,0.006504982139499906,11
- axial_vector,1210,0.006499610560524266,12
- regge,1209,0.0064942389815486265,5
- subsequent,1206,0.006478124244621707,10
- truncation,1201,0.006451266349743507,10
- subgroup,1201,0.006451266349743507,8
- projection,1200,0.006445894770767867,10
- hydrodynamics,1198,0.0064351516128165875,13
- identification,1198,0.0064351516128165875,14
- perfect,1195,0.006419036875889668,7
- parametrization,1193,0.006408293717938388,15
- total_cross_section,1192,0.006402922138962748,19
- overview,1192,0.006402922138962748,8
- analogue,1192,0.006402922138962748,8
- stronger,1191,0.006397550559987108,8
- qualitative,1191,0.006397550559987108,11
- stationary,1189,0.006386807402035829,10
- hilbert,1189,0.006386807402035829,7
- lighter,1188,0.006381435823060188,7
- benchmark,1188,0.006381435823060188,9
- author,1187,0.0063760642440845484,6
- fractional,1186,0.006370692665108909,10
- cluster,1185,0.006365321086133269,7
- gravitino,1185,0.006365321086133269,9
- shower,1183,0.006354577928181989,6
- sample,1181,0.0063438347702307095,6
- active,1180,0.00633846319125507,6
- collective,1180,0.00633846319125507,10
- mechanical,1177,0.00632234845432815,10
- ambiguity,1174,0.00630623371740123,9
- contrary,1173,0.00630086213842559,8
- sterile_neutrino,1172,0.006295490559449951,16
- puzzle,1170,0.0062847474014986705,6
- auxiliary,1165,0.006257889506620471,9
- differential_cross_section,1162,0.006241774769693551,26
- promising,1161,0.006236403190717912,9
- et,1161,0.006236403190717912,2
- response,1161,0.006236403190717912,8
- advantage,1160,0.006231031611742272,9
- nnlo,1159,0.0062256600327666315,4
- electroweak_symmetry,1158,0.006220288453790992,20
- setting,1158,0.006220288453790992,7
- geodesic,1158,0.006220288453790992,8
- preliminary,1156,0.0062095452958397124,11
- character,1155,0.006204173716864072,9
- graph,1155,0.006204173716864072,5
- scalar_potential,1152,0.006188058979937153,16
- help,1150,0.006177315821985873,4
- integrability,1149,0.006171944243010233,13
- excellent,1148,0.006166572664034593,9
- goldstone,1147,0.006161201085058953,9
- torsion,1141,0.006128971611205114,7
- quantitative,1140,0.006123600032229474,12
- toy,1139,0.006118228453253834,3
- tachyon,1138,0.006112856874278194,7
- baryogenesis,1137,0.006107485295302554,12
- big_bang,1137,0.006107485295302554,8
- electric_charge,1135,0.006096742137351274,15
- global_symmetry,1135,0.006096742137351274,15
- robust,1135,0.006096742137351274,6
- focus,1133,0.006085998979399995,5
- partons,1131,0.0060752558214487145,7
- correspond,1129,0.006064512663497435,10
- trivial,1129,0.006064512663497435,7
- reduced,1128,0.0060591410845217955,7
- period,1128,0.0060591410845217955,6
- matrix_element,1127,0.006053769505546155,14
- tan,1122,0.006026911610667956,3
- building,1121,0.006021540031692316,8
- violating,1119,0.006010796873741036,9
- integer,1116,0.005994682136814117,7
- rich,1116,0.005994682136814117,4
- past,1116,0.005994682136814117,4
- nonlocal,1114,0.0059839389788628366,8
- slow_roll,1114,0.0059839389788628366,9
- electric_field,1114,0.0059839389788628366,14
- network,1112,0.005973195820911557,7
- reconstruction,1110,0.005962452662960277,14
- divergent,1109,0.005957081083984637,9
- gamma_ray,1106,0.005940966347057717,9
- run,1105,0.005935594768082078,3
- challenge,1105,0.005935594768082078,9
- entire,1103,0.0059248516101307975,6
- baryonic,1102,0.005919480031155158,8
- holomorphic,1100,0.0059087368732038785,11
- liquid,1100,0.0059087368732038785,6
- reason,1099,0.005903365294228239,6
- hint,1098,0.005897993715252598,4
- non_standard,1097,0.005892622136276959,12
- strong_interaction,1094,0.005876507399350039,18
- e.g,1094,0.005876507399350039,3
- large_number,1093,0.005871135820374399,12
- non_supersymmetric,1092,0.005865764241398759,18
- quark_antiquark,1092,0.005865764241398759,15
- ring,1090,0.005855021083447479,4
- critical_temperature,1089,0.0058496495044718395,20
- opposite,1088,0.0058442779254962,8
- attempt,1088,0.0058442779254962,7
- emergent,1088,0.0058442779254962,8
- greater,1086,0.00583353476754492,7
- charmonium,1086,0.00583353476754492,10
- non_local,1085,0.00582816318856928,9
- allowed,1083,0.0058174200306180006,7
- gaugino,1080,0.005801305293691081,7
- apparent,1078,0.0057905621357398004,8
- fine,1077,0.005785190556764161,4
- superstring,1077,0.005785190556764161,11
- leading,1076,0.005779818977788521,7
- non_minimal,1075,0.005774447398812881,11
- matching,1074,0.005769075819837241,8
- brst,1074,0.005769075819837241,4
- total_cross,1073,0.005763704240861601,11
- periodic,1071,0.005752961082910322,8
- differential_cross,1069,0.005742217924959042,18
- circle,1067,0.005731474767007762,6
- psi,1064,0.005715360030080842,3
- photoproduction,1063,0.005709988451105203,15
- partonic,1062,0.005704616872129562,8
- link,1061,0.0056992452931539225,4
- era,1061,0.0056992452931539225,3
- dimensional_reduction,1060,0.005693873714178283,21
- deconfinement,1059,0.005688502135202643,13
- correlator,1059,0.005688502135202643,10
- analogy,1058,0.005683130556227003,7
- mean_field,1056,0.005672387398275723,10
- stress,1056,0.005672387398275723,6
- andor,1055,0.005667015819300084,5
- low_temperature,1054,0.005661644240324443,15
- pm,1054,0.005661644240324443,2
- s3,1054,0.005661644240324443,2
- goal,1053,0.005656272661348803,4
- ideal,1052,0.005650901082373164,5
- unpolarized,1052,0.005650901082373164,11
- drell_yan,1051,0.005645529503397524,9
- asymmetric,1049,0.005634786345446244,10
- rational,1048,0.005629414766470604,8
- topic,1047,0.0056240431874949644,5
- monopoles,1047,0.0056240431874949644,9
- aim,1046,0.005618671608519324,3
- pi0,1044,0.0056079284505680446,3
- rank,1041,0.005591813713641125,4
- emergence,1040,0.005586442134665485,9
- duals,1040,0.005586442134665485,5
- long_range,1039,0.005581070555689845,10
- rest,1035,0.005559584239787286,4
- belle,1035,0.005559584239787286,5
- stochastic,1034,0.005554212660811645,10
- non_commutative,1033,0.0055488410818360055,15
- one_dimensional,1030,0.005532726344909086,15
- adscft_correspondence,1030,0.005532726344909086,21
- next_to_next_to_leading,1030,0.005532726344909086,23
- check,1024,0.005500496871055247,5
- reference,1024,0.005500496871055247,9
- bang,1024,0.005500496871055247,4
- arises,1022,0.0054897537131039665,6
- quarkonium,1019,0.0054736389761770475,10
- self_dual,1016,0.005457524239250128,9
- inhomogeneous,1015,0.005452152660274488,13
- conductivity,1015,0.005452152660274488,12
- large_n,1014,0.005446781081298848,7
- shear,1014,0.005446781081298848,5
- s1,1013,0.005441409502323208,2
- dark_matter_particle,1011,0.005430666344371928,20
- implies,1009,0.005419923186420648,7
- counting,1009,0.005419923186420648,8
- halo,1009,0.005419923186420648,4
- observer,1008,0.0054145516074450084,8
- manifest,1007,0.005409180028469369,8
- gravitational_field,1006,0.005403808449493729,19
- collapse,1005,0.0053984368705180885,8
- support,1004,0.005393065291542449,7
- circular,1002,0.0053823221335911695,8
- black_hole_solution,1002,0.0053823221335911695,19
- cascade,1001,0.005376950554615529,7
- higher_dimension,1001,0.005376950554615529,16
- selection,999,0.00536620739666425,9
- enhanced,995,0.00534472108076169,8
- individual,994,0.00533934950178605,10
- previous_result,994,0.00533934950178605,15
- telescope,993,0.00533397792281041,9
- flat_space,993,0.00533397792281041,10
- randall_sundrum,992,0.00532860634383477,15
- contact,989,0.00531249160690785,7
- valence,989,0.00531249160690785,7
- massive_particle,989,0.00531249160690785,16
- atomic,989,0.00531249160690785,6
- compton,987,0.005301748448956571,7
- accelerator,986,0.005296376869980931,11
- near_horizon,985,0.005291005291005291,12
- gauge_boson,984,0.005285633712029651,11
- decrease,983,0.005280262133054011,8
- hera,981,0.005269518975102731,4
- same_time,980,0.0052641473961270915,9
- history,980,0.0052641473961270915,7
- electron_positron,979,0.005258775817151452,17
- comprehensive,979,0.005258775817151452,13
- s_matrix,979,0.005258775817151452,8
- such_model,979,0.005258775817151452,10
- worldsheet,978,0.005253404238175812,10
- symplectic,977,0.005248032659200172,10
- double_beta,976,0.005242661080224532,11
- theoretical_uncertainty,975,0.005237289501248892,23
- diagonal,975,0.005237289501248892,8
- fourth,975,0.005237289501248892,6
- conversion,972,0.005221174764321972,10
- yukawa_coupling,972,0.005221174764321972,15
- master,971,0.005215803185346333,6
- base,970,0.005210431606370693,4
- determinant,968,0.005199688448419413,11
- superfield,964,0.005178202132516853,10
- lagrangians,964,0.005178202132516853,11
- integrated_luminosity,962,0.005167458974565574,21
- bethe,961,0.005162087395589933,5
- light_front,960,0.005156715816614294,11
- factory,960,0.005156715816614294,7
- z2,959,0.005151344237638654,2
- variational,958,0.005145972658663014,11
- leading_order,957,0.005140601079687374,13
- cfts,957,0.005140601079687374,4
- left_right,956,0.005135229500711734,10
- scalar_field_theory,956,0.005135229500711734,19
- survey,954,0.005124486342760455,6
- gauge_symmetry,954,0.005124486342760455,14
- wimp,954,0.005124486342760455,4
- recoil,952,0.0051137431848091745,6
- large_class,952,0.0051137431848091745,11
- massive_gravity,952,0.0051137431848091745,15
- diffractive,951,0.005108371605833535,11
- positron,951,0.005108371605833535,8
- substantial,950,0.005103000026857895,11
- excited_state,950,0.005103000026857895,13
- future_experiment,950,0.005103000026857895,17
- r_parity,949,0.005097628447882255,8
- kk,948,0.005092256868906615,2
- predicted,948,0.005092256868906615,9
- fb,947,0.005086885289930975,2
- d0,947,0.005086885289930975,2
- completion,946,0.005081513710955336,10
- angular_distribution,945,0.005076142131979695,20
- axions,945,0.005076142131979695,6
- uniform,945,0.005076142131979695,7
- br,945,0.005076142131979695,2
- hyperbolic,943,0.005065398974028416,10
- subtraction,942,0.005060027395052776,11
- double_beta_decay,941,0.0050546558160771355,17
- similarity,941,0.0050546558160771355,10
- cosmological_model,940,0.005049284237101496,18
- form_factor,940,0.005049284237101496,11
- orbit,939,0.005043912658125856,5
- lep,938,0.0050385410791502164,3
- electroweak_scale,937,0.005033169500174576,17
- noncommutativity,937,0.005033169500174576,16
- others,937,0.005033169500174576,6
- kinetic_term,936,0.005027797921198936,12
- next_to_next_to_leading_order,936,0.005027797921198936,29
- earth,936,0.005027797921198936,5
- weak_coupling,934,0.005017054763247657,13
- instance,934,0.005017054763247657,8
- fast,934,0.005017054763247657,4
- continuation,933,0.005011683184272016,12
- genus,931,0.005000940026320737,5
- higgs_field,928,0.004984825289393817,11
- confidence,928,0.004984825289393817,10
- center_of_mass,926,0.004974082131442538,14
- shell,923,0.004957967394515618,5
- causal,922,0.004952595815539978,6
- schwinger,921,0.0049472242365643385,9
- couple,921,0.0049472242365643385,6
- extrapolation,920,0.004941852657588698,13
- convergence,919,0.004936481078613058,11
- strange_quark,917,0.004925737920661779,13
- bubble,916,0.004920366341686138,6
- g_2,916,0.004920366341686138,3
- opportunity,914,0.004909623183734859,11
- dilepton,914,0.004909623183734859,8
- power_law,913,0.004904251604759219,9
- simple_model,912,0.004898880025783579,12
- residual,911,0.004893508446807939,8
- high_precision,911,0.004893508446807939,14
- m2,911,0.004893508446807939,2
- recent_work,910,0.0048881368678322995,11
- entanglement_entropy,910,0.0048881368678322995,20
- sound,909,0.00488276528885666,5
- obtained,908,0.004877393709881019,8
- body,907,0.00487202213090538,4
- dis,907,0.00487202213090538,3
- susceptibility,906,0.00486665055192974,14
- tev_scale,905,0.0048612789729541,9
- half,904,0.00485590739397846,4
- isometry,904,0.00485590739397846,8
- experimental_constraint,903,0.00485053581500282,23
- higgs_doublet,901,0.004839792657051541,13
- dominance,901,0.004839792657051541,9
- environment,900,0.0048344210780759,11
- modern,897,0.004818306341148981,6
- t_duality,897,0.004818306341148981,9
- neutrinoless,896,0.0048129347621733405,12
- ward,895,0.004807563183197701,4
- polyakov,893,0.0047968200252464215,8
- spectral_function,892,0.004791448446270781,17
- major,891,0.004786076867295141,5
- research,890,0.004780705288319502,8
- indication,890,0.004780705288319502,10
- simplified,889,0.004775333709343862,10
- traditional,888,0.004769962130368221,11
- vector_like,888,0.004769962130368221,11
- difficulty,887,0.004764590551392582,10
- triple,886,0.004759218972416942,6
- strangeness,885,0.004753847393441302,11
- new_result,884,0.004748475814465662,10
- commutative,883,0.004743104235490022,11
- restoration,881,0.004732361077538743,11
- absolute,881,0.004732361077538743,8
- gradient,881,0.004732361077538743,8
- nf,881,0.004732361077538743,2
- heterotic_string,880,0.004726989498563102,16
- superfields,879,0.004721617919587463,11
- anti,879,0.004721617919587463,4
- pi_,878,0.004716246340611823,3
- qgp,878,0.004716246340611823,3
- epoch,877,0.004710874761636183,5
- absent,876,0.004705503182660543,6
- analog,875,0.004700131603684903,6
- solvable,874,0.004694760024709263,8
- s_wave,873,0.004689388445733624,6
- recent_development,872,0.004684016866757983,18
- paradigm,872,0.004684016866757983,8
- gauss_bonnet,871,0.0046786452877823435,12
- four_point,871,0.0046786452877823435,10
- well_defined,869,0.004667902129831064,12
- supersymmetric_extension,869,0.004667902129831064,24
- exhibit,868,0.004662530550855424,7
- root,868,0.004662530550855424,4
- specie,867,0.004657158971879784,6
- estimation,867,0.004657158971879784,10
- spectroscopy,866,0.004651787392904144,12
- imaginary_part,865,0.0046464158139285045,14
- association,864,0.004641044234952864,11
- vicinity,863,0.004635672655977224,8
- reliable,862,0.004630301077001585,8
- linearized,861,0.004624929498025945,10
- ten,860,0.0046195579190503044,3
- tiny,859,0.004614186340074665,4
- kev,859,0.004614186340074665,3
- inner,858,0.004608814761099025,5
- motivation,857,0.004603443182123385,10
- hawking,856,0.004598071603147745,7
- location,856,0.004598071603147745,8
- supersymmetric_yang_mills,855,0.004592700024172105,25
- optical,854,0.0045873284451964655,7
- reactor,853,0.004581956866220826,7
- facility,852,0.004576585287245185,8
- molecular,851,0.004571213708269546,9
- mediation,851,0.004571213708269546,9
- extent,850,0.004565842129293906,6
- hamiltonians,849,0.004560470550318266,12
- cross_sections,849,0.004560470550318266,14
- understood,849,0.004560470550318266,10
- poincar,847,0.004549727392366986,7
- freeze_out,847,0.004549727392366986,10
- nuclear_matter,847,0.004549727392366986,14
- conformal_symmetry,847,0.004549727392366986,18
- large_value,845,0.004538984234415707,11
- closed_string,843,0.0045282410764644265,13
- diffusion,843,0.0045282410764644265,9
- s5,842,0.004522869497488787,2
- naive,842,0.004522869497488787,5
- spectral_index,841,0.004517497918513147,14
- solar_neutrino,841,0.004517497918513147,14
- redshift,840,0.0045121263395375075,8
- required,839,0.004506754760561867,8
- recent_progress,839,0.004506754760561867,15
- virasoro,839,0.004506754760561867,8
- present_result,838,0.004501383181586227,14
- s2,838,0.004501383181586227,2
- attractor,837,0.004496011602610588,9
- octet,837,0.004496011602610588,5
- orthogonal,836,0.004490640023634948,10
- elastic_scattering,836,0.004490640023634948,18
- bare,836,0.004490640023634948,4
- hadronization,836,0.004490640023634948,13
- transform,836,0.004490640023634948,9
- hall,835,0.004485268444659307,4
- f0,834,0.004479896865683668,2
- invisible,833,0.004474525286708028,9
- renormalized,833,0.004474525286708028,12
- boltzmann,832,0.004469153707732388,9
- triangle,831,0.004463782128756748,8
- extreme,830,0.004458410549781108,7
- three_point,830,0.004458410549781108,11
- direct_detection_experiment,830,0.004458410549781108,27
- supersymmetric_gauge,829,0.0044530389708054684,20
- previous_study,828,0.004447667391829829,14
- heisenberg,828,0.004447667391829829,10
- monte_carlo,827,0.004442295812854188,11
- cohomology,826,0.0044369242338785485,10
- pomeron,826,0.0044369242338785485,7
- edge,826,0.0044369242338785485,4
- b_l,824,0.004426181075927269,3
- supersymmetric_theory,823,0.004420809496951629,21
- ads3,823,0.004420809496951629,4
- six_dimensional,823,0.004420809496951629,15
- ilc,823,0.004420809496951629,3
- material,822,0.004415437917975989,8
- nucleosynthesis,822,0.004415437917975989,15
- corresponds,821,0.004410066339000349,11
- d3,820,0.00440469476002471,2
- spinors,819,0.004399323181049069,7
- pseudoscalar_meson,819,0.004399323181049069,18
- antisymmetric,819,0.004399323181049069,13
- semi_classical,819,0.004399323181049069,14
- measured,817,0.00438858002309779,8
- absorption,816,0.00438320844412215,10
- g2,816,0.00438320844412215,2
- present_work,814,0.00437246528617087,12
- global_fit,814,0.00437246528617087,10
- following,814,0.00437246528617087,9
- lecture,814,0.00437246528617087,7
- critical_exponent,812,0.0043617221282195905,17
- quiver,812,0.0043617221282195905,6
- box,811,0.00435635054924395,3
- critical_value,811,0.00435635054924395,14
- theta13,811,0.00435635054924395,7
- bf,810,0.00435097897026831,2
- relic_abundance,810,0.00435097897026831,15
- decoupling,807,0.00433486423334139,10
- energy_momentum_tensor,804,0.004318749496414471,22
- discrete_symmetry,804,0.004318749496414471,17
- colour,803,0.004313377917438831,6
- sea,802,0.004308006338463191,3
- interior,802,0.004308006338463191,8
- affine,801,0.0043026347594875515,6
- efficiency,801,0.0043026347594875515,10
- upsilon,800,0.004297263180511912,7
- numerical_simulation,799,0.004291891601536271,20
- fm,799,0.004291891601536271,2
- new_class,798,0.004286520022560632,9
- coset,798,0.004286520022560632,5
- orbital,798,0.004286520022560632,7
- explicit_example,797,0.004281148443584992,16
- embedding,797,0.004281148443584992,9
- lorentzian,797,0.004281148443584992,10
- simultaneous,795,0.004270405285633712,12
- new_particle,794,0.004265033706658072,12
- cosmic_string,792,0.004254290548706793,13
- timelike,792,0.004254290548706793,8
- reheating,790,0.0042435473907555124,9
- variant,790,0.0042435473907555124,7
- respective,789,0.004238175811779873,10
- non_abelian_gauge,789,0.004238175811779873,17
- self_consistent,788,0.004232804232804233,15
- pi+,787,0.0042274326538285925,3
- percent,786,0.004222061074852953,7
- largest,786,0.004222061074852953,7
- gluino,786,0.004222061074852953,6
- intersection,786,0.004222061074852953,12
- near_future,785,0.004216689495877313,11
- xi,785,0.004216689495877313,2
- supersymmetric_gauge_theory,785,0.004216689495877313,27
- supersymmetric_particle,783,0.004205946337926033,23
- higher_derivative,783,0.004205946337926033,17
- principal,782,0.004200574758950393,9
- resulting,781,0.004195203179974754,9
- explicit_expression,780,0.004189831600999114,19
- subset,780,0.004189831600999114,6
- chiral_symmetry_breaking,780,0.004189831600999114,24
- self_energy,780,0.004189831600999114,11
- moderate,779,0.004184460022023473,8
- poisson,779,0.004184460022023473,7
- stabilization,779,0.004184460022023473,13
- new_method,778,0.004179088443047834,10
- diquark,778,0.004179088443047834,7
- super_yang_mills_theory,777,0.004173716864072194,23
- report,776,0.004168345285096554,6
- relaxation,774,0.004157602127145274,10
- first_order_phase,774,0.004157602127145274,17
- ricci,773,0.0041522305481696345,5
- gg,772,0.004146858969193995,2
- large_,772,0.004146858969193995,6
- breakdown,772,0.004146858969193995,9
- mediator,772,0.004146858969193995,8
- abelian_gauge,772,0.004146858969193995,13
- atmospheric_neutrino,771,0.004141487390218354,20
- adiabatic,771,0.004141487390218354,9
- epsilon,771,0.004141487390218354,7
- baseline,770,0.004136115811242715,8
- onset,769,0.004130744232267075,5
- constrained,766,0.004114629495340155,11
- cdm,765,0.004109257916364515,3
- reflection,765,0.004109257916364515,10
- unbroken,764,0.004103886337388876,8
- ope,763,0.004098514758413235,3
- stringy,763,0.004098514758413235,7
- rev,763,0.004098514758413235,3
- definite,762,0.0040931431794375955,8
- decade,759,0.0040770284425106764,6
- three_body,757,0.004066285284559396,10
- spacing,757,0.004066285284559396,7
- slow,756,0.0040609137055837565,4
- 't,756,0.0040609137055837565,2
- many_body,756,0.0040609137055837565,9
- two_point_function,754,0.004050170547632476,18
- finite_size,754,0.004050170547632476,11
- claim,753,0.004044798968656837,5
- witten,752,0.004039427389681197,6
- feynman_diagram,752,0.004039427389681197,15
- great,752,0.004039427389681197,5
- inflationary_model,752,0.004039427389681197,18
- high_luminosity,750,0.004028684231729917,15
- decay_width,750,0.004028684231729917,11
- slope,750,0.004028684231729917,5
- crossover,749,0.004023312652754277,9
- macroscopic,748,0.004017941073778637,11
- metastable,747,0.004012569494802998,10
- eigenstates,747,0.004012569494802998,11
- portal,746,0.004007197915827357,6
- thermalization,746,0.004007197915827357,14
- minimal_model,746,0.004007197915827357,13
- spatial_dimension,746,0.004007197915827357,17
- orbifolds,745,0.0040018263368517175,9
- spontaneous_breaking,745,0.0040018263368517175,20
- long_distance,745,0.0040018263368517175,13
- tachyonic,744,0.003996454757876078,9
- discus,743,0.003991083178900438,6
- lowest_order,743,0.003991083178900438,12
- dipole_moment,742,0.003985711599924798,13
- chaotic,742,0.003985711599924798,7
- exclusion,742,0.003985711599924798,9
- 4_dimensional,742,0.003985711599924798,13
- mu_,741,0.003980340020949158,3
- cal_o,740,0.003974968441973518,5
- kahler,740,0.003974968441973518,6
- enough,739,0.003969596862997879,6
- poincare,738,0.003964225284022238,8
- detectable,737,0.003958853705046598,10
- long_lived,736,0.003953482126070959,10
- exceptional,736,0.003953482126070959,11
- perturbative_expansion,734,0.0039427389681196785,22
- landscape,734,0.0039427389681196785,9
- binary,734,0.0039427389681196785,6
- covariance,733,0.003937367389144039,10
- phase_space,732,0.003931995810168399,11
- babar,730,0.003921252652217119,5
- tuning,730,0.003921252652217119,6
- cut_off,729,0.003915881073241479,7
- lorentz_invariance,729,0.003915881073241479,18
- spontaneous_symmetry,728,0.00391050949426584,20
- marginal,728,0.00391050949426584,8
- effort,728,0.00391050949426584,6
- translation,723,0.00388365159938764,11
- forward_backward,723,0.00388365159938764,16
- sharp,722,0.0038782800204120002,5
- glueball,722,0.0038782800204120002,8
- electroweak_precision,722,0.0038782800204120002,21
- holographic_model,721,0.00387290844143636,17
- quantum_fluctuation,719,0.0038621652834850803,19
- well,719,0.0038621652834850803,4
- scalar_meson,719,0.0038621652834850803,12
- tc,718,0.0038567937045094407,2
- stop,717,0.0038514221255338005,4
- mathcalo,716,0.003846050546558161,8
- final_state_interaction,716,0.003846050546558161,23
- old,715,0.0038406789675825208,3
- lhc_energy,712,0.0038245642306556013,10
- texture,711,0.003819192651679961,7
- backreaction,710,0.0038138210727043215,12
- next_generation,710,0.0038138210727043215,15
- fock,710,0.0038138210727043215,4
- scalar_tensor,709,0.0038084494937286814,13
- thermodynamical,708,0.0038030779147530417,15
- two_higgs_doublet,707,0.0037977063357774016,17
- highest,707,0.0037977063357774016,7
- molecule,707,0.0037977063357774016,8
- present_paper,703,0.003776220019874842,13
- simeq,701,0.0037654768619235623,5
- radiative_decay,700,0.0037601052829479226,15
- spacetime_dimension,700,0.0037601052829479226,19
- mapping,699,0.0037547337039722825,7
- familiar,699,0.0037547337039722825,8
- kerr,699,0.0037547337039722825,4
- control,699,0.0037547337039722825,7
- bethe_salpeter,697,0.0037439905460210027,14
- three_loop,697,0.0037439905460210027,10
- shear_viscosity,696,0.003738618967045363,15
- unity,695,0.003733247388069723,5
- low_scale,695,0.003733247388069723,9
- quantized,695,0.003733247388069723,9
- a0,694,0.0037278758090940833,2
- peculiar,694,0.0037278758090940833,8
- one_loop_level,693,0.003722504230118443,14
- hermitian,692,0.0037171326511428035,9
- arbitrary_number,692,0.0037171326511428035,16
- renormalisation,692,0.0037171326511428035,15
- whereas,692,0.0037171326511428035,7
- qft,692,0.0037171326511428035,3
- copy,691,0.0037117610721671634,4
- hilbert_space,691,0.0037117610721671634,13
- f2,691,0.0037117610721671634,2
- qcd_sum,691,0.0037117610721671634,7
- mathcal,690,0.0037063894931915237,7
- lsp,689,0.0037010179142158836,3
- dark_matter_annihilation,688,0.003695646335240244,24
- toric,687,0.003690274756264604,5
- axis,687,0.003690274756264604,4
- b0,687,0.003690274756264604,2
- qcd_sum_rule,686,0.003684903177288964,12
- liouville,685,0.003679531598313324,9
- quasiparticle,684,0.0036741600193376843,13
- experimental_measurement,684,0.0036741600193376843,24
- straightforward,684,0.0036741600193376843,15
- semi_inclusive,684,0.0036741600193376843,14
- measurable,683,0.0036687884403620442,10
- normalization,683,0.0036687884403620442,13
- screening,683,0.0036687884403620442,9
- considerable,682,0.0036634168613864045,12
- analytic_expression,682,0.0036634168613864045,19
- overlap,682,0.0036634168613864045,7
- pdfs,682,0.0036634168613864045,4
- dimensionless,681,0.0036580452824107644,13
- complete_set,680,0.0036526737034351248,12
- naturalness,679,0.0036473021244594847,11
- lesssim,679,0.0036473021244594847,7
- quantum_number,679,0.0036473021244594847,14
- boost,678,0.003641930545483845,5
- localized,677,0.003636558966508205,9
- membrane,677,0.003636558966508205,8
- technical,676,0.003631187387532565,9
- manifestation,675,0.0036258158085569255,13
- hierarchical,675,0.0036258158085569255,12
- detailed_analysis,675,0.0036258158085569255,17
- 10_3,675,0.0036258158085569255,4
- tower,675,0.0036258158085569255,5
- reduces,675,0.0036258158085569255,7
- extensive,675,0.0036258158085569255,9
- harmonic_oscillator,675,0.0036258158085569255,19
- tt,674,0.0036204442295812854,2
- parametric,673,0.0036150726506056457,10
- pqcd,672,0.0036097010716300056,4
- wavelength,669,0.003593586334703086,10
- electric_dipole,668,0.003588214755727446,15
- spacelike,667,0.0035828431767518064,9
- vanishing,667,0.0035828431767518064,9
- bound_state,667,0.0035828431767518064,11
- net,666,0.0035774715977761663,3
- formal,664,0.0035667284398248865,6
- neutralinos,663,0.003561356860849247,11
- cpt,663,0.003561356860849247,3
- standard_model_prediction,663,0.003561356860849247,25
- asymptotics,663,0.003561356860849247,11
- quark_mass,662,0.0035559852818736067,10
- accelerated,662,0.0035559852818736067,11
- proton_proton_collision,662,0.0035559852818736067,23
- electromagnetic_form_factor,662,0.0035559852818736067,27
- experimental_value,661,0.003550613702897967,18
- summary,661,0.003550613702897967,7
- causality,660,0.003545242123922327,9
- neutral_current,660,0.003545242123922327,15
- bounce,659,0.0035398705449466873,6
- finite_volume,659,0.0035398705449466873,13
- small_value,657,0.0035291273869954075,11
- newton,657,0.0035291273869954075,6
- language,656,0.0035237558080197674,8
- special_attention,655,0.0035183842290441277,17
- electromagnetic_form,654,0.0035130126500684876,20
- unified_theory,654,0.0035130126500684876,14
- sizeable,654,0.0035130126500684876,8
- complexity,653,0.003507641071092848,10
- supersymmetric_yang_mills_theory,653,0.003507641071092848,32
- insertion,653,0.003507641071092848,9
- crucial_role,653,0.003507641071092848,12
- fuzzy,653,0.003507641071092848,5
- braneworld,651,0.003496897913141568,10
- remnant,651,0.003496897913141568,7
- viewpoint,651,0.003496897913141568,9
- grand_unification,651,0.003496897913141568,17
- btz,649,0.0034861547551902883,3
- antiquark,649,0.0034861547551902883,9
- f_theory,649,0.0034861547551902883,8
- particular_case,648,0.0034807831762146482,15
- non_universal,647,0.0034754115972390085,13
- weak_scale,647,0.0034754115972390085,10
- centrality,646,0.0034700400182633684,10
- access,646,0.0034700400182633684,6
- partial_wave,646,0.0034700400182633684,12
- effective_lagrangian,646,0.0034700400182633684,20
- applicability,646,0.0034700400182633684,13
- bracket,646,0.0034700400182633684,7
- in_medium,645,0.0034646684392877288,9
- non_compact,645,0.0034646684392877288,11
- lifshitz,645,0.0034646684392877288,8
- wmap,644,0.0034592968603120887,4
- hyperon,644,0.0034592968603120887,7
- sequence,643,0.003453925281336449,8
- practical,643,0.003453925281336449,9
- space_time_dimension,643,0.003453925281336449,20
- projective,642,0.003448553702360809,10
- high_scale,641,0.003443182123385169,10
- versus,641,0.003443182123385169,6
- bose_einstein,640,0.003437810544409529,13
- n4_sym,640,0.003437810544409529,6
- repulsive,639,0.0034324389654338894,9
- third_generation,639,0.0034324389654338894,16
- lo,639,0.0034324389654338894,2
- dirac_equation,638,0.0034270673864582493,14
- calculated,638,0.0034270673864582493,10
- seiberg_witten,637,0.0034216958074826096,14
- ads4,636,0.0034163242285069695,4
- gluonic,636,0.0034163242285069695,7
- elementary_particle,635,0.00341095264953133,19
- free_field,635,0.00341095264953133,10
- penguin,634,0.0034055810705556897,7
- electroweak_symmetry_breaking,634,0.0034055810705556897,29
- effective_mass,634,0.0034055810705556897,14
- green_function,633,0.00340020949158005,14
- dijet,632,0.00339483791260441,5
- simpler,632,0.00339483791260441,7
- sqrts,631,0.0033894663336287703,5
- type_ii,630,0.00338409475465313,7
- intriguing,630,0.00338409475465313,10
- small_scale,629,0.0033787231756774905,11
- superconformal_field,629,0.0033787231756774905,20
- new_approach,628,0.0033733515967018504,12
- orientifold,628,0.0033733515967018504,11
- high_density,628,0.0033733515967018504,12
- quasinormal,628,0.0033733515967018504,11
- recursion,627,0.0033679800177262107,9
- forward_backward_asymmetry,627,0.0033679800177262107,26
- endpoint,627,0.0033679800177262107,8
- non_equilibrium,627,0.0033679800177262107,15
- quantum_correction,626,0.0033626084387505706,18
- unphysical,626,0.0033626084387505706,10
- cosmological_perturbation,624,0.003351865280799291,25
- updated,624,0.003351865280799291,7
- hydrogen,623,0.003346493701823651,8
- capable,623,0.003346493701823651,7
- bremsstrahlung,622,0.003341122122848011,14
- einstein_gravity,622,0.003341122122848011,16
- icecube,622,0.003341122122848011,7
- chi,621,0.0033357505438723714,3
- becomes,621,0.0033357505438723714,7
- optimal,621,0.0033357505438723714,7
- fourier,621,0.0033357505438723714,7
- superconformal_field_theory,621,0.0033357505438723714,27
- arise,620,0.0033303789648967312,5
- intensity,620,0.0033303789648967312,9
- separate,620,0.0033303789648967312,8
- eft,618,0.0033196358069454515,3
- disk,618,0.0033196358069454515,4
- minkowski_space,617,0.003314264227969812,15
- _meson,617,0.003314264227969812,6
- break,617,0.003314264227969812,5
- newtonian,617,0.003314264227969812,9
- predictive,617,0.003314264227969812,10
- statement,616,0.0033088926489941717,9
- cycle,616,0.0033088926489941717,5
- e.g.,616,0.0033088926489941717,4
- numerical_analysis,615,0.003303521070018532,18
- diffeomorphism,614,0.003298149491042892,14
- dimensional_regularization,613,0.0032927779120672522,26
- package,613,0.0032927779120672522,7
- low_mass,613,0.0032927779120672522,8
- cp_even,612,0.003287406333091612,7
- remark,610,0.0032766631751403323,6
- charmed,610,0.0032766631751403323,7
- laser,610,0.0032766631751403323,5
- quenched,608,0.0032659200171890525,8
- bootstrap,608,0.0032659200171890525,9
- diphoton,607,0.003260548438213413,8
- antineutrino,606,0.0032551768592377728,12
- born_infeld,605,0.003249805280262133,11
- limited,604,0.003244433701286493,7
- split,604,0.003244433701286493,5
- phi4,604,0.003244433701286493,4
- condensed,603,0.0032390621223108533,9
- generalised,603,0.0032390621223108533,11
- em,602,0.003233690543335213,2
- complicated,602,0.003233690543335213,11
- compatibility,601,0.0032283189643595735,13
- bjorken,601,0.0032283189643595735,7
- pdf,601,0.0032283189643595735,3
- distinctive,600,0.0032229473853839334,11
- theoretic,600,0.0032229473853839334,9
- numerical_calculation,600,0.0032229473853839334,21
- wormhole,599,0.0032175758064082937,8
- indirect_detection,599,0.0032175758064082937,18
- left_handed,599,0.0032175758064082937,11
- inequality,598,0.0032122042274326536,10
- soft_gluon,598,0.0032122042274326536,10
- superconductors,597,0.003206832648457014,15
- single_field,597,0.003206832648457014,12
- lattice_qcd,597,0.003206832648457014,11
- binding,597,0.003206832648457014,7
- electric_dipole_moment,596,0.003201461069481374,22
- rotational,596,0.003201461069481374,10
- supercharges,596,0.003201461069481374,12
- cold_dark,596,0.003201461069481374,9
- sigma_model,595,0.003196089490505734,11
- future_collider,595,0.003196089490505734,15
- analytic_continuation,595,0.003196089490505734,21
- deuteron,595,0.003196089490505734,8
- limitation,594,0.003190717911530094,10
- kink,593,0.0031853463325544544,4
- cold_dark_matter,592,0.0031799747535788147,16
- bilinear,592,0.0031799747535788147,8
- semileptonic_decay,592,0.0031799747535788147,18
- operation,591,0.0031746031746031746,9
- quarkonia,590,0.003169231595627535,9
- nuclear_collision,590,0.003169231595627535,17
- available_data,590,0.003169231595627535,14
- conformal_invariance,589,0.003163860016651895,20
- meaning,589,0.003163860016651895,7
- scalar_mass,589,0.003163860016651895,11
- performance,589,0.003163860016651895,11
- assignment,588,0.003158488437676255,10
- rigorous,588,0.003158488437676255,8
- secondary,588,0.003158488437676255,9
- differs,588,0.003158488437676255,7
- positivity,586,0.0031477452797249754,10
- ultrarelativistic,586,0.0031477452797249754,17
- external_field,586,0.0031477452797249754,14
- preferred,586,0.0031477452797249754,9
- evaporation,586,0.0031477452797249754,11
- answer,586,0.0031477452797249754,6
- direct_search,585,0.0031423737007493352,13
- scan,585,0.0031423737007493352,4
- bfkl,584,0.0031370021217736956,4
- holonomy,584,0.0031370021217736956,8
- today,584,0.0031370021217736956,5
- schr,582,0.003126258963822416,4
- chiral_condensate,582,0.003126258963822416,17
- computational,582,0.003126258963822416,13
- nmssm,581,0.0031208873848467757,5
- deep_inelastic,581,0.0031208873848467757,14
- recent_measurement,581,0.0031208873848467757,18
- weak_interaction,581,0.0031208873848467757,16
- experimental_bound,580,0.003115515805871136,18
- upcoming,580,0.003115515805871136,8
- i.e.,580,0.003115515805871136,4
- nambu,580,0.003115515805871136,5
- isolated,579,0.003110144226895496,8
- gauge_invariance,579,0.003110144226895496,16
- new_type,578,0.0031047726479198562,8
- contour,578,0.0031047726479198562,7
- glass,578,0.0031047726479198562,5
- standard_model_higgs,578,0.0031047726479198562,20
- non_gaussianity,578,0.0031047726479198562,15
- closed_form,577,0.003099401068944216,11
- careful,577,0.003099401068944216,7
- gluon_fusion,577,0.003099401068944216,12
- dyson_schwinger,577,0.003099401068944216,15
- infinite_number,577,0.003099401068944216,15
- first_step,576,0.0030940294899685764,10
- particular_attention,576,0.0030940294899685764,20
- scale_invariant,575,0.0030886579109929363,15
- detailed_study,575,0.0030886579109929363,14
- modulation,575,0.0030886579109929363,10
- high_energy_physic,575,0.0030886579109929363,18
- testable,575,0.0030886579109929363,8
- d5,575,0.0030886579109929363,2
- tetraquark,574,0.0030832863320172967,10
- thanks,574,0.0030832863320172967,6
- superconductivity,574,0.0030832863320172967,17
- superconductor,573,0.0030779147530416565,14
- first_law,573,0.0030779147530416565,9
- contraction,573,0.0030779147530416565,11
- bc,573,0.0030779147530416565,2
- subspace,572,0.003072543174066017,8
- fifth,572,0.003072543174066017,5
- temporal,572,0.003072543174066017,8
- d2,571,0.0030671715950903768,2
- colored,570,0.003061800016114737,7
- previous_paper,570,0.003061800016114737,14
- neutron_star,570,0.003061800016114737,12
- band,570,0.003061800016114737,4
- large_distance,569,0.003056428437139097,14
- kappa,569,0.003056428437139097,5
- dissipative,569,0.003056428437139097,11
- 10_4,569,0.003056428437139097,4
- chiral_limit,569,0.003056428437139097,12
- empirical,568,0.0030510568581634573,9
- general_form,568,0.0030510568581634573,12
- astrophysics,568,0.0030510568581634573,12
- small_x,567,0.003045685279187817,7
- leptonic_decay,567,0.003045685279187817,14
- tensor_to_scalar,567,0.003045685279187817,16
- trilinear,565,0.0030349421212365374,9
- vanish,565,0.0030349421212365374,6
- mathcaln,565,0.0030349421212365374,8
- two_particle,565,0.0030349421212365374,12
- cdf,565,0.0030349421212365374,3
- p_wave,563,0.0030241989632852576,6
- neutral_higgs,563,0.0030241989632852576,13
- counterterms,563,0.0030241989632852576,12
- linear_sigma_model,562,0.003018827384309618,18
- big_bang_nucleosynthesis,562,0.003018827384309618,24
- bb,562,0.003018827384309618,2
- thin,562,0.003018827384309618,4
- main_result,561,0.003013455805333978,11
- riemannian,561,0.003013455805333978,10
- cp_odd,560,0.003008084226358338,6
- rapid,560,0.003008084226358338,5
- inverted,559,0.003002712647382698,8
- fb_1,558,0.0029973410684070584,4
- nn,558,0.0029973410684070584,2
- quintessence,558,0.0029973410684070584,12
- lack,557,0.0029919694894314183,4
- current_status,557,0.0029919694894314183,14
- supergravities,557,0.0029919694894314183,14
- black_hole_entropy,556,0.0029865979104557786,18
- sqrt,556,0.0029865979104557786,4
- linear_combination,556,0.0029865979104557786,18
- time_like,556,0.0029865979104557786,9
- interface,555,0.0029812263314801385,9
- coincides,555,0.0029812263314801385,9
- log,555,0.0029812263314801385,3
- nambu_goldstone,554,0.002975854752504499,15
- arbitrary_dimension,554,0.002975854752504499,19
- einstein_hilbert,554,0.002975854752504499,16
- hair,554,0.002975854752504499,4
- chiral_quark,553,0.0029704831735288587,12
- classical_solution,553,0.0029704831735288587,18
- scalar_particle,553,0.0029704831735288587,15
- composition,552,0.002965111594553219,11
- nambu_jona_lasinio,551,0.002959740015577579,18
- low_lying,551,0.002959740015577579,9
- module,551,0.002959740015577579,6
- chiral_phase,551,0.002959740015577579,12
- spin_dependent,551,0.002959740015577579,14
- neutrino_mass_matrix,550,0.0029543684366019392,20
- weaker,550,0.0029543684366019392,6
- derive,550,0.0029543684366019392,6
- sun,549,0.002948996857626299,3
- axion_like,549,0.002948996857626299,10
- international,549,0.002948996857626299,13
- general_case,548,0.0029436252786506595,12
- k_,548,0.0029436252786506595,2
- fundamental_representation,548,0.0029436252786506595,26
- spin_12,548,0.0029436252786506595,7
- heavy_meson,547,0.0029382536996750194,11
- cl,547,0.0029382536996750194,2
- ability,547,0.0029382536996750194,7
- viscous,547,0.0029382536996750194,7
- self_interacting,547,0.0029382536996750194,16
- klein_gordon,547,0.0029382536996750194,12
- tensor_to_scalar_ratio,546,0.0029328821206993797,22
- real_time,546,0.0029328821206993797,9
- lorentz_symmetry,545,0.0029275105417237396,16
- linear_sigma,545,0.0029275105417237396,12
- share,544,0.0029221389627481,5
- asymptotic_behavior,544,0.0029221389627481,19
- self,544,0.0029221389627481,4
- capability,544,0.0029221389627481,10
- light_neutrino,544,0.0029221389627481,14
- front,543,0.00291676738377246,5
- approx,543,0.00291676738377246,6
- clean,543,0.00291676738377246,5
- complementarity,543,0.00291676738377246,15
- yangmills,542,0.00291139580479682,9
- exists,541,0.00290602422582118,6
- one_loop_correction,541,0.00290602422582118,19
- numerical_solution,541,0.00290602422582118,18
- severe,541,0.00290602422582118,6
- analytical_expression,540,0.0029006526468455403,21
- illustration,540,0.0029006526468455403,12
- current_data,539,0.0028952810678699002,12
- dark_matter_model,539,0.0028952810678699002,17
- tube,538,0.0028899094888942605,4
- 1_loop,538,0.0028899094888942605,6
- wigner,538,0.0028899094888942605,6
- category,538,0.0028899094888942605,8
- condensed_matter,537,0.0028845379099186204,16
- first_principle,537,0.0028845379099186204,15
- spectator,537,0.0028845379099186204,9
- conjugate,537,0.0028845379099186204,9
- such_theory,536,0.0028791663309429808,11
- phenomenological_implication,536,0.0028791663309429808,28
- pentaquark,535,0.0028737947519673407,10
- spin_2,535,0.0028737947519673407,6
- coupled_channel,534,0.002868423172991701,15
- d3_branes,534,0.002868423172991701,9
- nonabelian,534,0.002868423172991701,10
- r_symmetry,533,0.002863051594016061,10
- chirality,533,0.002863051594016061,9
- hopf,532,0.002857680015040421,4
- project,532,0.002857680015040421,7
- qq,531,0.002852308436064781,2
- confining,531,0.002852308436064781,9
- pseudo,530,0.0028469368570891414,6
- qcd_phase,530,0.0028469368570891414,9
- higher_order_correction,530,0.0028469368570891414,23
- quasinormal_mode,530,0.0028469368570891414,16
- odinger,529,0.0028415652781135013,7
- d_*,529,0.0028415652781135013,3
- sp,528,0.0028361936991378616,2
- ordering,528,0.0028361936991378616,8
- elliptic_flow,528,0.0028361936991378616,13
- cloud,528,0.0028361936991378616,5
- observational_data,528,0.0028361936991378616,18
- insensitive,528,0.0028361936991378616,11
- bianchi,527,0.0028308221201622215,7
- hole_solution,527,0.0028308221201622215,13
- higgs_production,527,0.0028308221201622215,16
- systematic_uncertainty,527,0.0028308221201622215,22
- njl,527,0.0028308221201622215,3
- magnetic_flux,527,0.0028308221201622215,13
- gaugegravity,526,0.002825450541186582,12
- black_hole_horizon,526,0.002825450541186582,18
- stellar,525,0.0028200789622109417,7
- vev,524,0.002814707383235302,3
- self_interaction,524,0.002814707383235302,16
- latter_case,524,0.002814707383235302,11
- piece,523,0.002809335804259662,5
- analyticity,523,0.002809335804259662,11
- early_time,523,0.002809335804259662,10
- different_type,523,0.002809335804259662,14
- active_neutrino,523,0.002809335804259662,15
- r2,523,0.002809335804259662,2
- superposition,522,0.0028039642252840223,13
- worldvolume,521,0.002798592646308382,11
- topological_charge,521,0.002798592646308382,18
- global_analysis,521,0.002798592646308382,15
- neumann,521,0.002798592646308382,7
- scalar_perturbation,520,0.0027932210673327425,19
- de,520,0.0027932210673327425,2
- strong_constraint,519,0.0027878494883571024,17
- composite_higgs,519,0.0027878494883571024,15
- auxiliary_field,519,0.0027878494883571024,15
- recent_lattice,518,0.0027824779093814627,14
- update,518,0.0027824779093814627,6
- sine_gordon,518,0.0027824779093814627,11
- frw,517,0.0027771063304058226,3
- complex_structure,517,0.0027771063304058226,17
- energetic,517,0.0027771063304058226,9
- superfluid,516,0.002771734751430183,10
- viability,516,0.002771734751430183,9
- representative,516,0.002771734751430183,14
- superalgebra,516,0.002771734751430183,12
- gauge_group,516,0.002771734751430183,11
- dirichlet,516,0.002771734751430183,9
- crystal,516,0.002771734751430183,7
- bottom_quark,516,0.002771734751430183,12
- third_order,516,0.002771734751430183,11
- substructure,516,0.002771734751430183,12
- success,515,0.002766363172454543,7
- wavefunction,515,0.002766363172454543,12
- genuine,515,0.002766363172454543,7
- plausible,513,0.002755620014503263,9
- fermilab,513,0.002755620014503263,8
- produced,513,0.002755620014503263,8
- mathcaln2,512,0.0027502484355276234,9
- standard_model_particle,511,0.0027448768565519832,23
- monodromy,511,0.0027448768565519832,9
- machine,510,0.0027395052775763436,7
- slepton,509,0.0027341336986007035,7
- two_photon,509,0.0027341336986007035,10
- different_value,507,0.002723390540649424,15
- higher_energy,507,0.002723390540649424,13
- irreducible_representation,507,0.002723390540649424,26
- generalisation,507,0.002723390540649424,14
- nucleus_nucleus,507,0.002723390540649424,15
- locality,507,0.002723390540649424,8
- rr,505,0.0027126473826981443,2
- sps,504,0.0027072758037225042,3
- splittings,504,0.0027072758037225042,10
- gravitational_theory,503,0.0027019042247468645,20
- bag,503,0.0027019042247468645,3
- lorentz_violation,503,0.0027019042247468645,17
- toroidal,502,0.0026965326457712244,8
- yang,502,0.0026965326457712244,4
- convenient,502,0.0026965326457712244,10
- unusual,501,0.0026911610667955848,7
- tunneling,501,0.0026911610667955848,9
- redefinition,501,0.0026911610667955848,12
- mathcaln4,501,0.0026911610667955848,9
- heavy_flavor,501,0.0026911610667955848,12
- finite_density,501,0.0026911610667955848,14
- burst,500,0.0026857894878199447,5
- best_fit,499,0.002680417908844305,8
- type_i,499,0.002680417908844305,6
- pair_production,498,0.002675046329868665,15
- heavy_baryon,498,0.002675046329868665,12
- popular,498,0.002675046329868665,7
- accordance,497,0.002669674750893025,10
- prime,497,0.002669674750893025,5
- acceptable,496,0.002664303171917385,10
- off_diagonal,496,0.002664303171917385,12
- zeta,496,0.002664303171917385,4
- proceeding,496,0.002664303171917385,10
- d_dimensional,496,0.002664303171917385,13
- spin_independent,495,0.0026589315929417454,16
- chiral_phase_transition,495,0.0026589315929417454,23
- two_higgs_doublet_model,495,0.0026589315929417454,23
- spontaneous_symmetry_breaking,495,0.0026589315929417454,29
- galactic_center,494,0.0026535600139661053,15
- giant,494,0.0026535600139661053,5
- see_saw,493,0.0026481884349904656,7
- phantom,493,0.0026481884349904656,7
- theoretical_model,493,0.0026481884349904656,17
- mesonic,493,0.0026481884349904656,7
- option,492,0.0026428168560148255,6
- exact_result,492,0.0026428168560148255,12
- short_range,491,0.002637445277039186,11
- two_,491,0.002637445277039186,4
- spin_1,490,0.0026320736980635457,6
- invariant_mass_distribution,490,0.0026320736980635457,27
- higgs_model,490,0.0026320736980635457,11
- likelihood,489,0.002626702119087906,10
- outcome,489,0.002626702119087906,7
- parameterization,489,0.002626702119087906,16
- 10_5,489,0.002626702119087906,4
- different_model,488,0.002621330540112266,15
- plot,488,0.002621330540112266,4
- dwarf,488,0.002621330540112266,5
- long_baseline,487,0.0026159589611366263,13
- rigid,487,0.0026159589611366263,5
- scale_factor,487,0.0026159589611366263,12
- topological_string,486,0.002610587382160986,18
- prompt,485,0.0026052158031853465,6
- lorentz_violating,485,0.0026052158031853465,17
- wavefunctions,485,0.0026052158031853465,13
- same_order,484,0.0025998442242097064,10
- h1,484,0.0025998442242097064,2
- mild,484,0.0025998442242097064,4
- effective_operator,483,0.0025944726452340667,18
- bd,482,0.0025891010662584266,2
- actual,482,0.0025891010662584266,6
- fine_structure,481,0.002583729487282787,14
- gr,481,0.002583729487282787,2
- ahler,481,0.002583729487282787,5
- acoustic,481,0.002583729487282787,8
- phenomenological_model,481,0.002583729487282787,22
- favor,481,0.002583729487282787,5
- n_limit,480,0.002578357908307147,7
- thermal_equilibrium,480,0.002578357908307147,19
- relativistic_heavy_ion,480,0.002578357908307147,22
- advance,480,0.002578357908307147,7
- distortion,480,0.002578357908307147,10
- light_higgs,480,0.002578357908307147,11
- planck_scale,480,0.002578357908307147,12
- exploration,479,0.002572986329331507,11
- feasibility,479,0.002572986329331507,11
- electroproduction,479,0.002572986329331507,17
- diffeomorphisms,479,0.002572986329331507,15
- new_model,479,0.002572986329331507,9
- tail,478,0.002567614750355867,4
- topological_defect,478,0.002567614750355867,18
- relativistic_quantum,478,0.002567614750355867,20
- world_sheet,477,0.0025622431713802274,11
- physical_interpretation,477,0.0025622431713802274,23
- cusp,477,0.0025622431713802274,4
- h0,476,0.0025568715924045872,2
- dark_matter_mass,476,0.0025568715924045872,16
- ww,474,0.0025461284344533075,2
- wess_zumino,474,0.0025461284344533075,11
- boundary_state,474,0.0025461284344533075,14
- surprising,474,0.0025461284344533075,10
- l_,474,0.0025461284344533075,2
- array,474,0.0025461284344533075,5
- feasible,474,0.0025461284344533075,8
- excellent_agreement,473,0.002540756855477668,19
- competitive,473,0.002540756855477668,11
- self_interactions,472,0.0025353852765020277,17
- ln,472,0.0025353852765020277,2
- bath,472,0.0025353852765020277,4
- non_bps,472,0.0025353852765020277,7
- left,472,0.0025353852765020277,4
- recent_data,471,0.002530013697526388,11
- heavy_quarkonium,471,0.002530013697526388,16
- experimental_limit,471,0.002530013697526388,18
- physical_quantity,471,0.002530013697526388,17
- previous_analysis,471,0.002530013697526388,17
- dglap,471,0.002530013697526388,5
- chargino,471,0.002530013697526388,8
- friedmann,471,0.002530013697526388,9
- effective_coupling,471,0.002530013697526388,18
- fcnc,470,0.002524642118550748,4
- baryon_asymmetry,470,0.002524642118550748,16
- residue,470,0.002524642118550748,7
- list,470,0.002524642118550748,4
- hypothetical,470,0.002524642118550748,12
- task,470,0.002524642118550748,4
- nuclear_modification,469,0.0025192705395751082,20
- leq,469,0.0025192705395751082,3
- jona_lasinio,469,0.0025192705395751082,12
- bayesian,468,0.002513898960599468,8
- sheet,468,0.002513898960599468,5
- qcd_correction,468,0.002513898960599468,14
- match,468,0.002513898960599468,5
- nue,467,0.0025085273816238284,3
- top_quark_pair,467,0.0025085273816238284,14
- hubble_parameter,467,0.0025085273816238284,16
- regulator,467,0.0025085273816238284,9
- criticality,467,0.0025085273816238284,11
- cosmological_evolution,467,0.0025085273816238284,22
- coherence,467,0.0025085273816238284,9
- dissipation,466,0.0025031558026481883,11
- yang_mills_theory,466,0.0025031558026481883,17
- mixture,466,0.0025031558026481883,7
- mc,466,0.0025031558026481883,2
- byproduct,465,0.0024977842236725487,9
- demonstrate,465,0.0024977842236725487,11
- explicit_form,465,0.0024977842236725487,13
- pulsar,464,0.0024924126446969085,6
- capture,464,0.0024924126446969085,7
- back_reaction,464,0.0024924126446969085,13
- modified_gravity,463,0.002487041065721269,16
- observatory,463,0.002487041065721269,11
- independence,463,0.002487041065721269,12
- discussed,463,0.002487041065721269,9
- good_description,462,0.0024816694867456288,16
- lattice_simulation,461,0.002476297907769989,18
- spite,460,0.002470926328794349,5
- virtual_photon,460,0.002470926328794349,14
- cosmological_solution,459,0.0024655547498187093,21
- coincidence,458,0.002460183170843069,11
- mh,458,0.002460183170843069,2
- +_,458,0.002460183170843069,2
- c.l,458,0.002460183170843069,3
- matrix_model,458,0.002460183170843069,12
- bosonic_string,458,0.002460183170843069,14
- large_mass,457,0.0024548115918674295,10
- calculus,457,0.0024548115918674295,8
- wzw,457,0.0024548115918674295,3
- kt,456,0.0024494400128917894,2
- t2,456,0.0024494400128917894,2
- analytical_result,456,0.0024494400128917894,17
- computer,456,0.0024494400128917894,8
- relies,456,0.0024494400128917894,6
- schrodinger,455,0.0024440684339161497,11
- calculable,455,0.0024440684339161497,10
- smallness,455,0.0024440684339161497,9
- compare,454,0.0024386968549405096,7
- compactified,454,0.0024386968549405096,12
- satellite,453,0.00243332527596487,9
- earlier_work,453,0.00243332527596487,12
- dyson_schwinger_equation,453,0.00243332527596487,24
- quark_matter,453,0.00243332527596487,12
- flat_spacetime,453,0.00243332527596487,14
- alignment,453,0.00243332527596487,9
- single_spin,452,0.00242795369698923,11
- local_operator,452,0.00242795369698923,14
- unexpected,452,0.00242795369698923,10
- skyrme,452,0.00242795369698923,6
- top_quark_mass,451,0.00242258211801359,14
- two_flavor,451,0.00242258211801359,10
- a1,451,0.00242258211801359,2
- bethe_salpeter_equation,450,0.00241721053903795,23
- einstein_equation,450,0.00241721053903795,17
- general_class,450,0.00241721053903795,13
- conical,449,0.0024118389600623104,7
- perfect_fluid,449,0.0024118389600623104,13
- heavy_light,449,0.0024118389600623104,11
- alice,449,0.0024118389600623104,5
- striking,449,0.0024118389600623104,8
- large_volume,449,0.0024118389600623104,12
- commutation,449,0.0024118389600623104,11
- heavy_neutrino,449,0.0024118389600623104,14
- landau_gauge,448,0.0024064673810866703,12
- conceptual,448,0.0024064673810866703,10
- deconfined,448,0.0024064673810866703,10
- collection,448,0.0024064673810866703,10
- anti_de_sitter_space,448,0.0024064673810866703,20
- long_standing,447,0.0024010958021110306,13
- technicolor,447,0.0024010958021110306,11
- x_ray,447,0.0024010958021110306,5
- space_like,447,0.0024010958021110306,10
- stress_energy,447,0.0024010958021110306,13
- abjm,447,0.0024010958021110306,4
- eikonal,446,0.0023957242231353905,7
- gapless,446,0.0023957242231353905,7
- one_parameter,446,0.0023957242231353905,13
- state_of_the_art,445,0.002390352644159751,16
- other_model,445,0.002390352644159751,11
- potential_model,444,0.0023849810651841107,15
- mill,444,0.0023849810651841107,4
- km,444,0.0023849810651841107,2
- subsystem,443,0.002379609486208471,9
- reveals,443,0.002379609486208471,7
- dark_matter_search,443,0.002379609486208471,18
- diagrammatic,443,0.002379609486208471,12
- v2,443,0.002379609486208471,2
- a4,442,0.002374237907232831,2
- several_example,442,0.002374237907232831,15
- large_scale_structure,442,0.002374237907232831,21
- lepton_number,442,0.002374237907232831,13
- non_singular,441,0.0023688663282571912,12
- observational_constraint,441,0.0023688663282571912,24
- conflict,441,0.0023688663282571912,8
- mu+,440,0.002363494749281551,3
- conifold,440,0.002363494749281551,8
- pedagogical,440,0.002363494749281551,11
- deep_inelastic_scattering,440,0.002363494749281551,25
- crossing,440,0.002363494749281551,8
- conjectured,439,0.0023581231703059115,11
- pauli,439,0.0023581231703059115,5
- second_part,439,0.0023581231703059115,11
- drell_yan_process,439,0.0023581231703059115,17
- strong_cp,438,0.0023527515913302714,9
- gtrsim,438,0.0023527515913302714,6
- joint,438,0.0023527515913302714,5
- hypermultiplets,438,0.0023527515913302714,15
- nrqcd,437,0.0023473800123546317,5
- junction,437,0.0023473800123546317,8
- summation,437,0.0023473800123546317,9
- baryon_number,437,0.0023473800123546317,13
- theoretical_framework,437,0.0023473800123546317,21
- iv,437,0.0023473800123546317,2
- mb,436,0.0023420084333789916,2
- parameter_space,436,0.0023420084333789916,15
- diffraction,436,0.0023420084333789916,11
- au+au,436,0.0023420084333789916,5
- weinberg,436,0.0023420084333789916,8
- messenger,436,0.0023420084333789916,9
- higgsino,436,0.0023420084333789916,8
- chiral_fermion,436,0.0023420084333789916,14
- four_fermion,435,0.002336636854403352,12
- cc,435,0.002336636854403352,2
- non_minimal_coupling,434,0.002331265275427712,20
- recombination,434,0.002331265275427712,13
- k3,434,0.002331265275427712,2
- rare_decay,434,0.002331265275427712,10
- fashion,433,0.002325893696452072,7
- bekenstein_hawking,433,0.002325893696452072,18
- four_quark,433,0.002325893696452072,10
- brief_review,433,0.002325893696452072,12
- renormalizability,433,0.002325893696452072,17
- non_thermal,433,0.002325893696452072,11
- stringent_constraint,433,0.002325893696452072,20
- prior,432,0.002320522117476432,5
- fixed_order,432,0.002320522117476432,11
- brane_world,432,0.002320522117476432,11
- flavor_changing,431,0.0023151505385007923,15
- nucleon_nucleon,431,0.0023151505385007923,15
- presentation,431,0.0023151505385007923,12
- ising,431,0.0023151505385007923,5
- hypercharge,431,0.0023151505385007923,11
- higgs_potential,431,0.0023151505385007923,15
- weak_decay,430,0.0023097789595251522,10
- real_part,430,0.0023097789595251522,9
- axion_like_particle,429,0.0023044073805495125,19
- relativistic_heavy_ion_collision,429,0.0023044073805495125,32
- light_meson,429,0.0023044073805495125,11
- throat,429,0.0023044073805495125,6
- kinetic_energy,429,0.0023044073805495125,14
- k0,429,0.0023044073805495125,2
- hypersurface,429,0.0023044073805495125,12
- numerical_study,428,0.0022990358015738724,15
- pb,428,0.0022990358015738724,2
- limiting,428,0.0022990358015738724,8
- subtle,427,0.0022936642225982328,6
- integrable_system,427,0.0022936642225982328,17
- noise,427,0.0022936642225982328,5
- k+,427,0.0022936642225982328,2
- new_feature,427,0.0022936642225982328,11
- j.,426,0.0022882926436225927,2
- sneutrino,426,0.0022882926436225927,9
- different_approach,426,0.0022882926436225927,18
- phenomenological_consequence,426,0.0022882926436225927,28
- m1,425,0.002282921064646953,2
- symmetric_model,425,0.002282921064646953,15
- fixing,425,0.002282921064646953,6
- gravitation,425,0.002282921064646953,11
- inconsistent,424,0.002277549485671313,12
- valuable,424,0.002277549485671313,8
- solid,424,0.002277549485671313,5
- commutator,424,0.002277549485671313,10
- noncommutative_geometry,424,0.002277549485671313,23
- cylinder,423,0.002272177906695673,8
- nilpotent,423,0.002272177906695673,9
- schwinger_dyson,423,0.002272177906695673,15
- prominent,423,0.002272177906695673,9
- scalar_curvature,423,0.002272177906695673,16
- paradox,422,0.0022668063277200335,7
- conservative,422,0.0022668063277200335,12
- n8,422,0.0022668063277200335,2
- lower_limit,422,0.0022668063277200335,11
- effective_model,421,0.0022614347487443934,15
- dissociation,421,0.0022614347487443934,12
- new_solution,421,0.0022614347487443934,12
- merger,421,0.0022614347487443934,6
- 10_6,421,0.0022614347487443934,4
- member,420,0.0022560631697687537,6
- antiproton,420,0.0022560631697687537,10
- ultra_relativistic,420,0.0022560631697687537,18
- theta23,420,0.0022560631697687537,7
- analytical_solution,419,0.0022506915907931136,19
- milky,419,0.0022506915907931136,5
- barrier,419,0.0022506915907931136,7
- sm_like,419,0.0022506915907931136,7
- point_like,419,0.0022506915907931136,10
- systematic_study,418,0.002245320011817474,16
- orientifolds,418,0.002245320011817474,12
- safe,418,0.002245320011817474,4
- imprint,417,0.002239948432841834,7
- precise_measurement,416,0.002234576853866194,19
- toda,416,0.002234576853866194,4
- renormalization_group,416,0.002234576853866194,21
- 5_dimensional,416,0.002234576853866194,13
- fermi_lat,415,0.002229205274890554,9
- born,415,0.002229205274890554,4
- foundation,414,0.0022238336959149144,10
- parametrizations,414,0.0022238336959149144,16
- intermediate_state,414,0.0022238336959149144,18
- three_point_function,414,0.0022238336959149144,20
- differential_distribution,413,0.0022184621169392743,25
- permutation,413,0.0022184621169392743,11
- act,412,0.0022130905379636346,3
- saddle,412,0.0022130905379636346,6
- preliminary_result,412,0.0022130905379636346,18
- analytic_result,412,0.0022130905379636346,15
- technology,411,0.0022077189589879945,10
- saddle_point,411,0.0022077189589879945,12
- chi2,411,0.0022077189589879945,4
- milky_way,411,0.0022077189589879945,9
- characterization,411,0.0022077189589879945,16
- dispersive,411,0.0022077189589879945,10
- hidden_sector,411,0.0022077189589879945,13
- radion,410,0.002202347380012355,6
- fate,410,0.002202347380012355,4
- ladder,410,0.002202347380012355,6
- direct_cp,410,0.002202347380012355,9
- fourth_order,410,0.002202347380012355,12
- single_spin_asymmetry,409,0.0021969758010367147,21
- general_solution,409,0.0021969758010367147,16
- np,409,0.0021969758010367147,2
- ground_state,409,0.0021969758010367147,12
- single_particle,409,0.0021969758010367147,15
- non_gaussian,409,0.0021969758010367147,12
- d3_brane,409,0.0021969758010367147,8
- bottomonium,409,0.0021969758010367147,11
- derivative_expansion,408,0.002191604222061075,20
- mz,408,0.002191604222061075,2
- nonminimal,408,0.002191604222061075,10
- concrete_example,408,0.002191604222061075,16
- e6,408,0.002191604222061075,2
- mutual,407,0.002186232643085435,6
- insulator,407,0.002186232643085435,9
- date,407,0.002186232643085435,4
- pythia,407,0.002186232643085435,6
- wide_class,407,0.002186232643085435,10
- heavy_higgs,407,0.002186232643085435,11
- d+1,407,0.002186232643085435,3
- sleptons,407,0.002186232643085435,8
- experimental_search,406,0.0021808610641097952,19
- simplicity,406,0.0021808610641097952,10
- easy,406,0.0021808610641097952,4
- chiral_quark_model,406,0.0021808610641097952,18
- noether,406,0.0021808610641097952,7
- einstein_maxwell,406,0.0021808610641097952,16
- s4,405,0.002175489485134155,2
- gev2,405,0.002175489485134155,4
- glueballs,405,0.002175489485134155,9
- cyclic,404,0.0021701179061585155,6
- scale_invariance,404,0.0021701179061585155,16
- event_by_event,404,0.0021701179061585155,14
- quotient,404,0.0021701179061585155,8
- cp_violating_phase,403,0.0021647463271828754,18
- lett,403,0.0021647463271828754,4
- analytic_solution,403,0.0021647463271828754,17
- small_mass,403,0.0021647463271828754,10
- suppressed,403,0.0021647463271828754,10
- gravitational_interaction,402,0.0021593747482072357,25
- huge,402,0.0021593747482072357,4
- twistor,402,0.0021593747482072357,7
- false,402,0.0021593747482072357,5
- naked,401,0.0021540031692315956,5
- sin2,401,0.0021540031692315956,4
- occurs,401,0.0021540031692315956,6
- impossible,400,0.002148631590255956,10
- intense,400,0.002148631590255956,7
- _function,400,0.002148631590255956,9
- fitting,399,0.002143260011280316,7
- noncommutative_space,399,0.002143260011280316,20
- by_product,398,0.002137888432304676,10
- anti_,398,0.002137888432304676,5
- image,398,0.002137888432304676,5
- survival,398,0.002137888432304676,8
- hadronic_collision,398,0.002137888432304676,18
- special_emphasis,398,0.002137888432304676,16
- tadpole,398,0.002137888432304676,7
- eos,398,0.002137888432304676,3
- qcd_factorization,397,0.002132516853329036,17
- n_1,397,0.002132516853329036,3
- magnetic_charge,397,0.002132516853329036,15
- non_perturbative_effect,397,0.002132516853329036,23
- satisfactory,397,0.002132516853329036,12
- systematic_error,396,0.0021271452743533963,16
- perturbative_calculation,396,0.0021271452743533963,24
- same_sign,396,0.0021271452743533963,9
- rotating,395,0.0021217736953777562,8
- numerous,395,0.0021217736953777562,8
- lepton_flavor,395,0.0021217736953777562,13
- scfts,395,0.0021217736953777562,5
- integral_equation,395,0.0021217736953777562,17
- strong_decay,395,0.0021217736953777562,12
- hypergeometric,394,0.0021164021164021165,14
- calabi_yau_manifold,393,0.0021110305374264764,19
- dynamical_system,393,0.0021110305374264764,16
- low_energy_limit,393,0.0021110305374264764,16
- site,392,0.0021056589584508368,4
- generalized_parton,392,0.0021056589584508368,18
- dual_description,392,0.0021056589584508368,16
- langle,391,0.0021002873794751967,6
- recent_year,391,0.0021002873794751967,11
- subtlety,391,0.0021002873794751967,8
- eigenfunctions,391,0.0021002873794751967,14
- recent_study,391,0.0021002873794751967,12
- ew,390,0.002094915800499557,2
- non_abelian_gauge_theory,390,0.002094915800499557,24
- susy_breaking,390,0.002094915800499557,13
- slow_roll_inflation,390,0.002094915800499557,19
- functional_renormalization,389,0.002089544221523917,26
- uv_completion,389,0.002089544221523917,13
- dyonic,389,0.002089544221523917,6
- knot,389,0.002089544221523917,4
- nucleus_nucleus_collision,389,0.002089544221523917,25
- dual_field,389,0.002089544221523917,10
- bias,389,0.002089544221523917,4
- spin_0,389,0.002089544221523917,6
- holographic_entanglement,389,0.002089544221523917,24
- shock,388,0.002084172642548277,5
- superpartners,388,0.002084172642548277,13
- pb+pb,388,0.002084172642548277,5
- decoherence,387,0.002078801063572637,11
- chaos,387,0.002078801063572637,5
- finite_number,387,0.002078801063572637,13
- hyperfine,387,0.002078801063572637,9
- asymptotic_symmetry,387,0.002078801063572637,19
- black_brane,387,0.002078801063572637,11
- pp_wave,387,0.002078801063572637,7
- isovector,387,0.002078801063572637,9
- smallest,387,0.002078801063572637,8
- sin,387,0.002078801063572637,3
- charged_particle,387,0.002078801063572637,16
- strong_cp_problem,387,0.002078801063572637,17
- total_energy,386,0.0020734294845969974,12
- oscillatory,386,0.0020734294845969974,11
- pseudo_scalar,386,0.0020734294845969974,13
- hypermultiplet,386,0.0020734294845969974,14
- standard_model_gauge,386,0.0020734294845969974,20
- black_hole_thermodynamics,386,0.0020734294845969974,25
- transparent,386,0.0020734294845969974,11
- construct,386,0.0020734294845969974,9
- large_momentum,386,0.0020734294845969974,14
- a2,385,0.0020680579056213573,2
- exterior,385,0.0020680579056213573,8
- adsqcd,385,0.0020680579056213573,6
- n3,384,0.0020626863266457176,2
- mathcaln1,384,0.0020626863266457176,9
- population,384,0.0020626863266457176,10
- superpotentials,383,0.0020573147476700775,15
- next_to_leading_order_qcd,383,0.0020573147476700775,25
- dominant_contribution,383,0.0020573147476700775,21
- realisation,383,0.0020573147476700775,11
- ab,383,0.0020573147476700775,2
- isoscalar,382,0.002051943168694438,9
- first_order_phase_transition,382,0.002051943168694438,28
- van,382,0.002051943168694438,3
- pp_collision,382,0.002051943168694438,12
- holographic_qcd,381,0.0020465715897187977,15
- functional_renormalization_group,381,0.0020465715897187977,32
- dark_photon,381,0.0020465715897187977,11
- classical_field,381,0.0020465715897187977,15
- propagating,381,0.0020465715897187977,11
- electroweak_phase,380,0.002041200010743158,17
- strong_coupling_constant,380,0.002041200010743158,24
- cern_lhc,380,0.002041200010743158,8
- inhomogeneity,380,0.002041200010743158,13
- discontinuity,380,0.002041200010743158,13
- infrared_divergence,380,0.002041200010743158,19
- helpful,379,0.002035828431767518,7
- quadrupole,379,0.002035828431767518,10
- accelerated_expansion,379,0.002035828431767518,21
- tachyons,379,0.002035828431767518,8
- parent,379,0.002035828431767518,6
- patch,378,0.0020304568527918783,5
- form_factors,378,0.0020304568527918783,12
- lightest_neutralino,378,0.0020304568527918783,19
- one_loop_order,378,0.0020304568527918783,14
- edm,378,0.0020304568527918783,3
- plate,378,0.0020304568527918783,5
- hard_scattering,378,0.0020304568527918783,15
- dimensionality,377,0.002025085273816238,14
- wkb,377,0.002025085273816238,3
- course,377,0.002025085273816238,6
- dirac_fermion,377,0.002025085273816238,13
- specific_example,377,0.002025085273816238,16
- jacobi,377,0.002025085273816238,6
- regard,376,0.0020197136948405985,6
- bispectrum,376,0.0020197136948405985,10
- nonlinear_sigma_model,376,0.0020197136948405985,21
- peccei_quinn,376,0.0020197136948405985,12
- instantaneous,376,0.0020197136948405985,13
- outer,375,0.0020143421158649584,5
- ten_dimensional,375,0.0020143421158649584,15
- electroweak_phase_transition,375,0.0020143421158649584,28
- de_sitter,375,0.0020143421158649584,9
- graphene,375,0.0020143421158649584,8
- cosmological_constant_problem,375,0.0020143421158649584,29
- boson_mass,375,0.0020143421158649584,10
- kinetic_theory,375,0.0020143421158649584,14
- dbi,374,0.0020089705368893187,3
- thermodynamic_property,374,0.0020089705368893187,22
- recent_paper,374,0.0020089705368893187,12
- recent_observation,374,0.0020089705368893187,18
- low_momentum,374,0.0020089705368893187,12
- l+,373,0.0020035989579136786,2
- orientation,373,0.0020035989579136786,11
- inert,373,0.0020035989579136786,5
- kinetic_mixing,373,0.0020035989579136786,14
- randall_sundrum_model,373,0.0020035989579136786,21
- hadron_hadron,373,0.0020035989579136786,13
- occurrence,373,0.0020035989579136786,10
- exception,372,0.001998227378938039,9
- design,372,0.001998227378938039,6
- sparticle,371,0.001992855799962399,9
- finiteness,371,0.001992855799962399,10
- phase_transition,371,0.001992855799962399,16
- neutral_higgs_boson,371,0.001992855799962399,19
- inherent,371,0.001992855799962399,8
- generalized_parton_distribution,371,0.001992855799962399,31
- w_boson,371,0.001992855799962399,7
- euler,370,0.001987484220986759,5
- entangled,370,0.001987484220986759,9
- geq,370,0.001987484220986759,3
- bsm,370,0.001987484220986759,3
- theoretical_result,370,0.001987484220986759,18
- internal_space,370,0.001987484220986759,14
- low_energy_constant,369,0.001982112642011119,19
- numerical_method,369,0.001982112642011119,16
- nambu_jona_lasinio_model,369,0.001982112642011119,24
- look,369,0.001982112642011119,4
- proper_time,369,0.001982112642011119,11
- sudakov,369,0.001982112642011119,7
- higher_twist,368,0.0019767410630354794,12
- explicit_calculation,368,0.0019767410630354794,20
- resultant,368,0.0019767410630354794,9
- near_horizon_geometry,368,0.0019767410630354794,21
- desired,368,0.0019767410630354794,7
- wave_function,367,0.0019713694840598392,13
- phenomenological_analysis,367,0.0019713694840598392,25
- simplified_model,367,0.0019713694840598392,16
- centre,366,0.0019659979050841996,6
- cosmological_observation,366,0.0019659979050841996,24
- physical_observables,366,0.0019659979050841996,20
- chiral_anomaly,365,0.0019606263261085595,14
- world_volume,365,0.0019606263261085595,12
- path_integral,365,0.0019606263261085595,13
- finite_energy,365,0.0019606263261085595,13
- bose,365,0.0019606263261085595,4
- compact_star,364,0.00195525474713292,12
- etac,364,0.00195525474713292,4
- lfv,364,0.00195525474713292,3
- general_formula,364,0.00195525474713292,15
- reminiscent,364,0.00195525474713292,11
- uniqueness,363,0.00194988316815728,10
- departure,363,0.00194988316815728,9
- stack,363,0.00194988316815728,5
- obvious,363,0.00194988316815728,7
- simple_example,363,0.00194988316815728,14
- possible_application,362,0.00194451158918164,20
- unintegrated,362,0.00194451158918164,12
- diffuse,362,0.00194451158918164,7
- hadronic_decay,362,0.00194451158918164,14
- nonlinear_sigma,362,0.00194451158918164,15
- explicit_formula,362,0.00194451158918164,16
- warp,361,0.0019391400102060001,4
- mean_field_approximation,361,0.0019391400102060001,24
- hydrodynamical,360,0.0019337684312303602,14
- slice,360,0.0019337684312303602,5
- lagrangian_approach,360,0.0019337684312303602,19
- convolution,360,0.0019337684312303602,11
- supermultiplets,359,0.0019283968522547203,15
- previous_calculation,359,0.0019283968522547203,20
- wedge,359,0.0019283968522547203,5
- spinning,359,0.0019283968522547203,8
- electromagnetism,359,0.0019283968522547203,16
- higgs_doublet_model,359,0.0019283968522547203,19
- integral_representation,358,0.0019230252732790804,23
- tau_lepton,358,0.0019230252732790804,10
- la,358,0.0019230252732790804,2
- ongoing,358,0.0019230252732790804,7
- one_,358,0.0019230252732790804,4
- cosmological_constraint,357,0.0019176536943034405,23
- irrelevant,357,0.0019176536943034405,10
- nuclear_physic,357,0.0019176536943034405,14
- soft_collinear,357,0.0019176536943034405,14
- ep,357,0.0019176536943034405,2
- track,356,0.0019122821153278007,5
- black_hole_background,356,0.0019122821153278007,21
- critical_behavior,356,0.0019122821153278007,17
- leptoquark,356,0.0019122821153278007,10
- tmd,356,0.0019122821153278007,3
- a.,355,0.0019069105363521608,2
- borel,355,0.0019069105363521608,5
- integrable_model,355,0.0019069105363521608,16
- h2,355,0.0019069105363521608,2
- m.,355,0.0019069105363521608,2
- infty,355,0.0019069105363521608,5
- nonstandard,354,0.0019015389573765209,11
- extra_dimensional,354,0.0019015389573765209,17
- forthcoming,354,0.0019015389573765209,11
- linearly,353,0.001896167378400881,8
- systematics,353,0.001896167378400881,11
- ghost_free,353,0.001896167378400881,10
- allows,353,0.001896167378400881,6
- modeling,353,0.001896167378400881,8
- general_result,352,0.001890795799425241,14
- specific_model,352,0.001890795799425241,14
- long_time,352,0.001890795799425241,9
- supersymmetric_quantum,351,0.0018854242204496012,22
- eternal,351,0.0018854242204496012,7
- quality,351,0.0018854242204496012,7
- black_string,351,0.0018854242204496012,12
- threefolds,351,0.0018854242204496012,10
- charged_lepton,351,0.0018854242204496012,14
- barb,351,0.0018854242204496012,4
- translational,351,0.0018854242204496012,13
- free_fermion,351,0.0018854242204496012,12
- co,351,0.0018854242204496012,2
- infinite_dimensional,350,0.0018800526414739613,20
- internal_structure,350,0.0018800526414739613,18
- 10_2,350,0.0018800526414739613,4
- wider,349,0.0018746810624983214,5
- special_relativity,349,0.0018746810624983214,18
- day,349,0.0018746810624983214,3
- jordan,349,0.0018746810624983214,6
- resummed,349,0.0018746810624983214,8
- abelian_higgs,349,0.0018746810624983214,13
- strongest,349,0.0018746810624983214,9
- refined,349,0.0018746810624983214,7
- decay_constant,349,0.0018746810624983214,14
- thick,349,0.0018746810624983214,5
- non_extremal,349,0.0018746810624983214,12
- appendix,349,0.0018746810624983214,8
- non_linear_sigma_model,348,0.0018693094835226815,22
- balance,348,0.0018693094835226815,7
- s_duality,348,0.0018693094835226815,9
- mu+mu_,348,0.0018693094835226815,6
- dedicated,348,0.0018693094835226815,9
- unruh,348,0.0018693094835226815,5
- mellin,347,0.0018639379045470416,6
- final_result,347,0.0018639379045470416,12
- four_point_function,347,0.0018639379045470416,19
- compositeness,347,0.0018639379045470416,13
- depth,347,0.0018639379045470416,5
- holographic_entanglement_entropy,347,0.0018639379045470416,32
- isocurvature,346,0.0018585663255714017,12
- second_order_phase,346,0.0018585663255714017,18
- strict,346,0.0018585663255714017,6
- galileon,345,0.0018531947465957618,8
- nearby,345,0.0018531947465957618,6
- high_energy_neutrino,345,0.0018531947465957618,20
- dual_field_theory,345,0.0018531947465957618,17
- contains,344,0.001847823167620122,8
- pa,344,0.001847823167620122,2
- boundary_term,344,0.001847823167620122,13
- applies,344,0.001847823167620122,7
- few_percent,343,0.001842451588644482,11
- factorisation,343,0.001842451588644482,13
- gluinos,343,0.001842451588644482,7
- long_wavelength,343,0.001842451588644482,15
- strongly_coupled,343,0.001842451588644482,16
- second_class,343,0.001842451588644482,12
- early_stage,343,0.001842451588644482,11
- circumstance,342,0.0018370800096688422,12
- correlated,342,0.0018370800096688422,10
- virtual_compton,342,0.0018370800096688422,15
- powerful_tool,342,0.0018370800096688422,13
- new_data,342,0.0018370800096688422,8
- galilean,342,0.0018370800096688422,8
- inequivalent,342,0.0018370800096688422,12
- minimal_supergravity,342,0.0018370800096688422,20
- open_charm,342,0.0018370800096688422,10
- stress_energy_tensor,342,0.0018370800096688422,20
- general_expression,342,0.0018370800096688422,18
- seiberg,341,0.0018317084306932023,7
- general_framework,341,0.0018317084306932023,17
- scalar_sector,341,0.0018317084306932023,13
- pulse,341,0.0018317084306932023,5
- unchanged,341,0.0018317084306932023,9
- cmssm,341,0.0018317084306932023,5
- pi+pi_,341,0.0018317084306932023,6
- truncated,341,0.0018317084306932023,9
- worldline,340,0.0018263368517175624,9
- loop_level,340,0.0018263368517175624,10
- horava_lifshitz,340,0.0018263368517175624,15
- multiparticle,340,0.0018263368517175624,13
- nonequilibrium,339,0.0018209652727419225,14
- scalar_tensor_theory,339,0.0018209652727419225,20
- well_motivated,339,0.0018209652727419225,14
- conformal_transformation,339,0.0018209652727419225,24
- massive_vector,339,0.0018209652727419225,14
- perpendicular,339,0.0018209652727419225,13
- portion,339,0.0018209652727419225,7
- classical_limit,339,0.0018209652727419225,15
- workshop,339,0.0018209652727419225,8
- satisfied,339,0.0018209652727419225,9
- higgs_coupling,339,0.0018209652727419225,14
- transversity,338,0.0018155936937662826,12
- next_to_minimal,338,0.0018155936937662826,15
- necessity,338,0.0018155936937662826,9
- combinatorial,337,0.0018102221147906427,13
- nuclear_modification_factor,337,0.0018102221147906427,27
- meaningful,337,0.0018102221147906427,10
- variance,337,0.0018102221147906427,8
- bbn,337,0.0018102221147906427,3
- phenomenological_study,337,0.0018102221147906427,22
- flat_direction,337,0.0018102221147906427,14
- distinction,337,0.0018102221147906427,11
- new_gauge,337,0.0018102221147906427,9
- thermodynamic_quantity,336,0.0018048505358150028,22
- asymptotic_expansion,336,0.0018048505358150028,20
- d6,336,0.0018048505358150028,2
- rhic_energy,336,0.0018048505358150028,11
- suggestion,336,0.0018048505358150028,10
- hadronic_matter,336,0.0018048505358150028,15
- lensing,336,0.0018048505358150028,7
- p_p,336,0.0018048505358150028,3
- seed,336,0.0018048505358150028,4
- supermultiplet,336,0.0018048505358150028,14
- norm,335,0.001799478956839363,4
- d1,335,0.001799478956839363,2
- sn,335,0.001799478956839363,2
- logarithmic_correction,335,0.001799478956839363,22
- inconsistency,335,0.001799478956839363,13
- eigenstate,335,0.001799478956839363,10
- heavy_particle,335,0.001799478956839363,14
- aforementioned,335,0.001799478956839363,14
- local_symmetry,334,0.001794107377863723,14
- cavity,334,0.001794107377863723,6
- ge,334,0.001794107377863723,2
- main_feature,334,0.001794107377863723,12
- new_mechanism,334,0.001794107377863723,13
- companion,334,0.001794107377863723,9
- first_result,334,0.001794107377863723,12
- roll,334,0.001794107377863723,4
- effective_interaction,334,0.001794107377863723,21
- lattice_calculation,334,0.001794107377863723,19
- discrimination,334,0.001794107377863723,14
- standard_model_extension,334,0.001794107377863723,24
- two_component,334,0.001794107377863723,13
- classical_level,333,0.0017887357988880831,15
- schwinger_dyson_equation,333,0.0017887357988880831,24
- equality,333,0.0017887357988880831,8
- e+_e_,333,0.0017887357988880831,5
- flavour_violation,332,0.0017833642199124432,17
- msugra,332,0.0017833642199124432,6
- warm,332,0.0017833642199124432,4
- electroweak_baryogenesis,332,0.0017833642199124432,24
- gauge_coupling,332,0.0017833642199124432,14
- au+au_collision,332,0.0017833642199124432,15
- quasi,332,0.0017833642199124432,5
- derived,331,0.0017779926409368034,7
- gravitational_collapse,331,0.0017779926409368034,22
- naked_singularity,331,0.0017779926409368034,17
- ads2,331,0.0017779926409368034,4
- attraction,330,0.0017726210619611635,10
- dependency,330,0.0017726210619611635,10
- entropic,330,0.0017726210619611635,8
- weak_field,330,0.0017726210619611635,10
- fermionic_field,330,0.0017726210619611635,15
- chiral_model,330,0.0017726210619611635,12
- yang_baxter,329,0.0017672494829855236,11
- boundary_theory,329,0.0017672494829855236,15
- quantum_effect,329,0.0017672494829855236,14
- memory,329,0.0017672494829855236,6
- illustrative,329,0.0017672494829855236,12
- scalar_boson,329,0.0017672494829855236,12
- proton_nucleus,328,0.0017618779040098837,14
- jp,328,0.0017618779040098837,2
- disagreement,328,0.0017618779040098837,12
- particular_emphasis,328,0.0017618779040098837,19
- posse,328,0.0017618779040098837,5
- conjunction,328,0.0017618779040098837,11
- lower_energy,328,0.0017618779040098837,12
- dark_matter_density,328,0.0017618779040098837,19
- mhv,328,0.0017618779040098837,3
- boosted,327,0.0017565063250342438,7
- penrose,327,0.0017565063250342438,7
- physical_property,327,0.0017565063250342438,17
- quench,327,0.0017565063250342438,6
- dielectric,327,0.0017565063250342438,10
- p2,327,0.0017565063250342438,2
- zz,326,0.001751134746058604,2
- quantum_mechanic,326,0.001751134746058604,16
- capacity,326,0.001751134746058604,8
- green_schwarz,326,0.001751134746058604,13
- polarisation,326,0.001751134746058604,12
- functionals,326,0.001751134746058604,11
- new_constraint,326,0.001751134746058604,14
- superpartner,326,0.001751134746058604,12
- compass,326,0.001751134746058604,7
- first_part,326,0.001751134746058604,10
- integrand,325,0.001745763167082964,9
- gluon_distribution,325,0.001745763167082964,18
- deficit,325,0.001745763167082964,7
- subalgebra,325,0.001745763167082964,10
- cardy,325,0.001745763167082964,5
- n_point,325,0.001745763167082964,7
- ultra,325,0.001745763167082964,5
- fireball,324,0.0017403915881073241,8
- first_class,324,0.0017403915881073241,11
- incident,324,0.0017403915881073241,8
- reversal,324,0.0017403915881073241,8
- _brane,324,0.0017403915881073241,6
- theoretical_calculation,324,0.0017403915881073241,23
- composite_higgs_model,324,0.0017403915881073241,21
- visible_sector,323,0.0017350200091316842,14
- twist_3,323,0.0017350200091316842,7
- susy_model,323,0.0017350200091316842,10
- young,323,0.0017350200091316842,5
- challenging,323,0.0017350200091316842,11
- bottom_up,323,0.0017350200091316842,9
- emerges,322,0.0017296484301560443,7
- elegant,322,0.0017296484301560443,7
- ref,322,0.0017296484301560443,3
- soft_supersymmetry,322,0.0017296484301560443,18
- self_coupling,322,0.0017296484301560443,13
- maldacena,322,0.0017296484301560443,9
- lambdab,322,0.0017296484301560443,7
- induces,322,0.0017296484301560443,7
- n.,321,0.0017242768511804044,2
- longer,321,0.0017242768511804044,6
- become,321,0.0017242768511804044,6
- e8,321,0.0017242768511804044,2
- b_meson,321,0.0017242768511804044,7
- new_physic_model,321,0.0017242768511804044,16
- perturbed,321,0.0017242768511804044,9
- time_reversal,321,0.0017242768511804044,13
- eleven_dimensional,321,0.0017242768511804044,18
- dual_theory,321,0.0017242768511804044,11
- natural_way,321,0.0017242768511804044,11
- generalized_uncertainty,320,0.0017189052722047645,23
- electroweak_correction,320,0.0017189052722047645,22
- th,320,0.0017189052722047645,2
- non_linear_sigma,319,0.0017135336932291247,16
- derivative_term,319,0.0017135336932291247,15
- acoustic_oscillation,319,0.0017135336932291247,20
- tri_bimaximal,319,0.0017135336932291247,13
- strong_field,319,0.0017135336932291247,12
- physical_state,319,0.0017135336932291247,14
- general_property,319,0.0017135336932291247,16
- gl,319,0.0017135336932291247,2
- electroweak_gauge,318,0.0017081621142534848,17
- hadroproduction,318,0.0017081621142534848,15
- charginos,318,0.0017081621142534848,9
- mn,318,0.0017081621142534848,2
- m5_branes,318,0.0017081621142534848,9
- one_to_one,318,0.0017081621142534848,10
- t0,318,0.0017081621142534848,2
- nucleation,318,0.0017081621142534848,10
- killing,318,0.0017081621142534848,7
- _invariant,318,0.0017081621142534848,10
- disappearance,318,0.0017081621142534848,13
- 3_dimensional,318,0.0017081621142534848,13
- gauginos,317,0.0017027905352778449,8
- m0,317,0.0017027905352778449,2
- decay_rate,317,0.0017027905352778449,10
- sky,317,0.0017027905352778449,3
- magnetic_effect,317,0.0017027905352778449,15
- nonleptonic,317,0.0017027905352778449,11
- cooling,317,0.0017027905352778449,7
- langevin,317,0.0017027905352778449,8
- other_approach,316,0.001697418956302205,14
- serious,316,0.001697418956302205,7
- perfect_agreement,316,0.001697418956302205,17
- _symmetric,316,0.001697418956302205,10
- c1,316,0.001697418956302205,2
- inertial,316,0.001697418956302205,8
- high_energy_collision,316,0.001697418956302205,21
- nambu_goldstone_boson,316,0.001697418956302205,21
- lab,316,0.001697418956302205,3
- conformal_anomaly,316,0.001697418956302205,17
- higher_curvature,316,0.001697418956302205,16
- strong_evidence,316,0.001697418956302205,15
- e+e_to,315,0.001692047377326565,6
- sufficient_condition,315,0.001692047377326565,20
- anomaly_cancellation,315,0.001692047377326565,20
- chiral_symmetry_restoration,315,0.001692047377326565,27
- _matrix,315,0.001692047377326565,7
- electroweak_interaction,315,0.001692047377326565,23
- nlo_qcd,315,0.001692047377326565,7
- aa,315,0.001692047377326565,2
- three_flavor,314,0.0016866757983509252,12
- spinless,314,0.0016866757983509252,8
- tau_,314,0.0016866757983509252,4
- molecular_state,314,0.0016866757983509252,15
- hybrid_inflation,314,0.0016866757983509252,16
- involved,314,0.0016866757983509252,8
- necessary_condition,314,0.0016866757983509252,19
- heavy_quark_mass,314,0.0016866757983509252,16
- euclidean_space,314,0.0016866757983509252,15
- cosmological_parameter,313,0.0016813042193752853,22
- four_loop,313,0.0016813042193752853,9
- terrestrial,313,0.0016813042193752853,11
- d_term,313,0.0016813042193752853,6
- jona_lasinio_model,313,0.0016813042193752853,18
- neutrino_mass_hierarchy,313,0.0016813042193752853,23
- multipole,313,0.0016813042193752853,9
- such_solution,313,0.0016813042193752853,13
- gauge_fixing,313,0.0016813042193752853,12
- gw,312,0.0016759326403996454,2
- besiii,312,0.0016759326403996454,6
- low_frequency,312,0.0016759326403996454,13
- horndeski,312,0.0016759326403996454,9
- advanced,312,0.0016759326403996454,8
- kinematic_region,311,0.0016705610614240055,16
- qcd_phase_diagram,311,0.0016705610614240055,17
- light_cone_gauge,311,0.0016705610614240055,16
- satisfies,311,0.0016705610614240055,9
- no_go,311,0.0016705610614240055,5
- conjugation,310,0.0016651894824483656,11
- hypersurfaces,310,0.0016651894824483656,13
- interesting_feature,310,0.0016651894824483656,19
- superconducting,310,0.0016651894824483656,15
- broadening,310,0.0016651894824483656,10
- skyrmions,310,0.0016651894824483656,9
- regularity,310,0.0016651894824483656,10
- spin_,310,0.0016651894824483656,5
- decay_channel,310,0.0016651894824483656,13
- solitonic,309,0.0016598179034727257,9
- ia,309,0.0016598179034727257,2
- propto,309,0.0016598179034727257,6
- hagedorn,309,0.0016598179034727257,8
- bh,309,0.0016598179034727257,2
- symmetric_solution,309,0.0016598179034727257,18
- gauging,309,0.0016598179034727257,7
- hermes,309,0.0016598179034727257,6
- called,309,0.0016598179034727257,6
- nothing,309,0.0016598179034727257,7
- gribov,309,0.0016598179034727257,6
- accounting,309,0.0016598179034727257,10
- _channel,308,0.0016544463244970858,8
- new_physic_effect,308,0.0016544463244970858,17
- acceptance,308,0.0016544463244970858,10
- infinitesimal,308,0.0016544463244970858,13
- non_hermitian,308,0.0016544463244970858,13
- s_channel,308,0.0016544463244970858,9
- polylogarithms,308,0.0016544463244970858,14
- reissner_nordstr,308,0.0016544463244970858,16
- massive_neutrino,307,0.001649074745521446,16
- scale_dependence,307,0.001649074745521446,16
- chiral_lagrangian,307,0.001649074745521446,17
- lax,307,0.001649074745521446,3
- semi_leptonic,307,0.001649074745521446,13
- full_set,306,0.001643703166545806,8
- unlikely,306,0.001643703166545806,8
- gpds,306,0.001643703166545806,4
- littlest,306,0.001643703166545806,8
- 3_form,306,0.001643703166545806,6
- open_question,306,0.001643703166545806,13
- generalized_uncertainty_principle,305,0.0016383315875701662,33
- pentaquarks,305,0.0016383315875701662,11
- holographic_description,305,0.0016383315875701662,23
- neutrino_oscillation_experiment,305,0.0016383315875701662,31
- negative_energy,305,0.0016383315875701662,15
- generated,305,0.0016383315875701662,9
- fair,305,0.0016383315875701662,4
- supersymmetric_solution,305,0.0016383315875701662,23
- large_nc,305,0.0016383315875701662,8
- diverse,305,0.0016383315875701662,7
- dilatation,305,0.0016383315875701662,10
- pamela,305,0.0016383315875701662,6
- lorentz_invariant,305,0.0016383315875701662,17
- statistical_mechanic,304,0.0016329600085945263,20
- threefold,304,0.0016329600085945263,9
- spectral_density,304,0.0016329600085945263,16
- theoretical_approach,304,0.0016329600085945263,20
- ell_,304,0.0016329600085945263,4
- magnetic_monopoles,304,0.0016329600085945263,18
- rindler,303,0.0016275884296188864,7
- different_method,303,0.0016275884296188864,16
- present_day,303,0.0016275884296188864,11
- om,303,0.0016275884296188864,2
- conserved_charge,303,0.0016275884296188864,16
- cherenkov,303,0.0016275884296188864,9
- _branes,303,0.0016275884296188864,7
- different_way,303,0.0016275884296188864,13
- regularized,302,0.0016222168506432465,11
- methodology,302,0.0016222168506432465,11
- specific_heat,302,0.0016222168506432465,13
- hairy,302,0.0016222168506432465,5
- local_gauge,302,0.0016222168506432465,11
- virtue,302,0.0016222168506432465,6
- functional_form,302,0.0016222168506432465,15
- unprecedented,301,0.0016168452716676066,13
- dilatonic,301,0.0016168452716676066,9
- false_vacuum,301,0.0016168452716676066,12
- set_up,301,0.0016168452716676066,6
- self_duality,301,0.0016168452716676066,12
- complex_plane,301,0.0016168452716676066,13
- obstruction,301,0.0016168452716676066,11
- second_law,301,0.0016168452716676066,10
- discretization,301,0.0016168452716676066,14
- vevs,301,0.0016168452716676066,4
- magnetized,301,0.0016168452716676066,10
- moyal,301,0.0016168452716676066,5
- electronic,301,0.0016168452716676066,10
- numerical_value,300,0.0016114736926919667,15
- exp,300,0.0016114736926919667,3
- extracted,300,0.0016114736926919667,9
- emitted,300,0.0016114736926919667,7
- schrdinger,300,0.0016114736926919667,10
- s_*,300,0.0016114736926919667,3
- equilibration,300,0.0016114736926919667,13
- neural,300,0.0016114736926919667,6
- forbidden,299,0.0016061021137163268,9
- magnetic_dipole,299,0.0016061021137163268,15
- simplification,299,0.0016061021137163268,14
- chern,299,0.0016061021137163268,5
- higgs_like,299,0.0016061021137163268,10
- super_kamiokande,299,0.0016061021137163268,16
- n+1,299,0.0016061021137163268,3
- swampland,299,0.0016061021137163268,9
- high_order,299,0.0016061021137163268,10
- heavy_ion_collider,299,0.0016061021137163268,18
- curved_spacetime,298,0.001600730534740687,16
- quenching,298,0.001600730534740687,9
- codimension,298,0.001600730534740687,11
- quartic_coupling,298,0.001600730534740687,16
- certain_class,298,0.001600730534740687,13
- gauge_transformation,297,0.001595358955765047,20
- argue,297,0.001595358955765047,5
- small_,297,0.001595358955765047,6
- lhcb_collaboration,297,0.001595358955765047,18
- top_pair,297,0.001595358955765047,8
- embeddings,297,0.001595358955765047,10
- non_commutativity,297,0.001595358955765047,17
- peripheral,297,0.001595358955765047,10
- unambiguous,297,0.001595358955765047,11
- cp_asymmetry,297,0.001595358955765047,12
- numerical_evaluation,297,0.001595358955765047,20
- tetraquarks,296,0.0015899873767894074,11
- backward,296,0.0015899873767894074,8
- quantum_mechanical,296,0.0015899873767894074,18
- contribute,296,0.0015899873767894074,10
- word,296,0.0015899873767894074,4
- m2_branes,296,0.0015899873767894074,9
- explicit_construction,296,0.0015899873767894074,21
- lhc_search,296,0.0015899873767894074,10
- jefferson,296,0.0015899873767894074,9
- nuclear_effect,296,0.0015899873767894074,14
- decay_mode,296,0.0015899873767894074,10
- squared,296,0.0015899873767894074,7
- lagrange,296,0.0015899873767894074,8
- c2,296,0.0015899873767894074,2
- isomorphic,296,0.0015899873767894074,10
- gauged_supergravity,295,0.0015846157978137675,19
- friedmann_robertson_walker,295,0.0015846157978137675,26
- tilde,295,0.0015846157978137675,5
- damping,295,0.0015846157978137675,7
- recursive,295,0.0015846157978137675,9
- lovelock,294,0.0015792442188381276,8
- sivers,294,0.0015792442188381276,6
- exact_expression,294,0.0015792442188381276,16
- new_way,294,0.0015792442188381276,7
- staggered,294,0.0015792442188381276,9
- sine_gordon_model,294,0.0015792442188381276,17
- flow_equation,294,0.0015792442188381276,13
- gluon_gluon,294,0.0015792442188381276,11
- favorable,294,0.0015792442188381276,9
- higher_spin_field,293,0.0015738726398624877,17
- t_channel,293,0.0015738726398624877,9
- rescattering,293,0.0015738726398624877,12
- leptoquarks,293,0.0015738726398624877,11
- neural_network,293,0.0015738726398624877,14
- color_singlet,293,0.0015738726398624877,13
- finite_dimensional,293,0.0015738726398624877,18
- dramatic,293,0.0015738726398624877,8
- comparative,293,0.0015738726398624877,11
- pc,293,0.0015738726398624877,2
- t_dual,292,0.0015685010608868478,6
- fiber,292,0.0015685010608868478,5
- scft,292,0.0015685010608868478,4
- similar_result,292,0.0015685010608868478,14
- explicit_solution,291,0.001563129481911208,17
- charmless,291,0.001563129481911208,9
- gamma_gamma,291,0.001563129481911208,11
- bekenstein_hawking_entropy,291,0.001563129481911208,26
- modest,291,0.001563129481911208,6
- decaying,291,0.001563129481911208,8
- dimension_six,290,0.001557757902935568,13
- mathbbz2,290,0.001557757902935568,8
- zprime,290,0.001557757902935568,6
- allowed_region,290,0.001557757902935568,14
- sequential,290,0.001557757902935568,10
- robustness,289,0.0015523863239599281,10
- noncommutative_gauge,289,0.0015523863239599281,20
- conference,289,0.0015523863239599281,10
- 10_10,289,0.0015523863239599281,5
- cosmological_data,289,0.0015523863239599281,17
- trigger,289,0.0015523863239599281,7
- axionic,289,0.0015523863239599281,7
- high_mass,289,0.0015523863239599281,9
- physical_system,288,0.0015470147449842882,15
- radio,288,0.0015470147449842882,5
- physicist,288,0.0015470147449842882,9
- light_neutrino_mass,288,0.0015470147449842882,19
- dressed,288,0.0015470147449842882,7
- mt,287,0.0015416431660086483,2
- priori,287,0.0015416431660086483,6
- osp,287,0.0015416431660086483,3
- quark_hadron,287,0.0015416431660086483,12
- describe,287,0.0015416431660086483,8
- weighted,287,0.0015416431660086483,8
- key_role,286,0.0015362715870330084,8
- canonical_quantization,286,0.0015362715870330084,22
- dust,286,0.0015362715870330084,4
- layer,286,0.0015362715870330084,5
- age,286,0.0015362715870330084,3
- xu,286,0.0015362715870330084,2
- convergent,286,0.0015362715870330084,10
- non_interacting,286,0.0015362715870330084,15
- lsnd,286,0.0015362715870330084,4
- dalitz,286,0.0015362715870330084,6
- new_state,286,0.0015362715870330084,9
- restricted,285,0.0015309000080573685,10
- free_theory,285,0.0015309000080573685,11
- incompatible,285,0.0015309000080573685,12
- cosmological_implication,285,0.0015309000080573685,24
- multi_particle,285,0.0015309000080573685,14
- subdominant,285,0.0015309000080573685,11
- constituent_quark,285,0.0015309000080573685,17
- underground,285,0.0015309000080573685,11
- later,285,0.0015309000080573685,5
- cauchy,285,0.0015309000080573685,6
- topological_phase,285,0.0015309000080573685,17
- conformal_block,285,0.0015309000080573685,15
- ultra_high_energy,284,0.0015255284290817287,17
- few_year,284,0.0015255284290817287,8
- white,284,0.0015255284290817287,5
- upgrade,284,0.0015255284290817287,7
- unconstrained,284,0.0015255284290817287,13
- adm,283,0.0015201568501060888,3
- possible_implication,283,0.0015201568501060888,20
- shorter,283,0.0015201568501060888,7
- distant,283,0.0015201568501060888,7
- inversion,283,0.0015201568501060888,9
- activity,283,0.0015201568501060888,8
- electromagnetic_interaction,283,0.0015201568501060888,27
- anomalous_coupling,283,0.0015201568501060888,18
- one_loop_amplitude,283,0.0015201568501060888,18
- starobinsky,283,0.0015201568501060888,11
- frontier,283,0.0015201568501060888,8
- neutral_gauge,283,0.0015201568501060888,13
- dilute,282,0.0015147852711304489,6
- b_,282,0.0015147852711304489,2
- triangulation,282,0.0015147852711304489,13
- hidden_charm,282,0.0015147852711304489,12
- community,282,0.0015147852711304489,9
- science,282,0.0015147852711304489,7
- admixture,282,0.0015147852711304489,9
- heterotic_string_theory,282,0.0015147852711304489,23
- none,282,0.0015147852711304489,4
- reissner_nordstrom,282,0.0015147852711304489,18
- light_quark_mass,282,0.0015147852711304489,16
- i.,282,0.0015147852711304489,2
- dictionary,281,0.001509413692154809,10
- experimental_observation,281,0.001509413692154809,24
- opposite_sign,281,0.001509413692154809,13
- effective_hamiltonian,281,0.001509413692154809,21
- logarithmic_accuracy,281,0.001509413692154809,20
- dynamical_quark,281,0.001509413692154809,15
- klein_gordon_equation,281,0.001509413692154809,21
- stau,281,0.001509413692154809,4
- antiparticle,281,0.001509413692154809,12
- table,281,0.001509413692154809,5
- alphas2,280,0.001504042113179169,7
- starting,280,0.001504042113179169,8
- riemann_surface,280,0.001504042113179169,15
- asymptotic_freedom,280,0.001504042113179169,18
- current_bound,280,0.001504042113179169,13
- gravitational_coupling,280,0.001504042113179169,22
- einstein_hilbert_action,280,0.001504042113179169,23
- infinite_volume,280,0.001504042113179169,15
- publication,280,0.001504042113179169,11
- loop_quantum,280,0.001504042113179169,12
- hamilton_jacobi,280,0.001504042113179169,15
- conformal_dimension,280,0.001504042113179169,19
- transforms,280,0.001504042113179169,10
- cartan,279,0.0014986705342035292,6
- 2_dimensional,279,0.0014986705342035292,13
- dark_matter_abundance,279,0.0014986705342035292,21
- lambdac,279,0.0014986705342035292,7
- t2k,279,0.0014986705342035292,3
- black_ring,279,0.0014986705342035292,10
- node,279,0.0014986705342035292,4
- cylindrical,279,0.0014986705342035292,11
- custodial,279,0.0014986705342035292,9
- normalized,279,0.0014986705342035292,10
- censorship,279,0.0014986705342035292,10
- electrical,279,0.0014986705342035292,10
- corner,279,0.0014986705342035292,6
- constant_curvature,278,0.0014932989552278893,18
- one_loop_contribution,278,0.0014932989552278893,21
- muonic,278,0.0014932989552278893,6
- behaves,278,0.0014932989552278893,7
- schroedinger,278,0.0014932989552278893,12
- minimal_length,278,0.0014932989552278893,14
- interpolating,278,0.0014932989552278893,13
- new_insight,278,0.0014932989552278893,11
- high_energy_limit,278,0.0014932989552278893,17
- dc,277,0.0014879273762522494,2
- coalescence,277,0.0014879273762522494,11
- non_negligible,277,0.0014879273762522494,14
- domain_wall,277,0.0014879273762522494,11
- supersymmetry_breaking,277,0.0014879273762522494,22
- chernsimons,277,0.0014879273762522494,11
- thorough,277,0.0014879273762522494,8
- noncommutative_field,277,0.0014879273762522494,20
- curved_space,277,0.0014879273762522494,12
- irrespective,277,0.0014879273762522494,12
- beauty,277,0.0014879273762522494,6
- pion_nucleon,277,0.0014879273762522494,12
- flatness,277,0.0014879273762522494,8
- sqrtsnn,277,0.0014879273762522494,7
- chaotic_inflation,277,0.0014879273762522494,17
- kac_moody,276,0.0014825557972766095,9
- accidental,276,0.0014825557972766095,10
- heavy_quarkonia,276,0.0014825557972766095,15
- deeper,276,0.0014825557972766095,6
- nlo_correction,276,0.0014825557972766095,14
- al.,276,0.0014825557972766095,3
- miniboone,276,0.0014825557972766095,9
- spirit,276,0.0014825557972766095,6
- care,276,0.0014825557972766095,4
- confirmation,276,0.0014825557972766095,12
- metal,276,0.0014825557972766095,5
- gevc,276,0.0014825557972766095,4
- higgs_boson_production,276,0.0014825557972766095,22
- invariant_mass_spectrum,276,0.0014825557972766095,23
- half_bps,276,0.0014825557972766095,8
- null_energy,275,0.0014771842183009696,11
- photon_photon,275,0.0014771842183009696,13
- deeply,275,0.0014771842183009696,6
- quark_antiquark_pair,275,0.0014771842183009696,20
- gauss,275,0.0014771842183009696,5
- cosmic_acceleration,275,0.0014771842183009696,19
- charmonia,275,0.0014771842183009696,9
- inflationary_scenario,275,0.0014771842183009696,21
- non_conformal,275,0.0014771842183009696,13
- entry,275,0.0014771842183009696,5
- s.,274,0.0014718126393253297,2
- high_multiplicity,274,0.0014718126393253297,17
- completeness,274,0.0014718126393253297,12
- 4_point,274,0.0014718126393253297,7
- superconformal_symmetry,274,0.0014718126393253297,23
- new_physic_contribution,274,0.0014718126393253297,23
- cohomological,273,0.0014664410603496898,13
- equivariant,273,0.0014664410603496898,11
- beginning,273,0.0014664410603496898,9
- superluminal,273,0.0014664410603496898,12
- loop_correction,273,0.0014664410603496898,15
- centre_of_mass,273,0.0014664410603496898,14
- f1,273,0.0014664410603496898,2
- electron_proton,272,0.00146106948137405,15
- dyons,272,0.00146106948137405,5
- bin,272,0.00146106948137405,3
- black_branes,272,0.00146106948137405,12
- current_constraint,272,0.00146106948137405,18
- experimental_test,272,0.00146106948137405,17
- bose_einstein_condensate,272,0.00146106948137405,24
- broken_phase,272,0.00146106948137405,12
- dual_cft,272,0.00146106948137405,8
- compact_object,272,0.00146106948137405,14
- realistic_model,272,0.00146106948137405,15
- solar_system,272,0.00146106948137405,12
- faddeev,272,0.00146106948137405,7
- virtuality,271,0.00145569790239841,10
- transient,271,0.00145569790239841,9
- static_solution,271,0.00145569790239841,15
- non_singlet,271,0.00145569790239841,11
- recent_proposal,271,0.00145569790239841,15
- square_root,271,0.00145569790239841,11
- _2,270,0.0014503263234227702,2
- skyrmion,270,0.0014503263234227702,8
- high_energy_collider,270,0.0014503263234227702,20
- large_field,270,0.0014503263234227702,11
- dd,270,0.0014503263234227702,2
- w_,270,0.0014503263234227702,2
- central_value,270,0.0014503263234227702,13
- subleading,269,0.0014449547444471303,10
- leg,269,0.0014449547444471303,3
- varies,269,0.0014449547444471303,6
- new_contribution,269,0.0014449547444471303,16
- scalar_theory,269,0.0014449547444471303,13
- holographic_dual,269,0.0014449547444471303,16
- friedmann_equation,269,0.0014449547444471303,18
- pairing,269,0.0014449547444471303,7
- electron_positron_pair,269,0.0014449547444471303,22
- complex_scalar,269,0.0014449547444471303,14
- fundamental_string,269,0.0014449547444471303,18
- meson_baryon,269,0.0014449547444471303,12
- njl_model,269,0.0014449547444471303,9
- quarkgluon,268,0.0014395831654714904,10
- supersymmetric_su,268,0.0014395831654714904,17
- parity_violating,268,0.0014395831654714904,16
- gravitational_potential,268,0.0014395831654714904,23
- quantum_information,268,0.0014395831654714904,19
- new_set,268,0.0014395831654714904,7
- g.,268,0.0014395831654714904,2
- counterterm,267,0.0014342115864958505,11
- 10_7,267,0.0014342115864958505,4
- ns_ns,267,0.0014342115864958505,5
- neutral_gauge_boson,267,0.0014342115864958505,19
- ell,267,0.0014342115864958505,3
- non_renormalizable,267,0.0014342115864958505,18
- good_fit,267,0.0014342115864958505,8
- see_saw_mechanism,267,0.0014342115864958505,17
- non_planar,267,0.0014342115864958505,10
- color_octet,267,0.0014342115864958505,11
- proceeds,267,0.0014342115864958505,8
- neutrino_nucleus,266,0.0014288400075202106,16
- problematic,266,0.0014288400075202106,11
- pseudorapidity,266,0.0014288400075202106,14
- incomplete,266,0.0014288400075202106,10
- multi_tev,266,0.0014288400075202106,9
- odinger_equation,266,0.0014288400075202106,16
- lattice_gauge,266,0.0014288400075202106,13
- angular_correlation,266,0.0014288400075202106,19
- md,266,0.0014288400075202106,2
- weakly_interacting,266,0.0014288400075202106,18
- two_form,266,0.0014288400075202106,8
- qcd_calculation,266,0.0014288400075202106,15
- hodge,266,0.0014288400075202106,5
- iterative,265,0.0014234684285445707,9
- accretion,265,0.0014234684285445707,9
- sugra,265,0.0014234684285445707,5
- metric_perturbation,265,0.0014234684285445707,19
- safety,265,0.0014234684285445707,6
- der,265,0.0014234684285445707,3
- symmetry_breaking,265,0.0014234684285445707,17
- generality,265,0.0014234684285445707,10
- center_of_mass_energy,265,0.0014234684285445707,21
- chosen,265,0.0014234684285445707,6
- slight,265,0.0014234684285445707,6
- nonsingular,265,0.0014234684285445707,11
- impurity,264,0.0014180968495689308,8
- qcd_like,264,0.0014180968495689308,8
- flavour_symmetry,264,0.0014180968495689308,16
- ball,264,0.0014180968495689308,4
- 2_form,264,0.0014180968495689308,6
- _dimensions,264,0.0014180968495689308,11
- fermi_surface,264,0.0014180968495689308,13
- failure,264,0.0014180968495689308,7
- triangular,264,0.0014180968495689308,10
- cleo,264,0.0014180968495689308,4
- holographic_renormalization,263,0.001412725270593291,27
- microstates,263,0.001412725270593291,11
- obtained_result,263,0.001412725270593291,15
- low_energy_theory,263,0.001412725270593291,17
- ramond_ramond,263,0.001412725270593291,13
- concern,263,0.001412725270593291,7
- non_resonant,263,0.001412725270593291,12
- such_system,263,0.001412725270593291,11
- ultra_high,263,0.001412725270593291,10
- duration,263,0.001412725270593291,8
- certain_condition,263,0.001412725270593291,17
- anomaly_free,263,0.001412725270593291,12
- replica,263,0.001412725270593291,7
- earlier_result,263,0.001412725270593291,14
- tan_beta,263,0.001412725270593291,8
- dirac_born_infeld,263,0.001412725270593291,17
- taylor,262,0.001407353691617651,6
- subsequent_decay,262,0.001407353691617651,16
- sd,262,0.001407353691617651,2
- general_feature,262,0.001407353691617651,15
- gapped,262,0.001407353691617651,6
- high_momentum,262,0.001407353691617651,13
- tangent,262,0.001407353691617651,7
- wino,262,0.001407353691617651,4
- jlab,262,0.001407353691617651,4
- antisymmetric_tensor,261,0.0014019821126420111,20
- thermal_bath,261,0.0014019821126420111,12
- bosonic_field,261,0.0014019821126420111,13
- higher_dimensional_operator,261,0.0014019821126420111,27
- fourth_generation,261,0.0014019821126420111,17
- effective_description,261,0.0014019821126420111,21
- perturbative_correction,260,0.0013966105336663712,23
- non_geometric,260,0.0013966105336663712,13
- consisting,260,0.0013966105336663712,10
- two_point_correlation,260,0.0013966105336663712,21
- high_,260,0.0013966105336663712,5
- light_like,260,0.0013966105336663712,10
- footing,260,0.0013966105336663712,7
- standard_model_fermion,259,0.0013912389546907314,22
- interested,259,0.0013912389546907314,10
- scalar_singlet,259,0.0013912389546907314,14
- soft_wall,259,0.0013912389546907314,9
- linear_perturbation,259,0.0013912389546907314,19
- quantum_level,259,0.0013912389546907314,13
- possible_existence,259,0.0013912389546907314,18
- xxz,259,0.0013912389546907314,3
- null_energy_condition,259,0.0013912389546907314,21
- extragalactic,259,0.0013912389546907314,13
- magnetization,259,0.0013912389546907314,13
- cosmological_scenario,259,0.0013912389546907314,21
- hamiltonian_formulation,259,0.0013912389546907314,23
- diquarks,259,0.0013912389546907314,8
- avenue,259,0.0013912389546907314,6
- prepotential,258,0.0013858673757150915,12
- topological_field,258,0.0013858673757150915,17
- alp,258,0.0013858673757150915,3
- m5_brane,258,0.0013858673757150915,8
- low_,258,0.0013858673757150915,4
- leading_twist,258,0.0013858673757150915,13
- fayet_iliopoulos,258,0.0013858673757150915,16
- fibration,258,0.0013858673757150915,9
- inclusive_cross_section,258,0.0013858673757150915,23
- spin_orbit,258,0.0013858673757150915,10
- r4,258,0.0013858673757150915,2
- large_transverse,258,0.0013858673757150915,16
- axial_anomaly,258,0.0013858673757150915,13
- _boson,258,0.0013858673757150915,6
- closer,258,0.0013858673757150915,6
- charged_current,258,0.0013858673757150915,15
- tensorial,258,0.0013858673757150915,9
- superparticle,257,0.0013804957967394516,13
- different_energy,257,0.0013804957967394516,16
- parton_distribution,257,0.0013804957967394516,19
- present_data,257,0.0013804957967394516,12
- broad_class,257,0.0013804957967394516,11
- cp_even_higgs,257,0.0013804957967394516,13
- abelian_higgs_model,257,0.0013804957967394516,19
- majorana_mass,257,0.0013804957967394516,13
- inclusive_production,256,0.0013751242177638117,20
- grassmannian,256,0.0013751242177638117,12
- heavy_majorana,256,0.0013751242177638117,14
- neutral_pion,256,0.0013751242177638117,12
- nuclear_medium,256,0.0013751242177638117,14
- rn,256,0.0013751242177638117,2
- sm_like_higgs,255,0.0013697526387881718,13
- amplification,255,0.0013697526387881718,13
- tight,255,0.0013697526387881718,5
- web,255,0.0013697526387881718,3
- grows,255,0.0013697526387881718,5
- retarded,255,0.0013697526387881718,8
- general_theory,255,0.0013697526387881718,14
- parameterizations,255,0.0013697526387881718,17
- small_number,255,0.0013697526387881718,12
- strip,255,0.0013697526387881718,5
- light_cone_sum,255,0.0013697526387881718,14
- fixed_target,255,0.0013697526387881718,12
- studied,255,0.0013697526387881718,7
- factorized,254,0.001364381059812532,10
- pb+pb_collision,254,0.001364381059812532,15
- cabibbo_kobayashi_maskawa,254,0.001364381059812532,25
- m5,254,0.001364381059812532,2
- three_,254,0.001364381059812532,6
- hypergeometric_function,254,0.001364381059812532,23
- p+p,254,0.001364381059812532,3
- separable,254,0.001364381059812532,9
- gauge_higgs,254,0.001364381059812532,11
- disorder,254,0.001364381059812532,8
- precise_determination,254,0.001364381059812532,21
- exposure,254,0.001364381059812532,8
- relativistic_particle,254,0.001364381059812532,21
- mathbb,254,0.001364381059812532,6
- general_method,253,0.001359009480836892,14
- wilsonian,253,0.001359009480836892,9
- hard_process,253,0.001359009480836892,12
- such_state,253,0.001359009480836892,10
- horizontal,253,0.001359009480836892,10
- non_relativistic_limit,253,0.001359009480836892,22
- xenon1t,253,0.001359009480836892,7
- meson_meson,253,0.001359009480836892,11
- two_loop_order,253,0.001359009480836892,14
- new_physic_scenario,253,0.001359009480836892,19
- dileptons,253,0.001359009480836892,9
- physical_point,253,0.001359009480836892,14
- chromomagnetic,253,0.001359009480836892,14
- exclusive_process,253,0.001359009480836892,17
- ultrahigh_energy,253,0.001359009480836892,16
- lift,253,0.001359009480836892,4
- three_form,253,0.001359009480836892,10
- light_scalar,252,0.0013536379018612521,12
- agree,252,0.0013536379018612521,5
- dune,252,0.0013536379018612521,4
- pati_salam,252,0.0013536379018612521,10
- zero_mode,252,0.0013536379018612521,9
- superalgebras,252,0.0013536379018612521,13
- locus,252,0.0013536379018612521,5
- gross_neveu,252,0.0013536379018612521,11
- hl_lhc,252,0.0013536379018612521,6
- ordinary_matter,252,0.0013536379018612521,15
- sfermion,252,0.0013536379018612521,8
- large_region,252,0.0013536379018612521,12
- dual_gauge,252,0.0013536379018612521,10
- higgsinos,252,0.0013536379018612521,9
- ads5_x,252,0.0013536379018612521,6
- bosonization,252,0.0013536379018612521,12
- vub,252,0.0013536379018612521,3
- sub_leading,251,0.0013482663228856122,11
- structural,251,0.0013482663228856122,10
- strange_quark_mass,251,0.0013482663228856122,18
- 10_8,251,0.0013482663228856122,4
- periodicity,251,0.0013482663228856122,11
- physical_value,251,0.0013482663228856122,14
- flrw,251,0.0013482663228856122,4
- motivated,251,0.0013482663228856122,9
- single_trace,251,0.0013482663228856122,12
- vast,251,0.0013482663228856122,4
- minimal_extension,251,0.0013482663228856122,17
- gravitinos,251,0.0013482663228856122,10
- equiv,251,0.0013482663228856122,5
- reformulation,251,0.0013482663228856122,13
- noncommutative_gauge_theory,251,0.0013482663228856122,27
- high_pt,250,0.0013428947439099723,7
- confined,250,0.0013428947439099723,8
- soft_term,250,0.0013428947439099723,9
- pb_pb,250,0.0013428947439099723,5
- automatic,250,0.0013428947439099723,9
- symmetric_space,250,0.0013428947439099723,15
- associated_production,250,0.0013428947439099723,21
- bicep2,250,0.0013428947439099723,6
- fractal,250,0.0013428947439099723,7
- massive_scalar,250,0.0013428947439099723,14
- non_degenerate,250,0.0013428947439099723,14
- new_source,249,0.0013375231649343324,10
- positive_energy,249,0.0013375231649343324,15
- even,249,0.0013375231649343324,4
- laplace,249,0.0013375231649343324,7
- pev,249,0.0013375231649343324,3
- tidal,249,0.0013375231649343324,5
- kinetic_equation,249,0.0013375231649343324,16
- nuclear_structure,249,0.0013375231649343324,17
- all_order,249,0.0013375231649343324,9
- azimuthal_asymmetry,249,0.0013375231649343324,19
- gravitational_effect,249,0.0013375231649343324,20
- life,249,0.0013375231649343324,4
- gauge_singlet,249,0.0013375231649343324,13
- two_point_correlation_function,248,0.0013321515859586925,30
- connected,248,0.0013321515859586925,9
- mathematica,248,0.0013321515859586925,11
- 3_brane,248,0.0013321515859586925,7
- contradiction,248,0.0013321515859586925,13
- von,248,0.0013321515859586925,3
- initial_data,248,0.0013321515859586925,12
- tr,248,0.0013321515859586925,2
- reducible,248,0.0013321515859586925,9
- nonsupersymmetric,248,0.0013321515859586925,17
- clustering,248,0.0013321515859586925,10
- mathematics,248,0.0013321515859586925,11
- out_of_equilibrium,248,0.0013321515859586925,18
- toy_model,248,0.0013321515859586925,9
- catalysis,248,0.0013321515859586925,9
- cabibbo,248,0.0013321515859586925,7
- canonical_ensemble,247,0.0013267800069830527,18
- experimental_study,247,0.0013267800069830527,18
- brans_dicke,247,0.0013267800069830527,11
- mix,247,0.0013267800069830527,3
- observed_baryon,247,0.0013267800069830527,15
- azimuthal_angle,247,0.0013267800069830527,15
- same_result,247,0.0013267800069830527,11
- feynman_integral,247,0.0013267800069830527,16
- topological_field_theory,247,0.0013267800069830527,24
- calabi_yau_threefolds,247,0.0013267800069830527,21
- grassmann,247,0.0013267800069830527,9
- release,247,0.0013267800069830527,7
- interferometer,247,0.0013267800069830527,14
- preference,246,0.0013214084280074128,10
- unparticle,246,0.0013214084280074128,10
- d6_branes,246,0.0013214084280074128,9
- broader,246,0.0013214084280074128,7
- reasonable_agreement,246,0.0013214084280074128,20
- wick,246,0.0013214084280074128,4
- one_particle,246,0.0013214084280074128,12
- hpm,246,0.0013214084280074128,3
- non_unitary,246,0.0013214084280074128,11
- simple_extension,246,0.0013214084280074128,16
- collisional,246,0.0013214084280074128,11
- dense_matter,245,0.0013160368490317729,12
- thermal_leptogenesis,245,0.0013160368490317729,20
- laplacian,245,0.0013160368490317729,9
- fine_tuned,245,0.0013160368490317729,10
- future_measurement,245,0.0013160368490317729,18
- putative,245,0.0013160368490317729,8
- klein,245,0.0013160368490317729,5
- larger_value,245,0.0013160368490317729,12
- experimental_signature,245,0.0013160368490317729,22
- one_to_one_correspondence,245,0.0013160368490317729,25
- arbitrary_spin,245,0.0013160368490317729,14
- new_interaction,244,0.001310665270056133,15
- planck_mass,244,0.001310665270056133,11
- delay,244,0.001310665270056133,5
- pseudo_goldstone,244,0.001310665270056133,16
- winding,244,0.001310665270056133,7
- moreover,244,0.001310665270056133,8
- lightest_higgs,244,0.001310665270056133,14
- model_dependent,244,0.001310665270056133,15
- wpm,244,0.001310665270056133,3
- unconventional,244,0.001310665270056133,14
- different_mass,244,0.001310665270056133,14
- accord,244,0.001310665270056133,6
- fundamental_physic,244,0.001310665270056133,18
- non_diagonal,244,0.001310665270056133,12
- negative_parity,243,0.001305293691080493,15
- two_parameter,243,0.001305293691080493,13
- repulsion,243,0.001305293691080493,9
- double_field,243,0.001305293691080493,12
- two_pion,243,0.001305293691080493,8
- relativistic_correction,243,0.001305293691080493,23
- top_mass,243,0.001305293691080493,8
- disconnected,243,0.001305293691080493,12
- electron_positron_annihilation,243,0.001305293691080493,30
- key_ingredient,243,0.001305293691080493,14
- high_frequency,243,0.001305293691080493,14
- syk,243,0.001305293691080493,3
- r.,243,0.001305293691080493,2
- b_field,243,0.001305293691080493,7
- monte_carlo_simulation,243,0.001305293691080493,22
- sqcd,242,0.0012999221121048532,4
- quark_lepton,242,0.0012999221121048532,12
- charmed_meson,242,0.0012999221121048532,13
- d11,242,0.0012999221121048532,3
- nf2,242,0.0012999221121048532,3
- hamiltonian_formalism,242,0.0012999221121048532,21
- incoming,242,0.0012999221121048532,8
- twist_2,242,0.0012999221121048532,7
- intuitive,241,0.0012945505331292133,9
- supersymmetric_quantum_mechanic,241,0.0012945505331292133,31
- interpolation,241,0.0012945505331292133,13
- clifford,241,0.0012945505331292133,8
- bk,241,0.0012945505331292133,2
- wilson_line,241,0.0012945505331292133,11
- coincident,241,0.0012945505331292133,10
- leptonic_cp,241,0.0012945505331292133,11
- reality,241,0.0012945505331292133,7
- glauber,241,0.0012945505331292133,7
- noncommutative_field_theory,241,0.0012945505331292133,27
- cost,241,0.0012945505331292133,4
- direct_cp_violation,241,0.0012945505331292133,19
- play,241,0.0012945505331292133,4
- same_way,241,0.0012945505331292133,8
- experimental_analysis,241,0.0012945505331292133,21
- air,241,0.0012945505331292133,3
- possible_explanation,240,0.0012891789541535734,20
- dressing,240,0.0012891789541535734,8
- kaehler,240,0.0012891789541535734,7
- _dependence,240,0.0012891789541535734,11
- dark_matter_detection,240,0.0012891789541535734,21
- polar,240,0.0012891789541535734,5
- gauss_bonnet_term,240,0.0012891789541535734,17
- type_iib,240,0.0012891789541535734,8
- subclass,240,0.0012891789541535734,8
- contamination,240,0.0012891789541535734,13
- bogoliubov,240,0.0012891789541535734,10
- current_algebra,240,0.0012891789541535734,15
- conserved_quantity,240,0.0012891789541535734,18
- dimensional_theory,239,0.0012838073751779335,18
- independent_way,239,0.0012838073751779335,15
- electro_weak,239,0.0012838073751779335,12
- light_by_light,239,0.0012838073751779335,14
- _symmetry,239,0.0012838073751779335,9
- w+,239,0.0012838073751779335,2
- observed_value,239,0.0012838073751779335,14
- such_effect,239,0.0012838073751779335,11
- perturbative_quantum,239,0.0012838073751779335,20
- continuity,239,0.0012838073751779335,10
- demonstration,239,0.0012838073751779335,13
- theoretical_study,239,0.0012838073751779335,17
- phenomenological_application,239,0.0012838073751779335,28
- observability,239,0.0012838073751779335,13
- da,239,0.0012838073751779335,2
- possible_solution,239,0.0012838073751779335,17
- hundred,239,0.0012838073751779335,7
- light_cone_qcd,239,0.0012838073751779335,14
- chance,238,0.0012784357962022936,6
- public,238,0.0012784357962022936,6
- finite_size_effect,238,0.0012784357962022936,18
- z3,238,0.0012784357962022936,2
- perturbative_series,238,0.0012784357962022936,19
- partial_width,238,0.0012784357962022936,13
- packet,238,0.0012784357962022936,6
- explosion,238,0.0012784357962022936,9
- 3_point,238,0.0012784357962022936,7
- significant_contribution,237,0.0012730642172266537,24
- restrictive,237,0.0012730642172266537,11
- decuplet,237,0.0012730642172266537,8
- perturbative_qcd_approach,237,0.0012730642172266537,25
- perturbative_unitarity,237,0.0012730642172266537,22
- neutrino_mass_generation,237,0.0012730642172266537,24
- rho0,237,0.0012730642172266537,4
- trend,237,0.0012730642172266537,5
- present_status,237,0.0012730642172266537,14
- eleven,237,0.0012730642172266537,6
- diagonalization,237,0.0012730642172266537,15
- various_aspect,237,0.0012730642172266537,14
- free_particle,237,0.0012730642172266537,13
- d.,236,0.0012676926382510138,2
- fine_structure_constant,236,0.0012676926382510138,23
- cdm_model,236,0.0012676926382510138,9
- intermediate_scale,236,0.0012676926382510138,18
- bm,236,0.0012676926382510138,2
- output,236,0.0012676926382510138,6
- black_hole_formation,236,0.0012676926382510138,20
- short_baseline,236,0.0012676926382510138,14
- such_scenario,236,0.0012676926382510138,13
- lattice_gauge_theory,235,0.001262321059275374,20
- current_limit,235,0.001262321059275374,13
- two_loop_correction,235,0.001262321059275374,19
- coannihilation,235,0.001262321059275374,14
- multi_loop,235,0.001262321059275374,10
- short_review,235,0.001262321059275374,12
- boltzmann_equation,235,0.001262321059275374,18
- interact,235,0.001262321059275374,8
- projectile,235,0.001262321059275374,10
- possible_way,235,0.001262321059275374,12
- aharonov_bohm,235,0.001262321059275374,13
- dark_matter_halo,235,0.001262321059275374,16
- optimization,235,0.001262321059275374,12
- statistical_model,234,0.001256949480299734,17
- double_field_theory,234,0.001256949480299734,19
- shadowing,234,0.001256949480299734,9
- warp_factor,234,0.001256949480299734,11
- nonvanishing,234,0.001256949480299734,12
- massive_graviton,234,0.001256949480299734,16
- hbar,234,0.001256949480299734,4
- extrinsic,234,0.001256949480299734,9
- asymptotic_safety,234,0.001256949480299734,17
- pertinent,234,0.001256949480299734,9
- initial_value,234,0.001256949480299734,13
- variational_principle,234,0.001256949480299734,21
- no_go_theorem,234,0.001256949480299734,13
- new_physics,234,0.001256949480299734,11
- weak_boson,234,0.001256949480299734,10
- multidimensional,234,0.001256949480299734,16
- strong_coupling_limit,234,0.001256949480299734,21
- horava_lifshitz_gravity,233,0.0012515779013240942,23
- supersymmetric_field,233,0.0012515779013240942,20
- adequate,233,0.0012515779013240942,8
- pure_gauge,233,0.0012515779013240942,10
- unified_description,233,0.0012515779013240942,19
- non_gaussianities,233,0.0012515779013240942,17
- transmission,233,0.0012515779013240942,12
- squeezed,233,0.0012515779013240942,8
- higher_loop,233,0.0012515779013240942,11
- c.,233,0.0012515779013240942,2
- n6,233,0.0012515779013240942,2
- dark_matter_scenario,232,0.0012462063223484543,20
- few_tev,232,0.0012462063223484543,7
- incoherent,232,0.0012462063223484543,10
- majorana_fermion,232,0.0012462063223484543,16
- li,232,0.0012462063223484543,2
- achievable,232,0.0012462063223484543,10
- fiducial,232,0.0012462063223484543,8
- ginzburg_landau,232,0.0012462063223484543,15
- dynamical_mass,232,0.0012462063223484543,14
- verification,232,0.0012462063223484543,12
- one_parameter_family,232,0.0012462063223484543,20
- scalar_dark,231,0.0012408347433728144,11
- simulated,231,0.0012408347433728144,9
- infinite_set,231,0.0012408347433728144,12
- two_higgs,231,0.0012408347433728144,9
- infra_red,231,0.0012408347433728144,9
- sensitive_probe,231,0.0012408347433728144,15
- programme,231,0.0012408347433728144,9
- prototype,231,0.0012408347433728144,9
- fifth_dimension,231,0.0012408347433728144,15
- higgs_boson_mass,231,0.0012408347433728144,16
- qcd_matter,231,0.0012408347433728144,10
- combined_analysis,231,0.0012408347433728144,17
- massive_field,231,0.0012408347433728144,13
- xenon,230,0.0012354631643971745,5
- artifact,230,0.0012354631643971745,8
- noncompact,230,0.0012354631643971745,10
- twin,230,0.0012354631643971745,4
- scope,230,0.0012354631643971745,5
- _point,230,0.0012354631643971745,6
- large_transverse_momentum,230,0.0012354631643971745,25
- traceless,230,0.0012354631643971745,9
- plateau,229,0.0012300915854215346,7
- practice,229,0.0012300915854215346,8
- composite_operator,229,0.0012300915854215346,18
- heavy_quark_limit,229,0.0012300915854215346,17
- room,229,0.0012300915854215346,4
- one_point,229,0.0012300915854215346,9
- model_independent_way,229,0.0012300915854215346,21
- displaced,229,0.0012300915854215346,9
- landau_level,229,0.0012300915854215346,12
- quark_model,229,0.0012300915854215346,11
- cosmological_background,228,0.0012247200064458947,23
- dangerous,228,0.0012247200064458947,9
- abelian_gauge_theory,228,0.0012247200064458947,20
- cosmic_neutrino,228,0.0012247200064458947,15
- bnl,228,0.0012247200064458947,3
- exotic_state,228,0.0012247200064458947,12
- no_scale,228,0.0012247200064458947,8
- f_term,228,0.0012247200064458947,6
- standard_model_field,227,0.0012193484274702548,20
- hadronic_interaction,227,0.0012193484274702548,20
- flux_compactifications,227,0.0012193484274702548,22
- qcd_axion,227,0.0012193484274702548,9
- inclusive_cross,227,0.0012193484274702548,15
- einstein_maxwell_dilaton,227,0.0012193484274702548,24
- lot,227,0.0012193484274702548,3
- external_momentum,227,0.0012193484274702548,17
- different_scenario,227,0.0012193484274702548,18
- refinement,227,0.0012193484274702548,10
- lesson,227,0.0012193484274702548,6
- multiplicative,227,0.0012193484274702548,14
- collinear_factorization,227,0.0012193484274702548,23
- deconfinement_transition,227,0.0012193484274702548,24
- mechanical_system,227,0.0012193484274702548,17
- spurious,227,0.0012193484274702548,8
- sum_rule,226,0.001213976848494615,8
- msw,226,0.001213976848494615,3
- sort,226,0.001213976848494615,4
- top_quark_decay,226,0.001213976848494615,15
- finite_time,226,0.001213976848494615,11
- thickness,226,0.001213976848494615,9
- cumulants,226,0.001213976848494615,9
- concise,226,0.001213976848494615,7
- quasi_particle,226,0.001213976848494615,14
- competition,226,0.001213976848494615,11
- spinor_field,225,0.001208605269518975,12
- brief_overview,225,0.001208605269518975,14
- top_partner,225,0.001208605269518975,11
- dama,225,0.001208605269518975,4
- coincide,225,0.001208605269518975,8
- clock,225,0.001208605269518975,5
- gauge_mediation,225,0.001208605269518975,15
- chiral_transition,225,0.001208605269518975,17
- several_order,225,0.001208605269518975,13
- guide,225,0.001208605269518975,5
- spectral_curve,225,0.001208605269518975,14
- n_*,225,0.001208605269518975,3
- open_problem,225,0.001208605269518975,12
- kinematical_region,225,0.001208605269518975,18
- unexplored,225,0.001208605269518975,10
- wz,225,0.001208605269518975,2
- more_detail,225,0.001208605269518975,11
- positive_definite,225,0.001208605269518975,17
- lhc_experiment,224,0.0012032336905433351,14
- dark_energy_model,224,0.0012032336905433351,17
- quark_quark,224,0.0012032336905433351,11
- x_u,224,0.0012032336905433351,3
- learning,224,0.0012032336905433351,8
- static_potential,224,0.0012032336905433351,16
- 2_point,224,0.0012032336905433351,7
- direct_measurement,224,0.0012032336905433351,18
- nlsp,224,0.0012032336905433351,4
- higher_spin_theory,224,0.0012032336905433351,18
- classic,224,0.0012032336905433351,7
- high_transverse,224,0.0012032336905433351,15
- magnetic_monopole,224,0.0012032336905433351,17
- standard_deviation,224,0.0012032336905433351,18
- threshold_correction,223,0.0011978621115676952,20
- hidden_symmetry,223,0.0011978621115676952,15
- mw,223,0.0011978621115676952,2
- synchrotron,223,0.0011978621115676952,11
- proca,223,0.0011978621115676952,5
- seiberg_witten_map,223,0.0011978621115676952,18
- generic_feature,223,0.0011978621115676952,15
- post_newtonian,223,0.0011978621115676952,14
- fundamental_theory,223,0.0011978621115676952,18
- gauss_bonnet_gravity,223,0.0011978621115676952,20
- inflationary_cosmology,223,0.0011978621115676952,22
- landau_ginzburg,223,0.0011978621115676952,15
- factorizable,223,0.0011978621115676952,12
- general_formalism,223,0.0011978621115676952,17
- foliation,223,0.0011978621115676952,9
- monochromatic,222,0.0011924905325920554,13
- kaluza_klein_mode,222,0.0011924905325920554,17
- homology,222,0.0011924905325920554,8
- bigger,222,0.0011924905325920554,6
- sphaleron,222,0.0011924905325920554,9
- algebraic_structure,222,0.0011924905325920554,19
- dimension_6,222,0.0011924905325920554,11
- curvaton,222,0.0011924905325920554,8
- pronounced,222,0.0011924905325920554,10
- normalizable,222,0.0011924905325920554,12
- internal_symmetry,222,0.0011924905325920554,17
- minor,222,0.0011924905325920554,5
- indirect_search,222,0.0011924905325920554,15
- yukawa_interaction,222,0.0011924905325920554,18
- tsallis,222,0.0011924905325920554,7
- kaluzaklein,222,0.0011924905325920554,11
- straight,222,0.0011924905325920554,8
- double_trace,222,0.0011924905325920554,12
- superconformal_algebra,222,0.0011924905325920554,22
- first_example,221,0.0011871189536164155,13
- high_accuracy,221,0.0011871189536164155,13
- scalar_dark_matter,221,0.0011871189536164155,18
- simple_way,221,0.0011871189536164155,10
- giant_graviton,221,0.0011871189536164155,14
- total_number,221,0.0011871189536164155,12
- broken_symmetry,221,0.0011871189536164155,15
- type_i_seesaw,221,0.0011871189536164155,13
- shadow,221,0.0011871189536164155,6
- nambu_goto,221,0.0011871189536164155,10
- wrong,220,0.0011817473746407756,5
- particular_interest,220,0.0011817473746407756,19
- physical_process,220,0.0011817473746407756,16
- susy_particle,220,0.0011817473746407756,13
- twisted_mass,220,0.0011817473746407756,12
- _dependent,220,0.0011817473746407756,10
- beta_function,220,0.0011817473746407756,13
- 3_3_1,220,0.0011817473746407756,5
- cover,220,0.0011817473746407756,5
- intercept,220,0.0011817473746407756,9
- systematic_way,220,0.0011817473746407756,14
- thermodynamic_limit,220,0.0011817473746407756,19
- high_energy_scale,220,0.0011817473746407756,17
- lagrangian_density,220,0.0011817473746407756,18
- dynamical_symmetry,220,0.0011817473746407756,18
- additional_contribution,219,0.0011763757956651357,23
- sub_gev,219,0.0011763757956651357,7
- theoretical_description,219,0.0011763757956651357,23
- dp,219,0.0011763757956651357,2
- nonrelativistic_qcd,219,0.0011763757956651357,19
- elusive,219,0.0011763757956651357,7
- self_contained,219,0.0011763757956651357,14
- nonet,219,0.0011763757956651357,5
- projector,219,0.0011763757956651357,9
- weak_gravity,219,0.0011763757956651357,12
- clue,219,0.0011763757956651357,4
- light_higgs_boson,219,0.0011763757956651357,17
- reliability,219,0.0011763757956651357,11
- depends,219,0.0011763757956651357,7
- anti_quark,219,0.0011763757956651357,10
- gamma_*,218,0.0011710042166894958,7
- negative_value,218,0.0011710042166894958,14
- phenomenological_constraint,218,0.0011710042166894958,27
- anti_b,218,0.0011710042166894958,6
- compelling,218,0.0011710042166894958,10
- topological_insulator,218,0.0011710042166894958,21
- multi_field,218,0.0011710042166894958,11
- radial_excitation,218,0.0011710042166894958,17
- holographic_duality,218,0.0011710042166894958,19
- tachyon_condensation,218,0.0011710042166894958,20
- scalar_hair,218,0.0011710042166894958,11
- mixed_state,218,0.0011710042166894958,11
- other_word,218,0.0011710042166894958,10
- up_to_date,218,0.0011710042166894958,10
- barnu,218,0.0011710042166894958,5
- scet,218,0.0011710042166894958,4
- marginal_deformation,218,0.0011710042166894958,20
- non_,218,0.0011710042166894958,4
- scalar_field_model,218,0.0011710042166894958,18
- analytic_structure,218,0.0011710042166894958,18
- top_quark_production,218,0.0011710042166894958,20
- modulus_stabilization,218,0.0011710042166894958,21
- additional_term,218,0.0011710042166894958,15
- school,217,0.001165632637713856,6
- famous,217,0.001165632637713856,6
- mp,217,0.001165632637713856,2
- many_case,217,0.001165632637713856,9
- consistent_truncation,217,0.001165632637713856,21
- aid,217,0.001165632637713856,3
- d7_branes,217,0.001165632637713856,9
- same_form,217,0.001165632637713856,9
- supersymmetric_qcd,217,0.001165632637713856,18
- single_field_inflation,217,0.001165632637713856,22
- drag,217,0.001165632637713856,4
- quantisation,217,0.001165632637713856,12
- supersymmetric_field_theory,217,0.001165632637713856,27
- ambient,217,0.001165632637713856,7
- central_role,217,0.001165632637713856,12
- vorticity,217,0.001165632637713856,9
- finite_value,217,0.001165632637713856,12
- self_gravitating,217,0.001165632637713856,16
- depend,216,0.001160261058738216,6
- dominates,216,0.001160261058738216,9
- homotopy,216,0.001160261058738216,8
- observed_baryon_asymmetry,216,0.001160261058738216,25
- experimental_evidence,216,0.001160261058738216,21
- richer,216,0.001160261058738216,6
- canonical_transformation,216,0.001160261058738216,24
- soft_breaking,216,0.001160261058738216,13
- strong_phase,216,0.001160261058738216,12
- kamland,216,0.001160261058738216,7
- holographic_duals,216,0.001160261058738216,17
- undeformed,216,0.001160261058738216,10
- preheating,216,0.001160261058738216,10
- hadronic_matrix_element,216,0.001160261058738216,23
- hadronic_matrix,216,0.001160261058738216,15
- deconfined_phase,215,0.0011548894797625761,16
- admissible,215,0.0011548894797625761,10
- physical_parameter,215,0.0011548894797625761,18
- outstanding,215,0.0011548894797625761,11
- electron_ion,215,0.0011548894797625761,12
- mutual_information,215,0.0011548894797625761,18
- high_transverse_momentum,215,0.0011548894797625761,24
- sudden,215,0.0011548894797625761,6
- recurrence,215,0.0011548894797625761,10
- ultralight,215,0.0011548894797625761,10
- scalar_mode,215,0.0011548894797625761,11
- 10_9,215,0.0011548894797625761,4
- axial_vector_meson,215,0.0011548894797625761,18
- wess_zumino_witten,214,0.0011495179007869362,18
- fall,214,0.0011495179007869362,4
- soft_photon,214,0.0011495179007869362,11
- ordered,214,0.0011495179007869362,7
- two_loop_level,214,0.0011495179007869362,14
- d_1,214,0.0011495179007869362,3
- flip,214,0.0011495179007869362,4
- hadronic_phase,214,0.0011495179007869362,14
- displacement,214,0.0011495179007869362,12
- breit_wigner,214,0.0011495179007869362,12
- jump,214,0.0011495179007869362,4
- gup,214,0.0011495179007869362,3
- large_logarithm,214,0.0011495179007869362,15
- regularisation,214,0.0011495179007869362,14
- tree_level_amplitude,214,0.0011495179007869362,20
- classical_theory,214,0.0011495179007869362,16
- few_gev,214,0.0011495179007869362,7
- stringent_bound,214,0.0011495179007869362,15
- isotropy,214,0.0011495179007869362,8
- eleven_dimensional_supergravity,214,0.0011495179007869362,31
- plane_wave,213,0.0011441463218112963,10
- generating,213,0.0011441463218112963,10
- loop_order,213,0.0011441463218112963,10
- annual,213,0.0011441463218112963,6
- proximity,213,0.0011441463218112963,9
- scalar_coupling,213,0.0011441463218112963,15
- obstacle,213,0.0011441463218112963,8
- nekrasov,213,0.0011441463218112963,8
- spheroidal,213,0.0011441463218112963,10
- nonperturbative_effect,213,0.0011441463218112963,22
- arbitrary_value,213,0.0011441463218112963,15
- down_type,213,0.0011441463218112963,9
- multiplier,213,0.0011441463218112963,10
- desirable,213,0.0011441463218112963,9
- virtual_compton_scattering,213,0.0011441463218112963,26
- precession,213,0.0011441463218112963,10
- helium,213,0.0011441463218112963,6
- superconformal_theory,213,0.0011441463218112963,21
- berry,213,0.0011441463218112963,5
- near_extremal,212,0.0011387747428356564,13
- simple_form,212,0.0011387747428356564,11
- explicit_result,212,0.0011387747428356564,15
- goldstino,212,0.0011387747428356564,9
- light_hadron,212,0.0011387747428356564,12
- intricate,212,0.0011387747428356564,9
- einstein_gauss_bonnet,212,0.0011387747428356564,21
- x_su,212,0.0011387747428356564,4
- complement,212,0.0011387747428356564,10
- matter_antimatter,212,0.0011387747428356564,17
- bao,212,0.0011387747428356564,3
- left_,212,0.0011387747428356564,5
- physical_degree,212,0.0011387747428356564,15
- minimal_surface,211,0.0011334031638600168,15
- dimensional_model,211,0.0011334031638600168,17
- thing,211,0.0011334031638600168,5
- various_model,211,0.0011334031638600168,13
- golden,211,0.0011334031638600168,6
- s_,211,0.0011334031638600168,2
- small_perturbation,211,0.0011334031638600168,18
- diverges,211,0.0011334031638600168,8
- metric_tensor,211,0.0011334031638600168,13
- neutral_particle,211,0.0011334031638600168,16
- small_momentum,211,0.0011334031638600168,14
- signal_strength,211,0.0011334031638600168,15
- one_loop_calculation,211,0.0011334031638600168,20
- invisible_decay,211,0.0011334031638600168,15
- wald,211,0.0011334031638600168,4
- ads5_x_s5,211,0.0011334031638600168,9
- good_approximation,211,0.0011334031638600168,18
- b_quark,211,0.0011334031638600168,7
- t4,211,0.0011334031638600168,2
- heuristic,210,0.0011280315848843769,9
- holographic_principle,210,0.0011280315848843769,21
- polyakov_loop,210,0.0011280315848843769,13
- double_parton,210,0.0011280315848843769,13
- subprocess,210,0.0011280315848843769,10
- higgs_search,210,0.0011280315848843769,12
- derivative_correction,210,0.0011280315848843769,21
- thermal_fluctuation,210,0.0011280315848843769,19
- cosmic_censorship,210,0.0011280315848843769,17
- analytic_formula,210,0.0011280315848843769,16
- cosmological_horizon,210,0.0011280315848843769,20
- massive_gauge,210,0.0011280315848843769,13
- majority,209,0.001122660005908737,8
- first_case,209,0.001122660005908737,10
- freeze_in,209,0.001122660005908737,9
- general_structure,209,0.001122660005908737,17
- ultimate,209,0.001122660005908737,8
- phenix,209,0.001122660005908737,6
- relevant_parameter,209,0.001122660005908737,18
- zone,209,0.001122660005908737,4
- quantum_phase,209,0.001122660005908737,13
- pq,209,0.001122660005908737,2
- massive_fermion,209,0.001122660005908737,15
- current_quark,209,0.001122660005908737,13
- quantum_theory,209,0.001122660005908737,14
- perturbativity,209,0.001122660005908737,14
- small_neutrino,209,0.001122660005908737,14
- recent_analysis,209,0.001122660005908737,15
- dependent_parton,208,0.001117288426933097,16
- qcd_evolution,208,0.001117288426933097,13
- single_top,208,0.001117288426933097,10
- relativistic_quark,208,0.001117288426933097,18
- light_vector,208,0.001117288426933097,12
- large_n_limit,208,0.001117288426933097,13
- student,208,0.001117288426933097,7
- pole_mass,208,0.001117288426933097,9
- trick,208,0.001117288426933097,5
- qualitative_agreement,208,0.001117288426933097,21
- kalb_ramond,208,0.001117288426933097,11
- heavy_fermion,208,0.001117288426933097,13
- t.,208,0.001117288426933097,2
- higgses,208,0.001117288426933097,7
- apparent_horizon,208,0.001117288426933097,16
- bmn,208,0.001117288426933097,3
- benefit,208,0.001117288426933097,7
- higgs_portal,208,0.001117288426933097,12
- holographic_superconductors,208,0.001117288426933097,27
- nuclear_target,208,0.001117288426933097,14
- satisfy,208,0.001117288426933097,7
- minimal_flavor,208,0.001117288426933097,14
- k1,207,0.0011119168479574572,2
- chpt,207,0.0011119168479574572,4
- dual_gauge_theory,207,0.0011119168479574572,17
- scalar_resonance,207,0.0011119168479574572,16
- non_observation,207,0.0011119168479574572,15
- allow,207,0.0011119168479574572,5
- ams_02,207,0.0011119168479574572,6
- domination,207,0.0011119168479574572,10
- q_deformed,207,0.0011119168479574572,10
- d+,207,0.0011119168479574572,2
- reproduces,207,0.0011119168479574572,10
- leptonic_mixing,207,0.0011119168479574572,15
- chiral_field,207,0.0011119168479574572,12
- light_flavor,207,0.0011119168479574572,12
- field_theoretic,207,0.0011119168479574572,15
- yangian,207,0.0011119168479574572,7
- route,207,0.0011119168479574572,5
- g1,207,0.0011119168479574572,2
- spherical_symmetry,207,0.0011119168479574572,18
- soft_mass,207,0.0011119168479574572,9
- i0,206,0.0011065452689818173,2
- superconformal_index,206,0.0011065452689818173,20
- w+w_,206,0.0011065452689818173,4
- ligo,206,0.0011065452689818173,4
- gross_neveu_model,206,0.0011065452689818173,17
- non_standard_interaction,206,0.0011065452689818173,24
- circuit,206,0.0011065452689818173,7
- abelian_gauge_field,206,0.0011065452689818173,19
- next_to_leading_order_correction,206,0.0011065452689818173,32
- count,206,0.0011065452689818173,5
- calabiyau,206,0.0011065452689818173,9
- chamber,206,0.0011065452689818173,7
- easier,206,0.0011065452689818173,6
- atmosphere,206,0.0011065452689818173,10
- exciting,206,0.0011065452689818173,8
- wheeler_dewitt,206,0.0011065452689818173,14
- new_phase,206,0.0011065452689818173,9
- pmns,206,0.0011065452689818173,4
- hadronic_contribution,205,0.0011011736900061774,21
- momentum_space,205,0.0011011736900061774,14
- baryonic_matter,205,0.0011011736900061774,15
- mind,205,0.0011011736900061774,4
- _quark,205,0.0011011736900061774,6
- display,205,0.0011011736900061774,7
- universality_class,205,0.0011011736900061774,18
- other_method,205,0.0011011736900061774,12
- s0,205,0.0011011736900061774,2
- dataset,205,0.0011011736900061774,7
- astronomical,205,0.0011011736900061774,12
- abstract,205,0.0011011736900061774,8
- bino,205,0.0011011736900061774,4
- nonzero_temperature,204,0.0010958021110305375,19
- nonlocality,204,0.0010958021110305375,11
- modular_form,204,0.0010958021110305375,12
- outlook,204,0.0010958021110305375,7
- cal_n,204,0.0010958021110305375,5
- infinite_tower,204,0.0010958021110305375,14
- physical_meaning,204,0.0010958021110305375,16
- ricci_flat,204,0.0010958021110305375,10
- asymptotic_behaviour,204,0.0010958021110305375,20
- broad_range,204,0.0010958021110305375,11
- new_perspective,204,0.0010958021110305375,15
- cp_conserving,204,0.0010958021110305375,13
- various_dimension,204,0.0010958021110305375,17
- e+e__annihilation,204,0.0010958021110305375,17
- sparticles,204,0.0010958021110305375,10
- potential_energy,203,0.0010904305320548976,16
- particular_choice,203,0.0010904305320548976,17
- better_understanding,203,0.0010904305320548976,20
- proton_nucleus_collision,203,0.0010904305320548976,24
- indistinguishable,203,0.0010904305320548976,17
- active_sterile,203,0.0010904305320548976,14
- basic_property,203,0.0010904305320548976,14
- potential_term,203,0.0010904305320548976,14
- descendant,203,0.0010904305320548976,10
- topological_quantum,203,0.0010904305320548976,19
- planned,203,0.0010904305320548976,7
- mass_term,203,0.0010904305320548976,9
- carrier,203,0.0010904305320548976,7
- nnll,203,0.0010904305320548976,4
- library,203,0.0010904305320548976,7
- high_intensity,203,0.0010904305320548976,14
- t_parity,203,0.0010904305320548976,8
- uvir,203,0.0010904305320548976,4
- classical_equation,202,0.0010850589530792577,18
- exist,202,0.0010850589530792577,5
- verlinde,202,0.0010850589530792577,8
- momentum_dependent,202,0.0010850589530792577,18
- _form,202,0.0010850589530792577,5
- renormalon,202,0.0010850589530792577,10
- initial_state_radiation,202,0.0010850589530792577,23
- galactic_halo,202,0.0010850589530792577,13
- dimuon,202,0.0010850589530792577,6
- astrophysical_source,202,0.0010850589530792577,20
- elliptic_genus,202,0.0010850589530792577,14
- lowest_lying,202,0.0010850589530792577,12
- heavy_light_meson,201,0.0010796873741036178,17
- top_production,201,0.0010796873741036178,14
- topological_invariant,201,0.0010796873741036178,21
- _model,201,0.0010796873741036178,6
- vcb,201,0.0010796873741036178,3
- zero_temperature,201,0.0010796873741036178,16
- foam,201,0.0010796873741036178,4
- successive,201,0.0010796873741036178,10
- experimental_information,201,0.0010796873741036178,24
- chern_simons_matter,201,0.0010796873741036178,19
- vectorlike,201,0.0010796873741036178,10
- therefore,201,0.0010796873741036178,9
- khler,201,0.0010796873741036178,5
- pure_yang_mills,201,0.0010796873741036178,15
- neutral_meson,201,0.0010796873741036178,13
- unitarized,201,0.0010796873741036178,10
- multi,201,0.0010796873741036178,5
- longitudinal_polarization,201,0.0010796873741036178,25
- different_choice,201,0.0010796873741036178,16
- such_particle,200,0.001074315795127978,13
- large_energy,200,0.001074315795127978,12
- cpt_violation,200,0.001074315795127978,13
- black_hole_mass,200,0.001074315795127978,15
- inverted_hierarchy,200,0.001074315795127978,18
- suffers,200,0.001074315795127978,7
- colliding,200,0.001074315795127978,9
- adler,200,0.001074315795127978,5
- kinematic_distribution,200,0.001074315795127978,22
- living,200,0.001074315795127978,6
- central_collision,200,0.001074315795127978,17
- text,200,0.001074315795127978,4
- introduces,200,0.001074315795127978,10
- recipe,200,0.001074315795127978,6
- light_cone_sum_rule,200,0.001074315795127978,19
- specific_case,200,0.001074315795127978,13
- drop,200,0.001074315795127978,4
- u_duality,200,0.001074315795127978,9
- absorptive,200,0.001074315795127978,10
- nice,200,0.001074315795127978,4
- d_,200,0.001074315795127978,2
- astrophysical_observation,200,0.001074315795127978,25
- axisymmetric,199,0.001068944216152338,12
- b2,199,0.001068944216152338,2
- sidis,199,0.001068944216152338,5
- averaged,199,0.001068944216152338,8
- heavy_quark_symmetry,199,0.001068944216152338,20
- direct_cp_asymmetry,199,0.001068944216152338,19
- symbol,199,0.001068944216152338,6
- decoupled,199,0.001068944216152338,9
- zn,199,0.001068944216152338,2
- standard_model_background,199,0.001068944216152338,25
- kerr_newman,199,0.001068944216152338,11
- present_prediction,199,0.001068944216152338,18
- exit,199,0.001068944216152338,4
- strong_dynamic,199,0.001068944216152338,14
- planckian,199,0.001068944216152338,9
- n2_supergravity,199,0.001068944216152338,15
- qcd_vacuum,199,0.001068944216152338,10
- clic,199,0.001068944216152338,4
- magnon,199,0.001068944216152338,6
- percolation,198,0.0010635726371766982,11
- 2_,198,0.0010635726371766982,2
- general_gauge,198,0.0010635726371766982,13
- numerical_evidence,198,0.0010635726371766982,18
- other_experiment,198,0.0010635726371766982,16
- b+,198,0.0010635726371766982,2
- scalar_doublet,198,0.0010635726371766982,14
- direct_photon,198,0.0010635726371766982,13
- current_lhc,198,0.0010635726371766982,11
- three_quark,198,0.0010635726371766982,11
- normal_hierarchy,198,0.0010635726371766982,16
- numerical_computation,198,0.0010635726371766982,21
- coleman_weinberg,197,0.0010582010582010583,16
- stueckelberg,197,0.0010582010582010583,12
- optic,197,0.0010582010582010583,5
- theta+,197,0.0010582010582010583,6
- exclusive_production,197,0.0010582010582010583,20
- cosmological_scale,197,0.0010582010582010583,18
- objective,197,0.0010582010582010583,9
- thereof,197,0.0010582010582010583,7
- measured_value,197,0.0010582010582010583,14
- symplectic_structure,197,0.0010582010582010583,20
- vector_meson,197,0.0010582010582010583,12
- hoc,197,0.0010582010582010583,3
- arbitrary_function,197,0.0010582010582010583,18
- ga,197,0.0010582010582010583,2
- flexible,197,0.0010582010582010583,8
- compact_dimension,197,0.0010582010582010583,17
- special_class,197,0.0010582010582010583,13
- au,197,0.0010582010582010583,2
- effective_number,197,0.0010582010582010583,16
- utility,196,0.0010528294792254184,7
- gravitational_anomaly,196,0.0010528294792254184,21
- loop_quantum_gravity,196,0.0010528294792254184,20
- cdot,196,0.0010528294792254184,4
- central_extension,196,0.0010528294792254184,17
- deceleration,196,0.0010528294792254184,12
- deal,196,0.0010528294792254184,4
- loop_induced,196,0.0010528294792254184,12
- quantum_system,196,0.0010528294792254184,14
- parametric_resonance,196,0.0010528294792254184,20
- trigonometric,196,0.0010528294792254184,13
- sensible,196,0.0010528294792254184,8
- wide_variety,196,0.0010528294792254184,12
- magnetic_catalysis,196,0.0010528294792254184,18
- spin_parity,196,0.0010528294792254184,11
- covariant_derivative,195,0.0010474579002497785,20
- core_collapse,195,0.0010474579002497785,13
- experimental_uncertainty,195,0.0010474579002497785,24
- favored,195,0.0010474579002497785,7
- uncharged,195,0.0010474579002497785,9
- nll,195,0.0010474579002497785,3
- chiral_superfields,195,0.0010474579002497785,18
- teleparallel,195,0.0010474579002497785,12
- 2_loop,194,0.0010420863212741386,6
- different_phase,194,0.0010420863212741386,15
- imbalance,194,0.0010420863212741386,9
- tmds,194,0.0010420863212741386,4
- constructive,194,0.0010420863212741386,12
- branching_ratio,194,0.0010420863212741386,15
- non_critical,194,0.0010420863212741386,12
- lc,194,0.0010420863212741386,2
- rotational_symmetry,194,0.0010420863212741386,19
- integrands,194,0.0010420863212741386,10
- gibbs,194,0.0010420863212741386,5
- s1z2,194,0.0010420863212741386,4
- mit,194,0.0010420863212741386,3
- m2_brane,194,0.0010420863212741386,8
- analytic_form,194,0.0010420863212741386,13
- vector_like_quark,194,0.0010420863212741386,17
- waals,194,0.0010420863212741386,5
- tilt,194,0.0010420863212741386,4
- azimuthal_correlation,194,0.0010420863212741386,21
- theta12,194,0.0010420863212741386,7
- flat_background,193,0.0010367147422984987,15
- unified_model,193,0.0010367147422984987,13
- move,193,0.0010367147422984987,4
- quaternionic,193,0.0010367147422984987,12
- novel_feature,193,0.0010367147422984987,13
- lux,193,0.0010367147422984987,3
- cell,193,0.0010367147422984987,4
- physical_implication,193,0.0010367147422984987,20
- r3,193,0.0010367147422984987,2
- isomorphism,193,0.0010367147422984987,11
- present_study,193,0.0010367147422984987,13
- page,193,0.0010367147422984987,4
- e_folds,193,0.0010367147422984987,7
- self_energies,193,0.0010367147422984987,13
- characteristic_feature,193,0.0010367147422984987,22
- eternal_inflation,192,0.0010313431633228588,17
- future_prospect,192,0.0010313431633228588,15
- detailed_discussion,192,0.0010313431633228588,19
- etc,192,0.0010313431633228588,3
- electroweak_precision_data,192,0.0010313431633228588,26
- contributes,192,0.0010313431633228588,11
- 2_d,192,0.0010313431633228588,3
- real_photon,192,0.0010313431633228588,11
- quark_meson,192,0.0010313431633228588,11
- boson_production,192,0.0010313431633228588,16
- rk,192,0.0010313431633228588,2
- chiral_multiplets,192,0.0010313431633228588,17
- coherent_state,192,0.0010313431633228588,14
- quantum_state,192,0.0010313431633228588,13
- untwisted,192,0.0010313431633228588,9
- water,192,0.0010313431633228588,5
- mass_squared,191,0.001025971584347219,12
- mathbbr,191,0.001025971584347219,7
- scientific,191,0.001025971584347219,10
- d7,191,0.001025971584347219,2
- bouncing,191,0.001025971584347219,8
- historical,191,0.001025971584347219,10
- lightest_higgs_boson,191,0.001025971584347219,20
- software,191,0.001025971584347219,8
- non_leptonic,191,0.001025971584347219,12
- pb_pb_collision,191,0.001025971584347219,15
- unintegrated_gluon,191,0.001025971584347219,18
- fibrations,191,0.001025971584347219,10
- trans_planckian,191,0.001025971584347219,15
- legendre,191,0.001025971584347219,8
- debye,191,0.001025971584347219,5
- allowed_parameter,190,0.001020600005371579,17
- low_energy_neutrino,190,0.001020600005371579,19
- null_infinity,190,0.001020600005371579,13
- lump,190,0.001020600005371579,4
- noncommutative_spacetime,190,0.001020600005371579,24
- m3,190,0.001020600005371579,2
- 3_3_1_model,190,0.001020600005371579,11
- theoretical_constraint,190,0.001020600005371579,22
- _factorization,190,0.001020600005371579,14
- dark_radiation,190,0.001020600005371579,14
- assumed,190,0.001020600005371579,7
- non_canonical,190,0.001020600005371579,13
- local_lorentz,190,0.001020600005371579,13
- possible_extension,190,0.001020600005371579,18
- relativistic_quark_model,190,0.001020600005371579,24
- rh,189,0.0010152284263959391,2
- most_case,189,0.0010152284263959391,9
- lightest_neutrino,189,0.0010152284263959391,17
- k+k_,189,0.0010152284263959391,4
- gravitational_radiation,189,0.0010152284263959391,23
- frac12,189,0.0010152284263959391,6
- gravitational_action,189,0.0010152284263959391,20
- non_strange,189,0.0010152284263959391,11
- light_cone_distribution,189,0.0010152284263959391,23
- dependent_parton_distribution,189,0.0010152284263959391,29
- octant,189,0.0010152284263959391,6
- sophisticated,189,0.0010152284263959391,13
- scale_dependent,189,0.0010152284263959391,15
- leptonic_cp_violation,189,0.0010152284263959391,21
- classical_action,189,0.0010152284263959391,16
- _decay,189,0.0010152284263959391,6
- diboson,189,0.0010152284263959391,7
- gamma_rays,189,0.0010152284263959391,10
- droplet,188,0.0010098568474202992,7
- chiral_extrapolation,188,0.0010098568474202992,20
- peculiarity,188,0.0010098568474202992,11
- theory_side,188,0.0010098568474202992,11
- 10_11,188,0.0010098568474202992,5
- taub_nut,188,0.0010098568474202992,8
- deuterium,188,0.0010098568474202992,9
- fl,188,0.0010098568474202992,2
- book,188,0.0010098568474202992,4
- additional_constraint,188,0.0010098568474202992,21
- immediate,188,0.0010098568474202992,9
- gain,188,0.0010098568474202992,4
- low_density,188,0.0010098568474202992,11
- anti_de_sitter_spacetime,188,0.0010098568474202992,24
- former_case,188,0.0010098568474202992,11
- intermediate_energy,188,0.0010098568474202992,19
- systematic_analysis,188,0.0010098568474202992,19
- vice,188,0.0010098568474202992,4
- unquenched,188,0.0010098568474202992,10
- nrm,188,0.0010098568474202992,3
- scherk_schwarz,188,0.0010098568474202992,14
- tractable,188,0.0010098568474202992,9
- superfluids,188,0.0010098568474202992,11
- heavy_nucleus,188,0.0010098568474202992,13
- spectroscopic,188,0.0010098568474202992,13
- heavy_higgs_boson,188,0.0010098568474202992,17
- lyapunov,187,0.0010044852684446594,8
- otimes,187,0.0010044852684446594,6
- counter,187,0.0010044852684446594,7
- current_quark_mass,187,0.0010044852684446594,18
- sigma_models,187,0.0010044852684446594,12
- viable_parameter,187,0.0010044852684446594,16
- chapter,187,0.0010044852684446594,7
- oblique,187,0.0010044852684446594,7
- small_neutrino_mass,187,0.0010044852684446594,19
- consist,187,0.0010044852684446594,7
- lens,187,0.0010044852684446594,4
- projective_space,187,0.0010044852684446594,16
- statistical_significance,187,0.0010044852684446594,24
- d0_branes,187,0.0010044852684446594,9
- wilson_loop,187,0.0010044852684446594,11
- conical_singularity,187,0.0010044852684446594,19
- xenon100,187,0.0010044852684446594,8
- versa,187,0.0010044852684446594,5
- 2_3,187,0.0010044852684446594,3
- rectangular,187,0.0010044852684446594,11
- new_family,187,0.0010044852684446594,10
- thermal_state,187,0.0010044852684446594,13
- analytic_property,187,0.0010044852684446594,17
- comprehensive_analysis,187,0.0010044852684446594,22
- non_renormalization,187,0.0010044852684446594,19
- electroweak_precision_test,187,0.0010044852684446594,26
- remainder,187,0.0010044852684446594,9
- analytical_formula,187,0.0010044852684446594,18
- hadronic_vacuum,187,0.0010044852684446594,15
- weakly_coupled,187,0.0010044852684446594,14
- strong_coupling_regime,187,0.0010044852684446594,22
|