123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585 |
- """
- @author: luojunhui
- """
- import json
- planConfigDict = {
- # "20240721063854162433630": "动漫二次元",
- # "20240721064001535851572": "游戏",
- "20240721064012570747614": "装修设计",
- "20240721064027033693901": "家居生活",
- "20240721064037856692958": "创意美学",
- "20240721064054346901161": "时尚潮流",
- "20240721065139955704312": "美容美妆",
- "20240721065144690822816": "服饰穿搭",
- "20240721065204600967818": "好物种草",
- "20240721065216328783909": "影视影评",
- "20240721065222773392809": "娱乐八卦",
- "20240721065313016877129": "情感生活",
- "20240721065418085156676": "文化文学",
- "20240721065444407933304": "生活方式",
- # "20240721065448295911613": "宗教历史",
- # "20240721065456074517643": "军事政法",
- "20240721065536790163449": "金融财经",
- "20240721065541597979774": "房产楼市",
- "20240721065548525430079": "科学科普",
- "20240721065636638920221": "互联网",
- # "20240721065642988552526": "数码3C",
- "20240721065757870627696": "新闻媒体",
- "20240721065858360363927": "行业资讯",
- "20240721065936394197711": "区域生活",
- "20240721070021406546573": "健康养生",
- "20240721070027562219631": "体育赛事",
- "20240721070031464491910": "运动健身",
- # "20240721070120535645091": "母婴育儿",
- "20240721070316597585132": "教育培训",
- "20240721070328794991834": "校园生活",
- "20240721070341572360754": "职场管理",
- "20240721070358450257397": "餐饮美食",
- "20240721070400833119871": "星座命理",
- "20240721070405096586304": "搞笑幽默",
- "20240721070427794574827": "旅游出行",
- # "20240721070443436973433": "汽车",
- # "20240721070450497257695": "音乐",
- "20240723131249517316218": "军事政法-年龄56-66",
- "20240723131151203388473": "宗教历史-年龄56-66"
- }
- poolLevelConfig = {
- "1": [
- "指尖奇文--1",
- "老友闲谈--1",
- "老友欢聚地--1",
- "趣味晚年--1",
- "情为老友--1",
- "退休老年圈--1"
- ],
- "2": [
- "指尖奇文--2",
- "老友闲谈--2",
- "老友欢聚地--2",
- "情为老友--2",
- "多彩妙生活--1",
- "多彩妙生活--2",
- "家家生活指南--1",
- "老友快乐谈--1",
- "人生百事观--1",
- "农耕趣时刻--1",
- "幸福启示--1",
- "路边闲聊社--1",
- "快乐精选集--1",
- "生活百态观--1",
- "生活百态观--2",
- "日常巧思集--1",
- "趣史论--1",
- "畅聊奇闻--1",
- "生活指示录--1",
- "奇趣百味生活--1",
- "无忧自在生活--1",
- "喜乐生活派--1",
- "态度说--1",
- "缘来养心厅--1",
- "便捷生活好方法--1",
- "看不够妙招--1"
- ],
- "3": [
- "趣味晚年--2",
- "退休老年圈--2",
- "家家生活指南--2",
- "老友快乐谈--2",
- "农耕趣时刻--2",
- "幸福启示--2",
- "路边闲聊社--2",
- "快乐精选集--2",
- "日常巧思集--2",
- "趣史论--2",
- "畅聊奇闻--2",
- "生活指示录--2",
- "奇趣百味生活--2",
- "无忧自在生活--2",
- "喜乐生活派--2",
- "态度说--2",
- "缘来养心厅--2",
- "便捷生活好方法--2",
- "看不够妙招--2",
- "日常生活小技巧集--1",
- "日常生活小技巧集--2",
- "都市镜头--1",
- "都市镜头--2",
- "退休无忧生活--1",
- "退休无忧生活--2",
- "心灵情感驿站--1",
- "心灵情感驿站--2",
- "票圈极速版--1",
- "票圈极速版--2",
- "生活良读--1",
- "生活良读--2",
- "史记有言--1",
- "史记有言--2",
- "幸福妙招合集--1",
- "幸福妙招合集--2",
- "妙招持家帮手--1",
- "妙招持家帮手--2",
- "乐享生活小窍门--1",
- "乐享生活小窍门--2",
- "天天学生活技巧--1",
- "天天学生活技巧--2",
- "音药金曲厅--1",
- "日常小妙招秘籍--1",
- "日常小妙招秘籍--2",
- "窦都事说--1",
- "巷尾风声--1",
- "趣谈史记--1",
- "趣谈史记--2",
- "趣味生活达人--1",
- "趣味生活达人--2",
- "异闻趣事多--1",
- "异闻趣事多--2",
- "无忧生活小妙招--1",
- "幸福晚年知音--1",
- "麒阁史记--1",
- "老来生活家--1",
- "那些历史--1",
- "祝福养心厅--1",
- "音药养心馆--1",
- "史记趣言--1",
- "生活晓常识--1",
- "生活情感叁读--1",
- "心海情澜起--1",
- "繁花史阁--1",
- "小贝生活课堂--1"
- ],
- "4": [
- "指尖奇文--3",
- "指尖奇文--4",
- "指尖奇文--5",
- "指尖奇文--6",
- "老友闲谈--3",
- "老友闲谈--4",
- "老友闲谈--5",
- "老友闲谈--6",
- "老友欢聚地--3",
- "老友欢聚地--4",
- "老友欢聚地--5",
- "老友欢聚地--6",
- "老友欢聚地--7",
- "老友欢聚地--8",
- "趣味晚年--3",
- "趣味晚年--4",
- "趣味晚年--5",
- "趣味晚年--6",
- "情为老友--3",
- "情为老友--4",
- "情为老友--5",
- "情为老友--6",
- "退休老年圈--3",
- "退休老年圈--4",
- "退休老年圈--5",
- "退休老年圈--6",
- "多彩妙生活--3",
- "多彩妙生活--4",
- "多彩妙生活--5",
- "多彩妙生活--6",
- "多彩妙生活--7",
- "多彩妙生活--8",
- "家家生活指南--3",
- "家家生活指南--4",
- "家家生活指南--5",
- "家家生活指南--6",
- "家家生活指南--7",
- "家家生活指南--8",
- "老友快乐谈--3",
- "人生百事观--2",
- "人生百事观--3",
- "农耕趣时刻--3",
- "农耕趣时刻--4",
- "农耕趣时刻--5",
- "农耕趣时刻--6",
- "路边闲聊社--3",
- "路边闲聊社--4",
- "路边闲聊社--5",
- "路边闲聊社--6",
- "生活百态观--3",
- "生活百态观--4",
- "生活百态观--5",
- "生活百态观--6",
- "日常巧思集--3",
- "日常巧思集--4",
- "日常巧思集--5",
- "日常巧思集--6",
- "趣史论--3",
- "趣史论--4",
- "趣史论--5",
- "趣史论--6",
- "缘来养心厅--3",
- "缘来养心厅--4",
- "缘来养心厅--5",
- "缘来养心厅--6",
- "心灵情感驿站--3",
- "票圈极速版--3",
- "史记有言--3",
- "史记有言--4",
- "史记有言--5",
- "史记有言--6",
- "音药金曲厅--2",
- "日常小妙招秘籍--3",
- "日常小妙招秘籍--4",
- "日常小妙招秘籍--5",
- "日常小妙招秘籍--6",
- "窦都事说--2",
- "巷尾风声--2",
- "趣谈史记--3",
- "趣谈史记--4",
- "趣谈史记--5",
- "趣谈史记--6",
- "无忧生活小妙招--2",
- "幸福晚年知音--2",
- "麒阁史记--2",
- "老来生活家--2",
- "那些历史--2",
- "祝福养心厅--2",
- "音药养心馆--2",
- "史记趣言--2",
- "生活晓常识--2",
- "生活情感叁读--2",
- "心海情澜起--2",
- "繁花史阁--2",
- "小贝生活课堂--2",
- "无忧潮生活--1",
- "无忧潮生活--2",
- "实用妙招800个--1",
- "实用妙招800个--2",
- "票圈美文速递--1",
- "票圈美文速递--2",
- "票圈美文速递--3",
- "小惠爱厨房--1",
- "小惠爱厨房--2",
- "小惠爱厨房--3",
- "小惠爱厨房--4",
- "小惠爱厨房--5",
- "小惠爱厨房--6",
- "小惠爱厨房--7",
- "小惠爱厨房--8",
- "小阳看天下--1",
- "小阳看天下--2",
- "票圈正能量--1",
- "票圈正能量--2",
- "票圈大事件--1",
- "票圈大事件--2"
- ],
- "5": [
- "老友快乐谈--4",
- "人生百事观--4",
- "幸福启示--3",
- "幸福启示--4",
- "快乐精选集--3",
- "快乐精选集--4",
- "畅聊奇闻--3",
- "畅聊奇闻--4",
- "生活指示录--3",
- "生活指示录--4",
- "奇趣百味生活--3",
- "奇趣百味生活--4",
- "无忧自在生活--3",
- "无忧自在生活--4",
- "喜乐生活派--3",
- "喜乐生活派--4",
- "态度说--3",
- "态度说--4",
- "便捷生活好方法--3",
- "便捷生活好方法--4",
- "看不够妙招--3",
- "日常生活小技巧集--3",
- "日常生活小技巧集--4",
- "都市镜头--3",
- "都市镜头--4",
- "退休无忧生活--3",
- "退休无忧生活--4",
- "票圈极速版--4",
- "幸福妙招合集--3",
- "妙招持家帮手--3",
- "乐享生活小窍门--3",
- "天天学生活技巧--3",
- "天天学生活技巧--4",
- "音药金曲厅--3",
- "音药金曲厅--4",
- "巷尾风声--3",
- "巷尾风声--4",
- "趣味生活达人--3",
- "异闻趣事多--3",
- "异闻趣事多--4",
- "无忧生活小妙招--3",
- "麒阁史记--3",
- "麒阁史记--4",
- "那些历史--3",
- "那些历史--4",
- "祝福养心厅--3",
- "音药养心馆--3",
- "音药养心馆--4",
- "史记趣言--3",
- "心海情澜起--3",
- "小阳看天下--3"
- ]
- }
- cateMap = {
- "军事政法": 0.2,
- "宗教历史": 0.2,
- "新闻媒体": 0.15,
- "情感生活": 0.15,
- "健康养生": 0.15,
- "娱乐八卦": 0.15,
- # "其他": 0.2
- }
- poolTagMap = {
- "Level4": "autoArticlePoolLevel4",
- "Level3": "autoArticlePoolLevel3",
- "Level2": "autoArticlePoolLevel2",
- "Level1": "autoArticlePoolLevel1"
- }
- coldPoolArticlesNum = 400
- accountBaseInfo = {
- "gh_6d205db62f04_1": {
- "accountName": "指尖奇文",
- "ghId": "gh_6d205db62f04",
- "fans": 845936,
- "position": "1",
- "readAvg": 17612.61,
- "likeAvg": 49.95
- },
- "gh_56ca3dae948c_1": {
- "accountName": "老友闲谈",
- "ghId": "gh_56ca3dae948c",
- "fans": 857670,
- "position": "1",
- "readAvg": 15220.42,
- "likeAvg": 34.95
- },
- "gh_c69776baf2cd_1": {
- "accountName": "老友欢聚地",
- "ghId": "gh_c69776baf2cd",
- "fans": 966567,
- "position": "1",
- "readAvg": 11657.52,
- "likeAvg": 38.64
- },
- "gh_9877c8541764_1": {
- "accountName": "退休老年圈",
- "ghId": "gh_9877c8541764",
- "fans": 803701,
- "position": "1",
- "readAvg": 10019.59,
- "likeAvg": 33.36
- },
- "gh_6cfd1132df94_1": {
- "accountName": "趣味晚年",
- "ghId": "gh_6cfd1132df94",
- "fans": 957374,
- "position": "1",
- "readAvg": 9891.27,
- "likeAvg": 30.05
- },
- "gh_058e41145a0c_1": {
- "accountName": "多彩妙生活",
- "ghId": "gh_058e41145a0c",
- "fans": 253532,
- "position": "1",
- "readAvg": 9046.74,
- "likeAvg": 29.42
- },
- "gh_89ef4798d3ea_1": {
- "accountName": "生活百态观",
- "ghId": "gh_89ef4798d3ea",
- "fans": 835095,
- "position": "1",
- "readAvg": 8826.29,
- "likeAvg": 23.27
- },
- "gh_56ca3dae948c_2": {
- "accountName": "老友闲谈",
- "ghId": "gh_56ca3dae948c",
- "fans": 857670,
- "position": "2",
- "readAvg": 8787.56,
- "likeAvg": 16.75
- },
- "gh_b15de7c99912_1": {
- "accountName": "人生百事观",
- "ghId": "gh_b15de7c99912",
- "fans": 887469,
- "position": "1",
- "readAvg": 8510.52,
- "likeAvg": 29.62
- },
- "gh_6d205db62f04_2": {
- "accountName": "指尖奇文",
- "ghId": "gh_6d205db62f04",
- "fans": 845936,
- "position": "2",
- "readAvg": 8322.2,
- "likeAvg": 22.73
- },
- "gh_d4dffc34ac39_1": {
- "accountName": "情为老友",
- "ghId": "gh_d4dffc34ac39",
- "fans": 828444,
- "position": "1",
- "readAvg": 8179.1,
- "likeAvg": 24.44
- },
- "gh_744cb16f6e16_1": {
- "accountName": "趣史论",
- "ghId": "gh_744cb16f6e16",
- "fans": 242817,
- "position": "1",
- "readAvg": 8177.88,
- "likeAvg": 32.85
- },
- "gh_c91b42649690_1": {
- "accountName": "农耕趣时刻",
- "ghId": "gh_c91b42649690",
- "fans": 226994,
- "position": "1",
- "readAvg": 7669.17,
- "likeAvg": 23.54
- },
- "gh_970460d9ccec_1": {
- "accountName": "生活之大全",
- "ghId": "gh_970460d9ccec",
- "fans": 277699,
- "position": "1",
- "readAvg": 7433.5,
- "likeAvg": 26.0
- },
- "gh_5ae65db96cb7_1": {
- "accountName": "路边闲聊社",
- "ghId": "gh_5ae65db96cb7",
- "fans": 264349,
- "position": "1",
- "readAvg": 6758.06,
- "likeAvg": 16.98
- },
- "gh_c5cdf60d9ab4_1": {
- "accountName": "老友快乐谈",
- "ghId": "gh_c5cdf60d9ab4",
- "fans": 512895,
- "position": "1",
- "readAvg": 6640.98,
- "likeAvg": 18.24
- },
- "gh_4c058673c07e_1": {
- "accountName": "家家生活指南",
- "ghId": "gh_4c058673c07e",
- "fans": 272538,
- "position": "1",
- "readAvg": 6277.29,
- "likeAvg": 18.35
- },
- "gh_30816d8adb52_1": {
- "accountName": "日常巧思集",
- "ghId": "gh_30816d8adb52",
- "fans": 255337,
- "position": "1",
- "readAvg": 6185.7,
- "likeAvg": 23.3
- },
- "gh_c69776baf2cd_2": {
- "accountName": "老友欢聚地",
- "ghId": "gh_c69776baf2cd",
- "fans": 966567,
- "position": "2",
- "readAvg": 5717.82,
- "likeAvg": 17.75
- },
- "gh_a2901d34f75b_1": {
- "accountName": "畅聊奇闻",
- "ghId": "gh_a2901d34f75b",
- "fans": 389185,
- "position": "1",
- "readAvg": 5595.2,
- "likeAvg": 16.62
- },
- "gh_0c89e11f8bf3_1": {
- "accountName": "幸福启示",
- "ghId": "gh_0c89e11f8bf3",
- "fans": 486906,
- "position": "1",
- "readAvg": 5041.48,
- "likeAvg": 14.96
- },
- "gh_9877c8541764_2": {
- "accountName": "退休老年圈",
- "ghId": "gh_9877c8541764",
- "fans": 803701,
- "position": "2",
- "readAvg": 4981.66,
- "likeAvg": 14.88
- },
- "gh_d49df5e974ca_1": {
- "accountName": "生活指示录",
- "ghId": "gh_d49df5e974ca",
- "fans": 437523,
- "position": "1",
- "readAvg": 4904.91,
- "likeAvg": 14.55
- },
- "gh_bff0bcb0694a_1": {
- "accountName": "喜乐生活派",
- "ghId": "gh_bff0bcb0694a",
- "fans": 404179,
- "position": "1",
- "readAvg": 4886.4,
- "likeAvg": 13.74
- },
- "gh_e24da99dc899_1": {
- "accountName": "缘来养心厅",
- "ghId": "gh_e24da99dc899",
- "fans": 415852,
- "position": "1",
- "readAvg": 4468.55,
- "likeAvg": 9.67
- },
- "gh_bfe5b705324a_1": {
- "accountName": "奇趣百味生活",
- "ghId": "gh_bfe5b705324a",
- "fans": 323615,
- "position": "1",
- "readAvg": 4397.41,
- "likeAvg": 10.65
- },
- "gh_b15de7c99912_2": {
- "accountName": "人生百事观",
- "ghId": "gh_b15de7c99912",
- "fans": 887469,
- "position": "2",
- "readAvg": 4247.91,
- "likeAvg": 16.02
- },
- "gh_89ef4798d3ea_2": {
- "accountName": "生活百态观",
- "ghId": "gh_89ef4798d3ea",
- "fans": 835095,
- "position": "2",
- "readAvg": 4247.33,
- "likeAvg": 12.2
- },
- "gh_970460d9ccec_2": {
- "accountName": "生活之大全",
- "ghId": "gh_970460d9ccec",
- "fans": 277699,
- "position": "2",
- "readAvg": 4178.0,
- "likeAvg": 12.0
- },
- "gh_080bb43aa0dc_1": {
- "accountName": "态度说",
- "ghId": "gh_080bb43aa0dc",
- "fans": 435916,
- "position": "1",
- "readAvg": 4166.75,
- "likeAvg": 10.63
- },
- "gh_7f5075624a50_1": {
- "accountName": "都市镜头",
- "ghId": "gh_7f5075624a50",
- "fans": 199214,
- "position": "1",
- "readAvg": 4122.41,
- "likeAvg": 15.34
- },
- "gh_d4dffc34ac39_2": {
- "accountName": "情为老友",
- "ghId": "gh_d4dffc34ac39",
- "fans": 828444,
- "position": "2",
- "readAvg": 3933.26,
- "likeAvg": 14.81
- },
- "gh_9eef14ad6c16_1": {
- "accountName": "快乐精选集",
- "ghId": "gh_9eef14ad6c16",
- "fans": 515674,
- "position": "1",
- "readAvg": 3932.46,
- "likeAvg": 13.71
- },
- "gh_45beb952dc74_1": {
- "accountName": "票圈乐活",
- "ghId": "gh_45beb952dc74",
- "fans": 126479,
- "position": "1",
- "readAvg": 3813.2,
- "likeAvg": 37.6
- },
- "gh_6cfd1132df94_2": {
- "accountName": "趣味晚年",
- "ghId": "gh_6cfd1132df94",
- "fans": 957374,
- "position": "2",
- "readAvg": 3811.49,
- "likeAvg": 11.27
- },
- "gh_0e4fd9e88386_1": {
- "accountName": "持家有妙招",
- "ghId": "gh_0e4fd9e88386",
- "fans": 171774,
- "position": "1",
- "readAvg": 3694.2,
- "likeAvg": 12.6
- },
- "gh_ac43eb24376d_1": {
- "accountName": "麒阁史记",
- "ghId": "gh_ac43eb24376d",
- "fans": 108877,
- "position": "1",
- "readAvg": 3630.53,
- "likeAvg": 13.0
- },
- "gh_058e41145a0c_5": {
- "accountName": "多彩妙生活",
- "ghId": "gh_058e41145a0c",
- "fans": 253532,
- "position": "5",
- "readAvg": 3595.0,
- "likeAvg": 14.5
- },
- "gh_dd4c857bbb36_1": {
- "accountName": "无忧自在生活",
- "ghId": "gh_dd4c857bbb36",
- "fans": 354334,
- "position": "1",
- "readAvg": 3560.54,
- "likeAvg": 11.55
- },
- "gh_3ed305b5817f_1": {
- "accountName": "看不够妙招",
- "ghId": "gh_3ed305b5817f",
- "fans": 368223,
- "position": "1",
- "readAvg": 3509.22,
- "likeAvg": 10.3
- },
- "gh_008ef23062ee_1": {
- "accountName": "日常生活小技巧集",
- "ghId": "gh_008ef23062ee",
- "fans": 218145,
- "position": "1",
- "readAvg": 3492.08,
- "likeAvg": 14.83
- },
- "gh_be8c29139989_1": {
- "accountName": "退休无忧生活",
- "ghId": "gh_be8c29139989",
- "fans": 197750,
- "position": "1",
- "readAvg": 3453.08,
- "likeAvg": 17.33
- },
- "gh_de9f9ebc976b_1": {
- "accountName": "妙招持家帮手",
- "ghId": "gh_de9f9ebc976b",
- "fans": 166062,
- "position": "1",
- "readAvg": 3345.95,
- "likeAvg": 12.19
- },
- "gh_5ae65db96cb7_2": {
- "accountName": "路边闲聊社",
- "ghId": "gh_5ae65db96cb7",
- "fans": 264349,
- "position": "2",
- "readAvg": 3318.04,
- "likeAvg": 8.96
- },
- "gh_058e41145a0c_2": {
- "accountName": "多彩妙生活",
- "ghId": "gh_058e41145a0c",
- "fans": 253532,
- "position": "2",
- "readAvg": 3313.19,
- "likeAvg": 10.76
- },
- "gh_744cb16f6e16_2": {
- "accountName": "趣史论",
- "ghId": "gh_744cb16f6e16",
- "fans": 242817,
- "position": "2",
- "readAvg": 3287.73,
- "likeAvg": 12.96
- },
- "gh_7e5818b2dd83_1": {
- "accountName": "便捷生活好方法",
- "ghId": "gh_7e5818b2dd83",
- "fans": 437854,
- "position": "1",
- "readAvg": 3276.38,
- "likeAvg": 10.19
- },
- "gh_de9f9ebc976b_5": {
- "accountName": "妙招持家帮手",
- "ghId": "gh_de9f9ebc976b",
- "fans": 166062,
- "position": "5",
- "readAvg": 3133.25,
- "likeAvg": 12.5
- },
- "gh_57573f01b2ee_1": {
- "accountName": "那些历史",
- "ghId": "gh_57573f01b2ee",
- "fans": 148233,
- "position": "1",
- "readAvg": 3126.46,
- "likeAvg": 12.38
- },
- "gh_058e41145a0c_6": {
- "accountName": "多彩妙生活",
- "ghId": "gh_058e41145a0c",
- "fans": 253532,
- "position": "6",
- "readAvg": 3040.4,
- "likeAvg": 13.4
- },
- "gh_c91b42649690_2": {
- "accountName": "农耕趣时刻",
- "ghId": "gh_c91b42649690",
- "fans": 226994,
- "position": "2",
- "readAvg": 2852.0,
- "likeAvg": 9.05
- },
- "gh_058e41145a0c_8": {
- "accountName": "多彩妙生活",
- "ghId": "gh_058e41145a0c",
- "fans": 253532,
- "position": "8",
- "readAvg": 2851.6,
- "likeAvg": 11.2
- },
- "gh_30816d8adb52_2": {
- "accountName": "日常巧思集",
- "ghId": "gh_30816d8adb52",
- "fans": 255337,
- "position": "2",
- "readAvg": 2693.2,
- "likeAvg": 9.1
- },
- "gh_4c058673c07e_2": {
- "accountName": "家家生活指南",
- "ghId": "gh_4c058673c07e",
- "fans": 272538,
- "position": "2",
- "readAvg": 2625.41,
- "likeAvg": 8.59
- },
- "gh_789a40fe7935_1": {
- "accountName": "史记有言",
- "ghId": "gh_789a40fe7935",
- "fans": 135657,
- "position": "1",
- "readAvg": 2600.54,
- "likeAvg": 11.62
- },
- "gh_c5cdf60d9ab4_2": {
- "accountName": "老友快乐谈",
- "ghId": "gh_c5cdf60d9ab4",
- "fans": 512895,
- "position": "2",
- "readAvg": 2583.53,
- "likeAvg": 7.35
- },
- "gh_a2901d34f75b_2": {
- "accountName": "畅聊奇闻",
- "ghId": "gh_a2901d34f75b",
- "fans": 389185,
- "position": "2",
- "readAvg": 2557.0,
- "likeAvg": 7.57
- },
- "gh_0c89e11f8bf3_2": {
- "accountName": "幸福启示",
- "ghId": "gh_0c89e11f8bf3",
- "fans": 486906,
- "position": "2",
- "readAvg": 2517.93,
- "likeAvg": 7.45
- },
- "gh_3e91f0624545_1": {
- "accountName": "趣谈史记",
- "ghId": "gh_3e91f0624545",
- "fans": 123680,
- "position": "1",
- "readAvg": 2482.44,
- "likeAvg": 8.78
- },
- "gh_969f5ea5fee1_1": {
- "accountName": "心海情澜起",
- "ghId": "gh_969f5ea5fee1",
- "fans": 166686,
- "position": "1",
- "readAvg": 2463.08,
- "likeAvg": 7.92
- },
- "gh_1d887d61088c_1": {
- "accountName": "乐享生活小窍门",
- "ghId": "gh_1d887d61088c",
- "fans": 214677,
- "position": "1",
- "readAvg": 2422.35,
- "likeAvg": 6.16
- },
- "gh_03d32e83122f_1": {
- "accountName": "快乐生活妙技巧",
- "ghId": "gh_03d32e83122f",
- "fans": 201051,
- "position": "1",
- "readAvg": 2403.0,
- "likeAvg": 9.17
- },
- "gh_d49df5e974ca_2": {
- "accountName": "生活指示录",
- "ghId": "gh_d49df5e974ca",
- "fans": 437523,
- "position": "2",
- "readAvg": 2399.95,
- "likeAvg": 8.05
- },
- "gh_058e41145a0c_7": {
- "accountName": "多彩妙生活",
- "ghId": "gh_058e41145a0c",
- "fans": 253532,
- "position": "7",
- "readAvg": 2391.6,
- "likeAvg": 8.0
- },
- "gh_192c9cf58b13_1": {
- "accountName": "天天学生活技巧",
- "ghId": "gh_192c9cf58b13",
- "fans": 200829,
- "position": "1",
- "readAvg": 2391.12,
- "likeAvg": 6.43
- },
- "gh_d2cc901deca7_1": {
- "accountName": "票圈极速版",
- "ghId": "gh_d2cc901deca7",
- "fans": 203462,
- "position": "1",
- "readAvg": 2370.97,
- "likeAvg": 14.5
- },
- "gh_ff487cb5dab3_1": {
- "accountName": "趣味生活达人",
- "ghId": "gh_ff487cb5dab3",
- "fans": 240559,
- "position": "1",
- "readAvg": 2370.86,
- "likeAvg": 6.75
- },
- "gh_de9f9ebc976b_7": {
- "accountName": "妙招持家帮手",
- "ghId": "gh_de9f9ebc976b",
- "fans": 166062,
- "position": "7",
- "readAvg": 2346.75,
- "likeAvg": 9.75
- },
- "gh_d5f935d0d1f2_1": {
- "accountName": "繁花史阁",
- "ghId": "gh_d5f935d0d1f2",
- "fans": 144435,
- "position": "1",
- "readAvg": 2300.38,
- "likeAvg": 8.69
- },
- "gh_9cf3b7ff486b_1": {
- "accountName": "票圈热门",
- "ghId": "gh_9cf3b7ff486b",
- "fans": 42450,
- "position": "1",
- "readAvg": 2288.4,
- "likeAvg": 29.8
- },
- "gh_51e4ad40466d_1": {
- "accountName": "日常小妙招秘籍",
- "ghId": "gh_51e4ad40466d",
- "fans": 153526,
- "position": "1",
- "readAvg": 2234.6,
- "likeAvg": 9.7
- },
- "gh_ac43eb24376d_5": {
- "accountName": "麒阁史记",
- "ghId": "gh_ac43eb24376d",
- "fans": 108877,
- "position": "5",
- "readAvg": 2232.67,
- "likeAvg": 7.83
- },
- "gh_efaf7da157f5_1": {
- "accountName": "票圈热议",
- "ghId": "gh_efaf7da157f5",
- "fans": 20306,
- "position": "1",
- "readAvg": 2229.8,
- "likeAvg": 27.8
- },
- "gh_b6f2c5332c72_1": {
- "accountName": "巷尾风声",
- "ghId": "gh_b6f2c5332c72",
- "fans": 109057,
- "position": "1",
- "readAvg": 2189.07,
- "likeAvg": 7.85
- },
- "gh_adca24a8f429_1": {
- "accountName": "史记趣言",
- "ghId": "gh_adca24a8f429",
- "fans": 126634,
- "position": "1",
- "readAvg": 2168.87,
- "likeAvg": 8.06
- },
- "gh_e24da99dc899_2": {
- "accountName": "缘来养心厅",
- "ghId": "gh_e24da99dc899",
- "fans": 415852,
- "position": "2",
- "readAvg": 2157.14,
- "likeAvg": 3.63
- },
- "gh_6b7c2a257263_1": {
- "accountName": "幸福晚年知音",
- "ghId": "gh_6b7c2a257263",
- "fans": 243535,
- "position": "1",
- "readAvg": 2155.98,
- "likeAvg": 4.56
- },
- "gh_95ed5ecf9363_1": {
- "accountName": "生活小优招",
- "ghId": "gh_95ed5ecf9363",
- "fans": 156489,
- "position": "1",
- "readAvg": 2134.0,
- "likeAvg": 9.2
- },
- "gh_7f5075624a50_2": {
- "accountName": "都市镜头",
- "ghId": "gh_7f5075624a50",
- "fans": 199214,
- "position": "2",
- "readAvg": 2100.24,
- "likeAvg": 9.25
- },
- "gh_bff0bcb0694a_2": {
- "accountName": "喜乐生活派",
- "ghId": "gh_bff0bcb0694a",
- "fans": 404179,
- "position": "2",
- "readAvg": 2099.55,
- "likeAvg": 5.09
- },
- "gh_bfe5b705324a_2": {
- "accountName": "奇趣百味生活",
- "ghId": "gh_bfe5b705324a",
- "fans": 323615,
- "position": "2",
- "readAvg": 2074.87,
- "likeAvg": 5.76
- },
- "gh_e0eb490115f5_1": {
- "accountName": "心灵情感驿站",
- "ghId": "gh_e0eb490115f5",
- "fans": 315146,
- "position": "1",
- "readAvg": 2057.45,
- "likeAvg": 6.62
- },
- "gh_03d32e83122f_2": {
- "accountName": "快乐生活妙技巧",
- "ghId": "gh_03d32e83122f",
- "fans": 201051,
- "position": "2",
- "readAvg": 2022.0,
- "likeAvg": 4.4
- },
- "gh_72bace6b3059_1": {
- "accountName": "幸福妙招合集",
- "ghId": "gh_72bace6b3059",
- "fans": 425935,
- "position": "1",
- "readAvg": 1982.73,
- "likeAvg": 7.75
- },
- "gh_9f8dc5b0c74e_1": {
- "accountName": "音药金曲厅",
- "ghId": "gh_9f8dc5b0c74e",
- "fans": 162850,
- "position": "1",
- "readAvg": 1982.36,
- "likeAvg": 7.96
- },
- "gh_de9f9ebc976b_6": {
- "accountName": "妙招持家帮手",
- "ghId": "gh_de9f9ebc976b",
- "fans": 166062,
- "position": "6",
- "readAvg": 1982.25,
- "likeAvg": 7.0
- },
- "gh_080bb43aa0dc_2": {
- "accountName": "态度说",
- "ghId": "gh_080bb43aa0dc",
- "fans": 435916,
- "position": "2",
- "readAvg": 1956.73,
- "likeAvg": 5.55
- },
- "gh_0e4fd9e88386_2": {
- "accountName": "持家有妙招",
- "ghId": "gh_0e4fd9e88386",
- "fans": 171774,
- "position": "2",
- "readAvg": 1951.0,
- "likeAvg": 6.8
- },
- "gh_6d9f36e3a7be_1": {
- "accountName": "音药养心馆",
- "ghId": "gh_6d9f36e3a7be",
- "fans": 205282,
- "position": "1",
- "readAvg": 1934.88,
- "likeAvg": 4.25
- },
- "gh_7b4a5f86d68c_1": {
- "accountName": "异闻趣事多",
- "ghId": "gh_7b4a5f86d68c",
- "fans": 149539,
- "position": "1",
- "readAvg": 1929.08,
- "likeAvg": 6.17
- },
- "gh_b676b7ad9b74_1": {
- "accountName": "无忧生活小妙招",
- "ghId": "gh_b676b7ad9b74",
- "fans": 215401,
- "position": "1",
- "readAvg": 1833.66,
- "likeAvg": 6.36
- },
- "gh_ac43eb24376d_6": {
- "accountName": "麒阁史记",
- "ghId": "gh_ac43eb24376d",
- "fans": 108877,
- "position": "6",
- "readAvg": 1813.67,
- "likeAvg": 8.33
- },
- "gh_b8baac4296cb_1": {
- "accountName": "票圈原创视频精选",
- "ghId": "gh_b8baac4296cb",
- "fans": 49884,
- "position": "1",
- "readAvg": 1812.4,
- "likeAvg": 15.0
- },
- "gh_95ed5ecf9363_2": {
- "accountName": "生活小优招",
- "ghId": "gh_95ed5ecf9363",
- "fans": 156489,
- "position": "2",
- "readAvg": 1806.4,
- "likeAvg": 3.6
- },
- "gh_183d80deffb8_1": {
- "accountName": "生活良读",
- "ghId": "gh_183d80deffb8",
- "fans": 89392,
- "position": "1",
- "readAvg": 1801.56,
- "likeAvg": 6.78
- },
- "gh_29074b51f2b7_1": {
- "accountName": "老来生活家",
- "ghId": "gh_29074b51f2b7",
- "fans": 197360,
- "position": "1",
- "readAvg": 1801.53,
- "likeAvg": 5.12
- },
- "gh_9eef14ad6c16_2": {
- "accountName": "快乐精选集",
- "ghId": "gh_9eef14ad6c16",
- "fans": 515674,
- "position": "2",
- "readAvg": 1789.82,
- "likeAvg": 6.43
- },
- "gh_0e4fd9e88386_5": {
- "accountName": "持家有妙招",
- "ghId": "gh_0e4fd9e88386",
- "fans": 171774,
- "position": "5",
- "readAvg": 1788.67,
- "likeAvg": 6.67
- },
- "gh_3ed305b5817f_2": {
- "accountName": "看不够妙招",
- "ghId": "gh_3ed305b5817f",
- "fans": 368223,
- "position": "2",
- "readAvg": 1761.12,
- "likeAvg": 6.0
- },
- "gh_7e5818b2dd83_2": {
- "accountName": "便捷生活好方法",
- "ghId": "gh_7e5818b2dd83",
- "fans": 437854,
- "position": "2",
- "readAvg": 1737.68,
- "likeAvg": 5.58
- },
- "gh_dd4c857bbb36_2": {
- "accountName": "无忧自在生活",
- "ghId": "gh_dd4c857bbb36",
- "fans": 354334,
- "position": "2",
- "readAvg": 1663.8,
- "likeAvg": 5.88
- },
- "gh_de9f9ebc976b_8": {
- "accountName": "妙招持家帮手",
- "ghId": "gh_de9f9ebc976b",
- "fans": 166062,
- "position": "8",
- "readAvg": 1650.5,
- "likeAvg": 8.5
- },
- "gh_b32125c73861_1": {
- "accountName": "票圈奇闻",
- "ghId": "gh_b32125c73861",
- "fans": 30063,
- "position": "1",
- "readAvg": 1568.4,
- "likeAvg": 13.8
- },
- "gh_f25b5fb01977_1": {
- "accountName": "生活晓常识",
- "ghId": "gh_f25b5fb01977",
- "fans": 177200,
- "position": "1",
- "readAvg": 1524.62,
- "likeAvg": 4.77
- },
- "gh_adca24a8f429_5": {
- "accountName": "史记趣言",
- "ghId": "gh_adca24a8f429",
- "fans": 126634,
- "position": "5",
- "readAvg": 1502.0,
- "likeAvg": 5.0
- },
- "gh_0e4fd9e88386_6": {
- "accountName": "持家有妙招",
- "ghId": "gh_0e4fd9e88386",
- "fans": 171774,
- "position": "6",
- "readAvg": 1501.5,
- "likeAvg": 7.67
- },
- "gh_adca24a8f429_6": {
- "accountName": "史记趣言",
- "ghId": "gh_adca24a8f429",
- "fans": 126634,
- "position": "6",
- "readAvg": 1493.5,
- "likeAvg": 4.5
- },
- "gh_008ef23062ee_2": {
- "accountName": "日常生活小技巧集",
- "ghId": "gh_008ef23062ee",
- "fans": 218145,
- "position": "2",
- "readAvg": 1486.0,
- "likeAvg": 5.62
- },
- "gh_4568b5a7e2fe_1": {
- "accountName": "窦都事说",
- "ghId": "gh_4568b5a7e2fe",
- "fans": 329707,
- "position": "1",
- "readAvg": 1471.94,
- "likeAvg": 5.82
- },
- "gh_ac43eb24376d_2": {
- "accountName": "麒阁史记",
- "ghId": "gh_ac43eb24376d",
- "fans": 108877,
- "position": "2",
- "readAvg": 1455.21,
- "likeAvg": 4.89
- },
- "gh_ac43eb24376d_8": {
- "accountName": "麒阁史记",
- "ghId": "gh_ac43eb24376d",
- "fans": 108877,
- "position": "8",
- "readAvg": 1450.17,
- "likeAvg": 5.0
- },
- "gh_adca24a8f429_7": {
- "accountName": "史记趣言",
- "ghId": "gh_adca24a8f429",
- "fans": 126634,
- "position": "7",
- "readAvg": 1443.5,
- "likeAvg": 6.5
- },
- "gh_ac43eb24376d_7": {
- "accountName": "麒阁史记",
- "ghId": "gh_ac43eb24376d",
- "fans": 108877,
- "position": "7",
- "readAvg": 1440.5,
- "likeAvg": 6.67
- },
- "gh_be8c29139989_2": {
- "accountName": "退休无忧生活",
- "ghId": "gh_be8c29139989",
- "fans": 197750,
- "position": "2",
- "readAvg": 1423.85,
- "likeAvg": 6.08
- },
- "gh_de9f9ebc976b_2": {
- "accountName": "妙招持家帮手",
- "ghId": "gh_de9f9ebc976b",
- "fans": 166062,
- "position": "2",
- "readAvg": 1365.0,
- "likeAvg": 5.71
- },
- "gh_1d887d61088c_2": {
- "accountName": "乐享生活小窍门",
- "ghId": "gh_1d887d61088c",
- "fans": 214677,
- "position": "2",
- "readAvg": 1358.86,
- "likeAvg": 3.84
- },
- "gh_192c9cf58b13_2": {
- "accountName": "天天学生活技巧",
- "ghId": "gh_192c9cf58b13",
- "fans": 200829,
- "position": "2",
- "readAvg": 1349.96,
- "likeAvg": 3.37
- },
- "gh_adca24a8f429_8": {
- "accountName": "史记趣言",
- "ghId": "gh_adca24a8f429",
- "fans": 126634,
- "position": "8",
- "readAvg": 1329.5,
- "likeAvg": 8.5
- },
- "gh_45beb952dc74_2": {
- "accountName": "票圈乐活",
- "ghId": "gh_45beb952dc74",
- "fans": 126479,
- "position": "2",
- "readAvg": 1324.67,
- "likeAvg": 17.83
- },
- "gh_adca24a8f429_2": {
- "accountName": "史记趣言",
- "ghId": "gh_adca24a8f429",
- "fans": 126634,
- "position": "2",
- "readAvg": 1287.87,
- "likeAvg": 5.23
- },
- "gh_5ff48e9fb9ef_1": {
- "accountName": "祝福养心厅",
- "ghId": "gh_5ff48e9fb9ef",
- "fans": 147236,
- "position": "1",
- "readAvg": 1287.22,
- "likeAvg": 5.66
- },
- "gh_f902cea89e48_1": {
- "accountName": "无忧潮生活",
- "ghId": "gh_f902cea89e48",
- "fans": 162528,
- "position": "1",
- "readAvg": 1271.74,
- "likeAvg": 4.55
- },
- "gh_ff487cb5dab3_2": {
- "accountName": "趣味生活达人",
- "ghId": "gh_ff487cb5dab3",
- "fans": 240559,
- "position": "2",
- "readAvg": 1267.53,
- "likeAvg": 3.13
- },
- "gh_789a40fe7935_2": {
- "accountName": "史记有言",
- "ghId": "gh_789a40fe7935",
- "fans": 135657,
- "position": "2",
- "readAvg": 1263.0,
- "likeAvg": 3.85
- },
- "gh_3e91f0624545_2": {
- "accountName": "趣谈史记",
- "ghId": "gh_3e91f0624545",
- "fans": 123680,
- "position": "2",
- "readAvg": 1233.89,
- "likeAvg": 4.22
- },
- "gh_57573f01b2ee_2": {
- "accountName": "那些历史",
- "ghId": "gh_57573f01b2ee",
- "fans": 148233,
- "position": "2",
- "readAvg": 1222.0,
- "likeAvg": 4.0
- },
- "gh_0e4fd9e88386_7": {
- "accountName": "持家有妙招",
- "ghId": "gh_0e4fd9e88386",
- "fans": 171774,
- "position": "7",
- "readAvg": 1200.17,
- "likeAvg": 4.5
- },
- "gh_b3ffc1ca3a04_1": {
- "accountName": "票圈内容精选",
- "ghId": "gh_b3ffc1ca3a04",
- "fans": 17876,
- "position": "1",
- "readAvg": 1166.0,
- "likeAvg": 13.4
- },
- "gh_058e41145a0c_3": {
- "accountName": "多彩妙生活",
- "ghId": "gh_058e41145a0c",
- "fans": 253532,
- "position": "3",
- "readAvg": 1161.73,
- "likeAvg": 3.45
- },
- "gh_b6f2c5332c72_2": {
- "accountName": "巷尾风声",
- "ghId": "gh_b6f2c5332c72",
- "fans": 109057,
- "position": "2",
- "readAvg": 1146.07,
- "likeAvg": 4.49
- },
- "gh_51e4ad40466d_2": {
- "accountName": "日常小妙招秘籍",
- "ghId": "gh_51e4ad40466d",
- "fans": 153526,
- "position": "2",
- "readAvg": 1082.7,
- "likeAvg": 4.5
- },
- "gh_0e4fd9e88386_4": {
- "accountName": "持家有妙招",
- "ghId": "gh_0e4fd9e88386",
- "fans": 171774,
- "position": "4",
- "readAvg": 1059.18,
- "likeAvg": 4.45
- },
- "gh_0e4fd9e88386_3": {
- "accountName": "持家有妙招",
- "ghId": "gh_0e4fd9e88386",
- "fans": 171774,
- "position": "3",
- "readAvg": 1054.27,
- "likeAvg": 6.09
- },
- "gh_e0eb490115f5_2": {
- "accountName": "心灵情感驿站",
- "ghId": "gh_e0eb490115f5",
- "fans": 315146,
- "position": "2",
- "readAvg": 1053.91,
- "likeAvg": 3.65
- },
- "gh_72bace6b3059_2": {
- "accountName": "幸福妙招合集",
- "ghId": "gh_72bace6b3059",
- "fans": 425935,
- "position": "2",
- "readAvg": 1039.64,
- "likeAvg": 5.11
- },
- "gh_084a485e859a_1": {
- "accountName": "生活情感叁读",
- "ghId": "gh_084a485e859a",
- "fans": 120693,
- "position": "1",
- "readAvg": 1022.07,
- "likeAvg": 3.69
- },
- "gh_9cf3b7ff486b_2": {
- "accountName": "票圈热门",
- "ghId": "gh_9cf3b7ff486b",
- "fans": 42450,
- "position": "2",
- "readAvg": 1002.33,
- "likeAvg": 23.67
- },
- "gh_058e41145a0c_4": {
- "accountName": "多彩妙生活",
- "ghId": "gh_058e41145a0c",
- "fans": 253532,
- "position": "4",
- "readAvg": 988.43,
- "likeAvg": 3.24
- },
- "gh_9f8dc5b0c74e_2": {
- "accountName": "音药金曲厅",
- "ghId": "gh_9f8dc5b0c74e",
- "fans": 162850,
- "position": "2",
- "readAvg": 969.79,
- "likeAvg": 3.79
- },
- "gh_b676b7ad9b74_2": {
- "accountName": "无忧生活小妙招",
- "ghId": "gh_b676b7ad9b74",
- "fans": 215401,
- "position": "2",
- "readAvg": 961.81,
- "likeAvg": 3.03
- },
- "gh_efaf7da157f5_2": {
- "accountName": "票圈热议",
- "ghId": "gh_efaf7da157f5",
- "fans": 20306,
- "position": "2",
- "readAvg": 955.4,
- "likeAvg": 20.8
- },
- "gh_d2cc901deca7_2": {
- "accountName": "票圈极速版",
- "ghId": "gh_d2cc901deca7",
- "fans": 203462,
- "position": "2",
- "readAvg": 955.1,
- "likeAvg": 6.77
- },
- "gh_45beb952dc74_5": {
- "accountName": "票圈乐活",
- "ghId": "gh_45beb952dc74",
- "fans": 126479,
- "position": "5",
- "readAvg": 954.5,
- "likeAvg": 10.17
- },
- "gh_1b27dd1beeca_1": {
- "accountName": "小贝生活课堂",
- "ghId": "gh_1b27dd1beeca",
- "fans": 155419,
- "position": "1",
- "readAvg": 942.95,
- "likeAvg": 2.58
- },
- "gh_d5f935d0d1f2_2": {
- "accountName": "繁花史阁",
- "ghId": "gh_d5f935d0d1f2",
- "fans": 144435,
- "position": "2",
- "readAvg": 938.15,
- "likeAvg": 4.08
- },
- "gh_7b4a5f86d68c_2": {
- "accountName": "异闻趣事多",
- "ghId": "gh_7b4a5f86d68c",
- "fans": 149539,
- "position": "2",
- "readAvg": 922.33,
- "likeAvg": 2.62
- },
- "gh_45beb952dc74_3": {
- "accountName": "票圈乐活",
- "ghId": "gh_45beb952dc74",
- "fans": 126479,
- "position": "3",
- "readAvg": 878.83,
- "likeAvg": 12.67
- },
- "gh_6d9f36e3a7be_2": {
- "accountName": "音药养心馆",
- "ghId": "gh_6d9f36e3a7be",
- "fans": 205282,
- "position": "2",
- "readAvg": 862.12,
- "likeAvg": 2.0
- },
- "gh_ee78360d06f5_1": {
- "accountName": "实用妙招800个",
- "ghId": "gh_ee78360d06f5",
- "fans": 120597,
- "position": "1",
- "readAvg": 841.79,
- "likeAvg": 2.55
- },
- "gh_45beb952dc74_4": {
- "accountName": "票圈乐活",
- "ghId": "gh_45beb952dc74",
- "fans": 126479,
- "position": "4",
- "readAvg": 829.33,
- "likeAvg": 10.83
- },
- "gh_0e4fd9e88386_8": {
- "accountName": "持家有妙招",
- "ghId": "gh_0e4fd9e88386",
- "fans": 171774,
- "position": "8",
- "readAvg": 828.17,
- "likeAvg": 3.5
- },
- "gh_29074b51f2b7_2": {
- "accountName": "老来生活家",
- "ghId": "gh_29074b51f2b7",
- "fans": 197360,
- "position": "2",
- "readAvg": 827.29,
- "likeAvg": 2.73
- },
- "gh_744cb16f6e16_3": {
- "accountName": "趣史论",
- "ghId": "gh_744cb16f6e16",
- "fans": 242817,
- "position": "3",
- "readAvg": 825.78,
- "likeAvg": 4.26
- },
- "gh_6b7c2a257263_2": {
- "accountName": "幸福晚年知音",
- "ghId": "gh_6b7c2a257263",
- "fans": 243535,
- "position": "2",
- "readAvg": 816.58,
- "likeAvg": 2.28
- },
- "gh_183d80deffb8_2": {
- "accountName": "生活良读",
- "ghId": "gh_183d80deffb8",
- "fans": 89392,
- "position": "2",
- "readAvg": 792.57,
- "likeAvg": 3.02
- },
- "gh_9cf3b7ff486b_3": {
- "accountName": "票圈热门",
- "ghId": "gh_9cf3b7ff486b",
- "fans": 42450,
- "position": "3",
- "readAvg": 746.33,
- "likeAvg": 17.0
- },
- "gh_ac43eb24376d_4": {
- "accountName": "麒阁史记",
- "ghId": "gh_ac43eb24376d",
- "fans": 108877,
- "position": "4",
- "readAvg": 731.42,
- "likeAvg": 2.53
- },
- "gh_b8baac4296cb_2": {
- "accountName": "票圈原创视频精选",
- "ghId": "gh_b8baac4296cb",
- "fans": 49884,
- "position": "2",
- "readAvg": 725.33,
- "likeAvg": 7.67
- },
- "gh_f25b5fb01977_2": {
- "accountName": "生活晓常识",
- "ghId": "gh_f25b5fb01977",
- "fans": 177200,
- "position": "2",
- "readAvg": 705.11,
- "likeAvg": 2.28
- },
- "gh_ac43eb24376d_3": {
- "accountName": "麒阁史记",
- "ghId": "gh_ac43eb24376d",
- "fans": 108877,
- "position": "3",
- "readAvg": 703.06,
- "likeAvg": 3.17
- },
- "gh_970460d9ccec_3": {
- "accountName": "生活之大全",
- "ghId": "gh_970460d9ccec",
- "fans": 277699,
- "position": "3",
- "readAvg": 668.8,
- "likeAvg": 2.8
- },
- "gh_b32125c73861_2": {
- "accountName": "票圈奇闻",
- "ghId": "gh_b32125c73861",
- "fans": 30063,
- "position": "2",
- "readAvg": 668.0,
- "likeAvg": 5.17
- },
- "gh_9cf3b7ff486b_5": {
- "accountName": "票圈热门",
- "ghId": "gh_9cf3b7ff486b",
- "fans": 42450,
- "position": "5",
- "readAvg": 660.67,
- "likeAvg": 6.17
- },
- "gh_969f5ea5fee1_2": {
- "accountName": "心海情澜起",
- "ghId": "gh_969f5ea5fee1",
- "fans": 166686,
- "position": "2",
- "readAvg": 638.42,
- "likeAvg": 2.25
- },
- "gh_45beb952dc74_6": {
- "accountName": "票圈乐活",
- "ghId": "gh_45beb952dc74",
- "fans": 126479,
- "position": "6",
- "readAvg": 624.83,
- "likeAvg": 7.83
- },
- "gh_5ff48e9fb9ef_2": {
- "accountName": "祝福养心厅",
- "ghId": "gh_5ff48e9fb9ef",
- "fans": 147236,
- "position": "2",
- "readAvg": 622.37,
- "likeAvg": 2.86
- },
- "gh_efaf7da157f5_3": {
- "accountName": "票圈热议",
- "ghId": "gh_efaf7da157f5",
- "fans": 20306,
- "position": "3",
- "readAvg": 616.0,
- "likeAvg": 9.29
- },
- "gh_45beb952dc74_8": {
- "accountName": "票圈乐活",
- "ghId": "gh_45beb952dc74",
- "fans": 126479,
- "position": "8",
- "readAvg": 601.71,
- "likeAvg": 9.57
- },
- "gh_b8baac4296cb_3": {
- "accountName": "票圈原创视频精选",
- "ghId": "gh_b8baac4296cb",
- "fans": 49884,
- "position": "3",
- "readAvg": 596.57,
- "likeAvg": 7.57
- },
- "gh_56ca3dae948c_3": {
- "accountName": "老友闲谈",
- "ghId": "gh_56ca3dae948c",
- "fans": 857670,
- "position": "3",
- "readAvg": 550.27,
- "likeAvg": 2.03
- },
- "gh_b32125c73861_3": {
- "accountName": "票圈奇闻",
- "ghId": "gh_b32125c73861",
- "fans": 30063,
- "position": "3",
- "readAvg": 542.71,
- "likeAvg": 5.14
- },
- "gh_9cf3b7ff486b_4": {
- "accountName": "票圈热门",
- "ghId": "gh_9cf3b7ff486b",
- "fans": 42450,
- "position": "4",
- "readAvg": 527.33,
- "likeAvg": 7.83
- },
- "gh_b8baac4296cb_5": {
- "accountName": "票圈原创视频精选",
- "ghId": "gh_b8baac4296cb",
- "fans": 49884,
- "position": "5",
- "readAvg": 518.0,
- "likeAvg": 3.33
- },
- "gh_c91b42649690_3": {
- "accountName": "农耕趣时刻",
- "ghId": "gh_c91b42649690",
- "fans": 226994,
- "position": "3",
- "readAvg": 513.41,
- "likeAvg": 1.59
- },
- "gh_b32125c73861_5": {
- "accountName": "票圈奇闻",
- "ghId": "gh_b32125c73861",
- "fans": 30063,
- "position": "5",
- "readAvg": 505.0,
- "likeAvg": 4.67
- },
- "gh_084a485e859a_2": {
- "accountName": "生活情感叁读",
- "ghId": "gh_084a485e859a",
- "fans": 120693,
- "position": "2",
- "readAvg": 497.68,
- "likeAvg": 1.93
- },
- "gh_b3ffc1ca3a04_2": {
- "accountName": "票圈内容精选",
- "ghId": "gh_b3ffc1ca3a04",
- "fans": 17876,
- "position": "2",
- "readAvg": 495.0,
- "likeAvg": 6.67
- },
- "gh_f902cea89e48_2": {
- "accountName": "无忧潮生活",
- "ghId": "gh_f902cea89e48",
- "fans": 162528,
- "position": "2",
- "readAvg": 472.73,
- "likeAvg": 2.12
- },
- "gh_1b27dd1beeca_2": {
- "accountName": "小贝生活课堂",
- "ghId": "gh_1b27dd1beeca",
- "fans": 155419,
- "position": "2",
- "readAvg": 462.3,
- "likeAvg": 1.14
- },
- "gh_c91b42649690_4": {
- "accountName": "农耕趣时刻",
- "ghId": "gh_c91b42649690",
- "fans": 226994,
- "position": "4",
- "readAvg": 452.64,
- "likeAvg": 1.86
- },
- "gh_26a307578776_1": {
- "accountName": "票圈美文速递",
- "ghId": "gh_26a307578776",
- "fans": 18670,
- "position": "1",
- "readAvg": 446.54,
- "likeAvg": 10.36
- },
- "gh_45beb952dc74_7": {
- "accountName": "票圈乐活",
- "ghId": "gh_45beb952dc74",
- "fans": 126479,
- "position": "7",
- "readAvg": 425.83,
- "likeAvg": 5.83
- },
- "gh_6d205db62f04_3": {
- "accountName": "指尖奇文",
- "ghId": "gh_6d205db62f04",
- "fans": 845936,
- "position": "3",
- "readAvg": 424.75,
- "likeAvg": 1.9
- },
- "gh_5e543853d8f0_1": {
- "accountName": "票圈精彩",
- "ghId": "gh_5e543853d8f0",
- "fans": 7780,
- "position": "1",
- "readAvg": 418.83,
- "likeAvg": 4.67
- },
- "gh_789a40fe7935_8": {
- "accountName": "史记有言",
- "ghId": "gh_789a40fe7935",
- "fans": 135657,
- "position": "8",
- "readAvg": 417.0,
- "likeAvg": 2.0
- },
- "gh_ee78360d06f5_2": {
- "accountName": "实用妙招800个",
- "ghId": "gh_ee78360d06f5",
- "fans": 120597,
- "position": "2",
- "readAvg": 413.32,
- "likeAvg": 1.25
- },
- "gh_b8baac4296cb_4": {
- "accountName": "票圈原创视频精选",
- "ghId": "gh_b8baac4296cb",
- "fans": 49884,
- "position": "4",
- "readAvg": 412.71,
- "likeAvg": 4.86
- },
- "gh_b3ffc1ca3a04_5": {
- "accountName": "票圈内容精选",
- "ghId": "gh_b3ffc1ca3a04",
- "fans": 17876,
- "position": "5",
- "readAvg": 402.83,
- "likeAvg": 4.83
- },
- "gh_b32125c73861_4": {
- "accountName": "票圈奇闻",
- "ghId": "gh_b32125c73861",
- "fans": 30063,
- "position": "4",
- "readAvg": 398.43,
- "likeAvg": 3.86
- },
- "gh_e24da99dc899_3": {
- "accountName": "缘来养心厅",
- "ghId": "gh_e24da99dc899",
- "fans": 415852,
- "position": "3",
- "readAvg": 395.57,
- "likeAvg": 0.72
- },
- "gh_970460d9ccec_4": {
- "accountName": "生活之大全",
- "ghId": "gh_970460d9ccec",
- "fans": 277699,
- "position": "4",
- "readAvg": 394.0,
- "likeAvg": 2.8
- },
- "gh_9cf3b7ff486b_6": {
- "accountName": "票圈热门",
- "ghId": "gh_9cf3b7ff486b",
- "fans": 42450,
- "position": "6",
- "readAvg": 384.17,
- "likeAvg": 2.83
- },
- "gh_efaf7da157f5_5": {
- "accountName": "票圈热议",
- "ghId": "gh_efaf7da157f5",
- "fans": 20306,
- "position": "5",
- "readAvg": 363.33,
- "likeAvg": 4.67
- },
- "gh_b3ffc1ca3a04_3": {
- "accountName": "票圈内容精选",
- "ghId": "gh_b3ffc1ca3a04",
- "fans": 17876,
- "position": "3",
- "readAvg": 359.83,
- "likeAvg": 5.5
- },
- "gh_4c058673c07e_3": {
- "accountName": "家家生活指南",
- "ghId": "gh_4c058673c07e",
- "fans": 272538,
- "position": "3",
- "readAvg": 356.59,
- "likeAvg": 1.41
- },
- "gh_4568b5a7e2fe_2": {
- "accountName": "窦都事说",
- "ghId": "gh_4568b5a7e2fe",
- "fans": 329707,
- "position": "2",
- "readAvg": 338.16,
- "likeAvg": 1.41
- },
- "gh_9cf3b7ff486b_8": {
- "accountName": "票圈热门",
- "ghId": "gh_9cf3b7ff486b",
- "fans": 42450,
- "position": "8",
- "readAvg": 336.0,
- "likeAvg": 2.33
- },
- "gh_b3ffc1ca3a04_4": {
- "accountName": "票圈内容精选",
- "ghId": "gh_b3ffc1ca3a04",
- "fans": 17876,
- "position": "4",
- "readAvg": 327.14,
- "likeAvg": 4.57
- },
- "gh_56ca3dae948c_5": {
- "accountName": "老友闲谈",
- "ghId": "gh_56ca3dae948c",
- "fans": 857670,
- "position": "5",
- "readAvg": 324.94,
- "likeAvg": 0.96
- },
- "gh_b32125c73861_8": {
- "accountName": "票圈奇闻",
- "ghId": "gh_b32125c73861",
- "fans": 30063,
- "position": "8",
- "readAvg": 324.0,
- "likeAvg": 3.0
- },
- "gh_26a307578776_2": {
- "accountName": "票圈美文速递",
- "ghId": "gh_26a307578776",
- "fans": 18670,
- "position": "2",
- "readAvg": 323.44,
- "likeAvg": 8.19
- },
- "gh_03d32e83122f_3": {
- "accountName": "快乐生活妙技巧",
- "ghId": "gh_03d32e83122f",
- "fans": 201051,
- "position": "3",
- "readAvg": 323.4,
- "likeAvg": 0.4
- },
- "gh_b8baac4296cb_8": {
- "accountName": "票圈原创视频精选",
- "ghId": "gh_b8baac4296cb",
- "fans": 49884,
- "position": "8",
- "readAvg": 321.14,
- "likeAvg": 2.86
- },
- "gh_56ca3dae948c_4": {
- "accountName": "老友闲谈",
- "ghId": "gh_56ca3dae948c",
- "fans": 857670,
- "position": "4",
- "readAvg": 321.07,
- "likeAvg": 0.79
- },
- "gh_b8baac4296cb_6": {
- "accountName": "票圈原创视频精选",
- "ghId": "gh_b8baac4296cb",
- "fans": 49884,
- "position": "6",
- "readAvg": 312.33,
- "likeAvg": 2.83
- },
- "gh_744cb16f6e16_4": {
- "accountName": "趣史论",
- "ghId": "gh_744cb16f6e16",
- "fans": 242817,
- "position": "4",
- "readAvg": 308.68,
- "likeAvg": 2.41
- },
- "gh_e75dbdc73d80_1": {
- "accountName": "票圈正能量",
- "ghId": "gh_e75dbdc73d80",
- "fans": 21179,
- "position": "1",
- "readAvg": 306.86,
- "likeAvg": 2.02
- },
- "gh_6d205db62f04_4": {
- "accountName": "指尖奇文",
- "ghId": "gh_6d205db62f04",
- "fans": 845936,
- "position": "4",
- "readAvg": 303.67,
- "likeAvg": 0.92
- },
- "gh_efaf7da157f5_4": {
- "accountName": "票圈热议",
- "ghId": "gh_efaf7da157f5",
- "fans": 20306,
- "position": "4",
- "readAvg": 297.0,
- "likeAvg": 4.29
- },
- "gh_b32125c73861_6": {
- "accountName": "票圈奇闻",
- "ghId": "gh_b32125c73861",
- "fans": 30063,
- "position": "6",
- "readAvg": 296.83,
- "likeAvg": 2.17
- },
- "gh_9cf3b7ff486b_7": {
- "accountName": "票圈热门",
- "ghId": "gh_9cf3b7ff486b",
- "fans": 42450,
- "position": "7",
- "readAvg": 294.5,
- "likeAvg": 2.33
- },
- "gh_c69776baf2cd_3": {
- "accountName": "老友欢聚地",
- "ghId": "gh_c69776baf2cd",
- "fans": 966567,
- "position": "3",
- "readAvg": 292.97,
- "likeAvg": 1.92
- },
- "gh_e24da99dc899_5": {
- "accountName": "缘来养心厅",
- "ghId": "gh_e24da99dc899",
- "fans": 415852,
- "position": "5",
- "readAvg": 292.31,
- "likeAvg": 0.62
- },
- "gh_789a40fe7935_5": {
- "accountName": "史记有言",
- "ghId": "gh_789a40fe7935",
- "fans": 135657,
- "position": "5",
- "readAvg": 289.67,
- "likeAvg": 2.0
- },
- "gh_30816d8adb52_3": {
- "accountName": "日常巧思集",
- "ghId": "gh_30816d8adb52",
- "fans": 255337,
- "position": "3",
- "readAvg": 280.67,
- "likeAvg": 1.56
- },
- "gh_789a40fe7935_3": {
- "accountName": "史记有言",
- "ghId": "gh_789a40fe7935",
- "fans": 135657,
- "position": "3",
- "readAvg": 276.56,
- "likeAvg": 0.67
- },
- "gh_4c058673c07e_4": {
- "accountName": "家家生活指南",
- "ghId": "gh_4c058673c07e",
- "fans": 272538,
- "position": "4",
- "readAvg": 276.0,
- "likeAvg": 0.76
- },
- "gh_b3ffc1ca3a04_8": {
- "accountName": "票圈内容精选",
- "ghId": "gh_b3ffc1ca3a04",
- "fans": 17876,
- "position": "8",
- "readAvg": 272.0,
- "likeAvg": 3.43
- },
- "gh_95ed5ecf9363_3": {
- "accountName": "生活小优招",
- "ghId": "gh_95ed5ecf9363",
- "fans": 156489,
- "position": "3",
- "readAvg": 270.6,
- "likeAvg": 1.0
- },
- "gh_30816d8adb52_4": {
- "accountName": "日常巧思集",
- "ghId": "gh_30816d8adb52",
- "fans": 255337,
- "position": "4",
- "readAvg": 261.44,
- "likeAvg": 1.22
- },
- "gh_789a40fe7935_7": {
- "accountName": "史记有言",
- "ghId": "gh_789a40fe7935",
- "fans": 135657,
- "position": "7",
- "readAvg": 258.67,
- "likeAvg": 2.67
- },
- "gh_789a40fe7935_4": {
- "accountName": "史记有言",
- "ghId": "gh_789a40fe7935",
- "fans": 135657,
- "position": "4",
- "readAvg": 256.42,
- "likeAvg": 0.67
- },
- "gh_6d205db62f04_5": {
- "accountName": "指尖奇文",
- "ghId": "gh_6d205db62f04",
- "fans": 845936,
- "position": "5",
- "readAvg": 253.39,
- "likeAvg": 0.52
- },
- "gh_03d32e83122f_4": {
- "accountName": "快乐生活妙技巧",
- "ghId": "gh_03d32e83122f",
- "fans": 201051,
- "position": "4",
- "readAvg": 250.2,
- "likeAvg": 0.6
- },
- "gh_f902cea89e48_5": {
- "accountName": "无忧潮生活",
- "ghId": "gh_f902cea89e48",
- "fans": 162528,
- "position": "5",
- "readAvg": 246.5,
- "likeAvg": 0.5
- },
- "gh_b3ffc1ca3a04_6": {
- "accountName": "票圈内容精选",
- "ghId": "gh_b3ffc1ca3a04",
- "fans": 17876,
- "position": "6",
- "readAvg": 237.33,
- "likeAvg": 2.17
- },
- "gh_b8baac4296cb_7": {
- "accountName": "票圈原创视频精选",
- "ghId": "gh_b8baac4296cb",
- "fans": 49884,
- "position": "7",
- "readAvg": 235.0,
- "likeAvg": 1.67
- },
- "gh_3e91f0624545_3": {
- "accountName": "趣谈史记",
- "ghId": "gh_3e91f0624545",
- "fans": 123680,
- "position": "3",
- "readAvg": 233.78,
- "likeAvg": 0.89
- },
- "gh_e24da99dc899_4": {
- "accountName": "缘来养心厅",
- "ghId": "gh_e24da99dc899",
- "fans": 415852,
- "position": "4",
- "readAvg": 230.85,
- "likeAvg": 0.57
- },
- "gh_6d205db62f04_6": {
- "accountName": "指尖奇文",
- "ghId": "gh_6d205db62f04",
- "fans": 845936,
- "position": "6",
- "readAvg": 228.62,
- "likeAvg": 0.5
- },
- "gh_b32125c73861_7": {
- "accountName": "票圈奇闻",
- "ghId": "gh_b32125c73861",
- "fans": 30063,
- "position": "7",
- "readAvg": 225.67,
- "likeAvg": 2.67
- },
- "gh_57573f01b2ee_3": {
- "accountName": "那些历史",
- "ghId": "gh_57573f01b2ee",
- "fans": 148233,
- "position": "3",
- "readAvg": 213.38,
- "likeAvg": 0.54
- },
- "gh_9877c8541764_3": {
- "accountName": "退休老年圈",
- "ghId": "gh_9877c8541764",
- "fans": 803701,
- "position": "3",
- "readAvg": 213.02,
- "likeAvg": 1.74
- },
- "gh_9e559b3b94ca_1": {
- "accountName": "票圈大事件",
- "ghId": "gh_9e559b3b94ca",
- "fans": 20375,
- "position": "1",
- "readAvg": 212.05,
- "likeAvg": 2.1
- },
- "gh_6cfd1132df94_3": {
- "accountName": "趣味晚年",
- "ghId": "gh_6cfd1132df94",
- "fans": 957374,
- "position": "3",
- "readAvg": 209.54,
- "likeAvg": 1.66
- },
- "gh_efaf7da157f5_6": {
- "accountName": "票圈热议",
- "ghId": "gh_efaf7da157f5",
- "fans": 20306,
- "position": "6",
- "readAvg": 208.83,
- "likeAvg": 3.33
- },
- "gh_008ef23062ee_3": {
- "accountName": "日常生活小技巧集",
- "ghId": "gh_008ef23062ee",
- "fans": 218145,
- "position": "3",
- "readAvg": 206.0,
- "likeAvg": 1.23
- },
- "gh_6d205db62f04_7": {
- "accountName": "指尖奇文",
- "ghId": "gh_6d205db62f04",
- "fans": 845936,
- "position": "7",
- "readAvg": 201.33,
- "likeAvg": 0.2
- },
- "gh_c69776baf2cd_4": {
- "accountName": "老友欢聚地",
- "ghId": "gh_c69776baf2cd",
- "fans": 966567,
- "position": "4",
- "readAvg": 197.91,
- "likeAvg": 1.55
- },
- "gh_5ae65db96cb7_3": {
- "accountName": "路边闲聊社",
- "ghId": "gh_5ae65db96cb7",
- "fans": 264349,
- "position": "3",
- "readAvg": 189.53,
- "likeAvg": 1.42
- },
- "gh_008ef23062ee_4": {
- "accountName": "日常生活小技巧集",
- "ghId": "gh_008ef23062ee",
- "fans": 218145,
- "position": "4",
- "readAvg": 188.92,
- "likeAvg": 1.33
- },
- "gh_5e543853d8f0_2": {
- "accountName": "票圈精彩",
- "ghId": "gh_5e543853d8f0",
- "fans": 7780,
- "position": "2",
- "readAvg": 188.71,
- "likeAvg": 2.71
- },
- "gh_b3ffc1ca3a04_7": {
- "accountName": "票圈内容精选",
- "ghId": "gh_b3ffc1ca3a04",
- "fans": 17876,
- "position": "7",
- "readAvg": 188.33,
- "likeAvg": 2.5
- },
- "gh_efaf7da157f5_8": {
- "accountName": "票圈热议",
- "ghId": "gh_efaf7da157f5",
- "fans": 20306,
- "position": "8",
- "readAvg": 183.43,
- "likeAvg": 4.29
- },
- "gh_6d205db62f04_8": {
- "accountName": "指尖奇文",
- "ghId": "gh_6d205db62f04",
- "fans": 845936,
- "position": "8",
- "readAvg": 183.27,
- "likeAvg": 0.33
- },
- "gh_be8c29139989_3": {
- "accountName": "退休无忧生活",
- "ghId": "gh_be8c29139989",
- "fans": 197750,
- "position": "3",
- "readAvg": 182.62,
- "likeAvg": 1.23
- },
- "gh_c69776baf2cd_6": {
- "accountName": "老友欢聚地",
- "ghId": "gh_c69776baf2cd",
- "fans": 966567,
- "position": "6",
- "readAvg": 181.24,
- "likeAvg": 1.0
- },
- "gh_51e4ad40466d_3": {
- "accountName": "日常小妙招秘籍",
- "ghId": "gh_51e4ad40466d",
- "fans": 153526,
- "position": "3",
- "readAvg": 181.0,
- "likeAvg": 0.7
- },
- "gh_d4dffc34ac39_3": {
- "accountName": "情为老友",
- "ghId": "gh_d4dffc34ac39",
- "fans": 828444,
- "position": "3",
- "readAvg": 178.35,
- "likeAvg": 1.37
- },
- "gh_89ef4798d3ea_3": {
- "accountName": "生活百态观",
- "ghId": "gh_89ef4798d3ea",
- "fans": 835095,
- "position": "3",
- "readAvg": 178.32,
- "likeAvg": 0.93
- },
- "gh_95ed5ecf9363_4": {
- "accountName": "生活小优招",
- "ghId": "gh_95ed5ecf9363",
- "fans": 156489,
- "position": "4",
- "readAvg": 173.6,
- "likeAvg": 0.4
- },
- "gh_b15de7c99912_3": {
- "accountName": "人生百事观",
- "ghId": "gh_b15de7c99912",
- "fans": 887469,
- "position": "3",
- "readAvg": 173.59,
- "likeAvg": 1.41
- },
- "gh_57573f01b2ee_4": {
- "accountName": "那些历史",
- "ghId": "gh_57573f01b2ee",
- "fans": 148233,
- "position": "4",
- "readAvg": 166.08,
- "likeAvg": 0.62
- },
- "gh_e75dbdc73d80_2": {
- "accountName": "票圈正能量",
- "ghId": "gh_e75dbdc73d80",
- "fans": 21179,
- "position": "2",
- "readAvg": 160.46,
- "likeAvg": 0.98
- },
- "gh_5e543853d8f0_3": {
- "accountName": "票圈精彩",
- "ghId": "gh_5e543853d8f0",
- "fans": 7780,
- "position": "3",
- "readAvg": 159.38,
- "likeAvg": 2.0
- },
- "gh_5ae65db96cb7_4": {
- "accountName": "路边闲聊社",
- "ghId": "gh_5ae65db96cb7",
- "fans": 264349,
- "position": "4",
- "readAvg": 156.3,
- "likeAvg": 1.35
- },
- "gh_3e91f0624545_4": {
- "accountName": "趣谈史记",
- "ghId": "gh_3e91f0624545",
- "fans": 123680,
- "position": "4",
- "readAvg": 151.22,
- "likeAvg": 1.0
- },
- "gh_d2cc901deca7_3": {
- "accountName": "票圈极速版",
- "ghId": "gh_d2cc901deca7",
- "fans": 203462,
- "position": "3",
- "readAvg": 150.04,
- "likeAvg": 1.5
- },
- "gh_c69776baf2cd_5": {
- "accountName": "老友欢聚地",
- "ghId": "gh_c69776baf2cd",
- "fans": 966567,
- "position": "5",
- "readAvg": 147.1,
- "likeAvg": 0.33
- },
- "gh_9f8dc5b0c74e_3": {
- "accountName": "音药金曲厅",
- "ghId": "gh_9f8dc5b0c74e",
- "fans": 162850,
- "position": "3",
- "readAvg": 143.42,
- "likeAvg": 0.49
- },
- "gh_efaf7da157f5_7": {
- "accountName": "票圈热议",
- "ghId": "gh_efaf7da157f5",
- "fans": 20306,
- "position": "7",
- "readAvg": 141.17,
- "likeAvg": 2.17
- },
- "gh_c69776baf2cd_7": {
- "accountName": "老友欢聚地",
- "ghId": "gh_c69776baf2cd",
- "fans": 966567,
- "position": "7",
- "readAvg": 140.13,
- "likeAvg": 0.67
- },
- "gh_c69776baf2cd_8": {
- "accountName": "老友欢聚地",
- "ghId": "gh_c69776baf2cd",
- "fans": 966567,
- "position": "8",
- "readAvg": 139.07,
- "likeAvg": 0.6
- },
- "gh_6cfd1132df94_5": {
- "accountName": "趣味晚年",
- "ghId": "gh_6cfd1132df94",
- "fans": 957374,
- "position": "5",
- "readAvg": 138.0,
- "likeAvg": 2.0
- },
- "gh_be8c29139989_4": {
- "accountName": "退休无忧生活",
- "ghId": "gh_be8c29139989",
- "fans": 197750,
- "position": "4",
- "readAvg": 137.33,
- "likeAvg": 0.58
- },
- "gh_7b4a5f86d68c_3": {
- "accountName": "异闻趣事多",
- "ghId": "gh_7b4a5f86d68c",
- "fans": 149539,
- "position": "3",
- "readAvg": 136.21,
- "likeAvg": 0.42
- },
- "gh_9f8dc5b0c74e_4": {
- "accountName": "音药金曲厅",
- "ghId": "gh_9f8dc5b0c74e",
- "fans": 162850,
- "position": "4",
- "readAvg": 134.4,
- "likeAvg": 0.38
- },
- "gh_9877c8541764_4": {
- "accountName": "退休老年圈",
- "ghId": "gh_9877c8541764",
- "fans": 803701,
- "position": "4",
- "readAvg": 133.43,
- "likeAvg": 1.34
- },
- "gh_89ef4798d3ea_4": {
- "accountName": "生活百态观",
- "ghId": "gh_89ef4798d3ea",
- "fans": 835095,
- "position": "4",
- "readAvg": 133.23,
- "likeAvg": 0.34
- },
- "gh_d4dffc34ac39_4": {
- "accountName": "情为老友",
- "ghId": "gh_d4dffc34ac39",
- "fans": 828444,
- "position": "4",
- "readAvg": 130.57,
- "likeAvg": 0.93
- },
- "gh_51e4ad40466d_4": {
- "accountName": "日常小妙招秘籍",
- "ghId": "gh_51e4ad40466d",
- "fans": 153526,
- "position": "4",
- "readAvg": 128.6,
- "likeAvg": 0.7
- },
- "gh_9877c8541764_6": {
- "accountName": "退休老年圈",
- "ghId": "gh_9877c8541764",
- "fans": 803701,
- "position": "6",
- "readAvg": 127.09,
- "likeAvg": 0.61
- },
- "gh_5e543853d8f0_5": {
- "accountName": "票圈精彩",
- "ghId": "gh_5e543853d8f0",
- "fans": 7780,
- "position": "5",
- "readAvg": 127.0,
- "likeAvg": 1.71
- },
- "gh_c5cdf60d9ab4_3": {
- "accountName": "老友快乐谈",
- "ghId": "gh_c5cdf60d9ab4",
- "fans": 512895,
- "position": "3",
- "readAvg": 124.81,
- "likeAvg": 0.88
- },
- "gh_0c89e11f8bf3_3": {
- "accountName": "幸福启示",
- "ghId": "gh_0c89e11f8bf3",
- "fans": 486906,
- "position": "3",
- "readAvg": 123.98,
- "likeAvg": 0.67
- },
- "gh_e0eb490115f5_3": {
- "accountName": "心灵情感驿站",
- "ghId": "gh_e0eb490115f5",
- "fans": 315146,
- "position": "3",
- "readAvg": 123.28,
- "likeAvg": 0.63
- },
- "gh_6cfd1132df94_4": {
- "accountName": "趣味晚年",
- "ghId": "gh_6cfd1132df94",
- "fans": 957374,
- "position": "4",
- "readAvg": 119.5,
- "likeAvg": 0.56
- },
- "gh_26a307578776_3": {
- "accountName": "票圈美文速递",
- "ghId": "gh_26a307578776",
- "fans": 18670,
- "position": "3",
- "readAvg": 118.61,
- "likeAvg": 5.7
- },
- "gh_d5f935d0d1f2_4": {
- "accountName": "繁花史阁",
- "ghId": "gh_d5f935d0d1f2",
- "fans": 144435,
- "position": "4",
- "readAvg": 114.54,
- "likeAvg": 0.85
- },
- "gh_b15de7c99912_4": {
- "accountName": "人生百事观",
- "ghId": "gh_b15de7c99912",
- "fans": 887469,
- "position": "4",
- "readAvg": 110.47,
- "likeAvg": 0.58
- },
- "gh_89ef4798d3ea_6": {
- "accountName": "生活百态观",
- "ghId": "gh_89ef4798d3ea",
- "fans": 835095,
- "position": "6",
- "readAvg": 109.9,
- "likeAvg": 0.62
- },
- "gh_a2901d34f75b_3": {
- "accountName": "畅聊奇闻",
- "ghId": "gh_a2901d34f75b",
- "fans": 389185,
- "position": "3",
- "readAvg": 109.74,
- "likeAvg": 0.71
- },
- "gh_9877c8541764_5": {
- "accountName": "退休老年圈",
- "ghId": "gh_9877c8541764",
- "fans": 803701,
- "position": "5",
- "readAvg": 109.38,
- "likeAvg": 0.71
- },
- "gh_9e559b3b94ca_2": {
- "accountName": "票圈大事件",
- "ghId": "gh_9e559b3b94ca",
- "fans": 20375,
- "position": "2",
- "readAvg": 109.29,
- "likeAvg": 1.48
- },
- "gh_d5f935d0d1f2_3": {
- "accountName": "繁花史阁",
- "ghId": "gh_d5f935d0d1f2",
- "fans": 144435,
- "position": "3",
- "readAvg": 109.0,
- "likeAvg": 0.69
- },
- "gh_5e543853d8f0_4": {
- "accountName": "票圈精彩",
- "ghId": "gh_5e543853d8f0",
- "fans": 7780,
- "position": "4",
- "readAvg": 108.12,
- "likeAvg": 1.25
- },
- "gh_7b4a5f86d68c_4": {
- "accountName": "异闻趣事多",
- "ghId": "gh_7b4a5f86d68c",
- "fans": 149539,
- "position": "4",
- "readAvg": 107.45,
- "likeAvg": 0.27
- },
- "gh_3ed305b5817f_5": {
- "accountName": "看不够妙招",
- "ghId": "gh_3ed305b5817f",
- "fans": 368223,
- "position": "5",
- "readAvg": 104.0,
- "likeAvg": 0.0
- },
- "gh_d49df5e974ca_3": {
- "accountName": "生活指示录",
- "ghId": "gh_d49df5e974ca",
- "fans": 437523,
- "position": "3",
- "readAvg": 98.45,
- "likeAvg": 0.6
- },
- "gh_bfe5b705324a_3": {
- "accountName": "奇趣百味生活",
- "ghId": "gh_bfe5b705324a",
- "fans": 323615,
- "position": "3",
- "readAvg": 94.16,
- "likeAvg": 0.62
- },
- "gh_adca24a8f429_3": {
- "accountName": "史记趣言",
- "ghId": "gh_adca24a8f429",
- "fans": 126634,
- "position": "3",
- "readAvg": 94.08,
- "likeAvg": 0.81
- },
- "gh_bff0bcb0694a_3": {
- "accountName": "喜乐生活派",
- "ghId": "gh_bff0bcb0694a",
- "fans": 404179,
- "position": "3",
- "readAvg": 93.55,
- "likeAvg": 0.33
- },
- "gh_183d80deffb8_3": {
- "accountName": "生活良读",
- "ghId": "gh_183d80deffb8",
- "fans": 89392,
- "position": "3",
- "readAvg": 93.25,
- "likeAvg": 0.56
- },
- "gh_89ef4798d3ea_5": {
- "accountName": "生活百态观",
- "ghId": "gh_89ef4798d3ea",
- "fans": 835095,
- "position": "5",
- "readAvg": 93.0,
- "likeAvg": 0.43
- },
- "gh_9877c8541764_7": {
- "accountName": "退休老年圈",
- "ghId": "gh_9877c8541764",
- "fans": 803701,
- "position": "7",
- "readAvg": 92.79,
- "likeAvg": 0.29
- },
- "gh_7f5075624a50_3": {
- "accountName": "都市镜头",
- "ghId": "gh_7f5075624a50",
- "fans": 199214,
- "position": "3",
- "readAvg": 89.12,
- "likeAvg": 0.79
- },
- "gh_de9f9ebc976b_4": {
- "accountName": "妙招持家帮手",
- "ghId": "gh_de9f9ebc976b",
- "fans": 166062,
- "position": "4",
- "readAvg": 88.63,
- "likeAvg": 0.05
- },
- "gh_5ff48e9fb9ef_3": {
- "accountName": "祝福养心厅",
- "ghId": "gh_5ff48e9fb9ef",
- "fans": 147236,
- "position": "3",
- "readAvg": 87.87,
- "likeAvg": 0.28
- },
- "gh_d2cc901deca7_4": {
- "accountName": "票圈极速版",
- "ghId": "gh_d2cc901deca7",
- "fans": 203462,
- "position": "4",
- "readAvg": 87.75,
- "likeAvg": 0.79
- },
- "gh_bff0bcb0694a_5": {
- "accountName": "喜乐生活派",
- "ghId": "gh_bff0bcb0694a",
- "fans": 404179,
- "position": "5",
- "readAvg": 87.5,
- "likeAvg": 0.25
- },
- "gh_e0eb490115f5_4": {
- "accountName": "心灵情感驿站",
- "ghId": "gh_e0eb490115f5",
- "fans": 315146,
- "position": "4",
- "readAvg": 86.65,
- "likeAvg": 0.16
- },
- "gh_9877c8541764_8": {
- "accountName": "退休老年圈",
- "ghId": "gh_9877c8541764",
- "fans": 803701,
- "position": "8",
- "readAvg": 85.71,
- "likeAvg": 0.36
- },
- "gh_c5cdf60d9ab4_4": {
- "accountName": "老友快乐谈",
- "ghId": "gh_c5cdf60d9ab4",
- "fans": 512895,
- "position": "4",
- "readAvg": 85.13,
- "likeAvg": 0.32
- },
- "gh_adca24a8f429_4": {
- "accountName": "史记趣言",
- "ghId": "gh_adca24a8f429",
- "fans": 126634,
- "position": "4",
- "readAvg": 83.48,
- "likeAvg": 0.63
- },
- "gh_b15de7c99912_5": {
- "accountName": "人生百事观",
- "ghId": "gh_b15de7c99912",
- "fans": 887469,
- "position": "5",
- "readAvg": 82.09,
- "likeAvg": 0.32
- },
- "gh_080bb43aa0dc_3": {
- "accountName": "态度说",
- "ghId": "gh_080bb43aa0dc",
- "fans": 435916,
- "position": "3",
- "readAvg": 81.85,
- "likeAvg": 0.4
- },
- "gh_89ef4798d3ea_7": {
- "accountName": "生活百态观",
- "ghId": "gh_89ef4798d3ea",
- "fans": 835095,
- "position": "7",
- "readAvg": 81.63,
- "likeAvg": 0.42
- },
- "gh_5e543853d8f0_6": {
- "accountName": "票圈精彩",
- "ghId": "gh_5e543853d8f0",
- "fans": 7780,
- "position": "6",
- "readAvg": 79.86,
- "likeAvg": 1.0
- },
- "gh_3ed305b5817f_3": {
- "accountName": "看不够妙招",
- "ghId": "gh_3ed305b5817f",
- "fans": 368223,
- "position": "3",
- "readAvg": 79.68,
- "likeAvg": 0.54
- },
- "gh_9eef14ad6c16_3": {
- "accountName": "快乐精选集",
- "ghId": "gh_9eef14ad6c16",
- "fans": 515674,
- "position": "3",
- "readAvg": 79.57,
- "likeAvg": 0.69
- },
- "gh_7e5818b2dd83_3": {
- "accountName": "便捷生活好方法",
- "ghId": "gh_7e5818b2dd83",
- "fans": 437854,
- "position": "3",
- "readAvg": 78.26,
- "likeAvg": 0.41
- },
- "gh_c5cdf60d9ab4_5": {
- "accountName": "老友快乐谈",
- "ghId": "gh_c5cdf60d9ab4",
- "fans": 512895,
- "position": "5",
- "readAvg": 77.8,
- "likeAvg": 0.8
- },
- "gh_ee78360d06f5_3": {
- "accountName": "实用妙招800个",
- "ghId": "gh_ee78360d06f5",
- "fans": 120597,
- "position": "3",
- "readAvg": 77.07,
- "likeAvg": 0.4
- },
- "gh_192c9cf58b13_3": {
- "accountName": "天天学生活技巧",
- "ghId": "gh_192c9cf58b13",
- "fans": 200829,
- "position": "3",
- "readAvg": 76.53,
- "likeAvg": 0.39
- },
- "gh_dd4c857bbb36_3": {
- "accountName": "无忧自在生活",
- "ghId": "gh_dd4c857bbb36",
- "fans": 354334,
- "position": "3",
- "readAvg": 76.17,
- "likeAvg": 0.63
- },
- "gh_1d887d61088c_3": {
- "accountName": "乐享生活小窍门",
- "ghId": "gh_1d887d61088c",
- "fans": 214677,
- "position": "3",
- "readAvg": 75.03,
- "likeAvg": 0.45
- },
- "gh_f902cea89e48_3": {
- "accountName": "无忧潮生活",
- "ghId": "gh_f902cea89e48",
- "fans": 162528,
- "position": "3",
- "readAvg": 74.93,
- "likeAvg": 0.53
- },
- "gh_a2901d34f75b_4": {
- "accountName": "畅聊奇闻",
- "ghId": "gh_a2901d34f75b",
- "fans": 389185,
- "position": "4",
- "readAvg": 74.16,
- "likeAvg": 0.24
- },
- "gh_bfe5b705324a_4": {
- "accountName": "奇趣百味生活",
- "ghId": "gh_bfe5b705324a",
- "fans": 323615,
- "position": "4",
- "readAvg": 73.77,
- "likeAvg": 0.33
- },
- "gh_6d9f36e3a7be_3": {
- "accountName": "音药养心馆",
- "ghId": "gh_6d9f36e3a7be",
- "fans": 205282,
- "position": "3",
- "readAvg": 73.46,
- "likeAvg": 0.71
- },
- "gh_0c89e11f8bf3_4": {
- "accountName": "幸福启示",
- "ghId": "gh_0c89e11f8bf3",
- "fans": 486906,
- "position": "4",
- "readAvg": 73.2,
- "likeAvg": 0.35
- },
- "gh_de9f9ebc976b_3": {
- "accountName": "妙招持家帮手",
- "ghId": "gh_de9f9ebc976b",
- "fans": 166062,
- "position": "3",
- "readAvg": 71.95,
- "likeAvg": 0.32
- },
- "gh_969f5ea5fee1_3": {
- "accountName": "心海情澜起",
- "ghId": "gh_969f5ea5fee1",
- "fans": 166686,
- "position": "3",
- "readAvg": 71.83,
- "likeAvg": 0.25
- },
- "gh_5e543853d8f0_8": {
- "accountName": "票圈精彩",
- "ghId": "gh_5e543853d8f0",
- "fans": 7780,
- "position": "8",
- "readAvg": 71.43,
- "likeAvg": 1.29
- },
- "gh_e24da99dc899_6": {
- "accountName": "缘来养心厅",
- "ghId": "gh_e24da99dc899",
- "fans": 415852,
- "position": "6",
- "readAvg": 71.2,
- "likeAvg": 0.47
- },
- "gh_5e543853d8f0_7": {
- "accountName": "票圈精彩",
- "ghId": "gh_5e543853d8f0",
- "fans": 7780,
- "position": "7",
- "readAvg": 71.17,
- "likeAvg": 1.17
- },
- "gh_b15de7c99912_6": {
- "accountName": "人生百事观",
- "ghId": "gh_b15de7c99912",
- "fans": 887469,
- "position": "6",
- "readAvg": 70.68,
- "likeAvg": 0.23
- },
- "gh_0c89e11f8bf3_5": {
- "accountName": "幸福启示",
- "ghId": "gh_0c89e11f8bf3",
- "fans": 486906,
- "position": "5",
- "readAvg": 68.29,
- "likeAvg": 0.29
- },
- "gh_080bb43aa0dc_5": {
- "accountName": "态度说",
- "ghId": "gh_080bb43aa0dc",
- "fans": 435916,
- "position": "5",
- "readAvg": 67.75,
- "likeAvg": 0.25
- },
- "gh_969f5ea5fee1_4": {
- "accountName": "心海情澜起",
- "ghId": "gh_969f5ea5fee1",
- "fans": 166686,
- "position": "4",
- "readAvg": 66.83,
- "likeAvg": 0.08
- },
- "gh_bfe5b705324a_5": {
- "accountName": "奇趣百味生活",
- "ghId": "gh_bfe5b705324a",
- "fans": 323615,
- "position": "5",
- "readAvg": 66.5,
- "likeAvg": 0.0
- },
- "gh_d49df5e974ca_4": {
- "accountName": "生活指示录",
- "ghId": "gh_d49df5e974ca",
- "fans": 437523,
- "position": "4",
- "readAvg": 64.55,
- "likeAvg": 0.36
- },
- "gh_ff487cb5dab3_3": {
- "accountName": "趣味生活达人",
- "ghId": "gh_ff487cb5dab3",
- "fans": 240559,
- "position": "3",
- "readAvg": 62.76,
- "likeAvg": 0.52
- },
- "gh_89ef4798d3ea_8": {
- "accountName": "生活百态观",
- "ghId": "gh_89ef4798d3ea",
- "fans": 835095,
- "position": "8",
- "readAvg": 62.72,
- "likeAvg": 0.17
- },
- "gh_183d80deffb8_4": {
- "accountName": "生活良读",
- "ghId": "gh_183d80deffb8",
- "fans": 89392,
- "position": "4",
- "readAvg": 62.02,
- "likeAvg": 0.32
- },
- "gh_b15de7c99912_8": {
- "accountName": "人生百事观",
- "ghId": "gh_b15de7c99912",
- "fans": 887469,
- "position": "8",
- "readAvg": 61.79,
- "likeAvg": 0.21
- },
- "gh_bff0bcb0694a_4": {
- "accountName": "喜乐生活派",
- "ghId": "gh_bff0bcb0694a",
- "fans": 404179,
- "position": "4",
- "readAvg": 61.58,
- "likeAvg": 0.16
- },
- "gh_080bb43aa0dc_4": {
- "accountName": "态度说",
- "ghId": "gh_080bb43aa0dc",
- "fans": 435916,
- "position": "4",
- "readAvg": 60.3,
- "likeAvg": 0.28
- },
- "gh_9eef14ad6c16_5": {
- "accountName": "快乐精选集",
- "ghId": "gh_9eef14ad6c16",
- "fans": 515674,
- "position": "5",
- "readAvg": 59.4,
- "likeAvg": 1.0
- },
- "gh_7f5075624a50_4": {
- "accountName": "都市镜头",
- "ghId": "gh_7f5075624a50",
- "fans": 199214,
- "position": "4",
- "readAvg": 58.29,
- "likeAvg": 0.43
- },
- "gh_a2901d34f75b_6": {
- "accountName": "畅聊奇闻",
- "ghId": "gh_a2901d34f75b",
- "fans": 389185,
- "position": "6",
- "readAvg": 57.7,
- "likeAvg": 0.13
- },
- "gh_a2901d34f75b_5": {
- "accountName": "畅聊奇闻",
- "ghId": "gh_a2901d34f75b",
- "fans": 389185,
- "position": "5",
- "readAvg": 57.12,
- "likeAvg": 0.12
- },
- "gh_3ed305b5817f_4": {
- "accountName": "看不够妙招",
- "ghId": "gh_3ed305b5817f",
- "fans": 368223,
- "position": "4",
- "readAvg": 57.08,
- "likeAvg": 0.25
- },
- "gh_b15de7c99912_7": {
- "accountName": "人生百事观",
- "ghId": "gh_b15de7c99912",
- "fans": 887469,
- "position": "7",
- "readAvg": 56.53,
- "likeAvg": 0.4
- },
- "gh_192c9cf58b13_4": {
- "accountName": "天天学生活技巧",
- "ghId": "gh_192c9cf58b13",
- "fans": 200829,
- "position": "4",
- "readAvg": 56.5,
- "likeAvg": 0.1
- },
- "gh_f902cea89e48_4": {
- "accountName": "无忧潮生活",
- "ghId": "gh_f902cea89e48",
- "fans": 162528,
- "position": "4",
- "readAvg": 56.14,
- "likeAvg": 0.55
- },
- "gh_d49df5e974ca_5": {
- "accountName": "生活指示录",
- "ghId": "gh_d49df5e974ca",
- "fans": 437523,
- "position": "5",
- "readAvg": 55.9,
- "likeAvg": 0.25
- },
- "gh_b6f2c5332c72_3": {
- "accountName": "巷尾风声",
- "ghId": "gh_b6f2c5332c72",
- "fans": 109057,
- "position": "3",
- "readAvg": 55.42,
- "likeAvg": 0.33
- },
- "gh_72bace6b3059_3": {
- "accountName": "幸福妙招合集",
- "ghId": "gh_72bace6b3059",
- "fans": 425935,
- "position": "3",
- "readAvg": 55.38,
- "likeAvg": 0.62
- },
- "gh_5ff48e9fb9ef_4": {
- "accountName": "祝福养心厅",
- "ghId": "gh_5ff48e9fb9ef",
- "fans": 147236,
- "position": "4",
- "readAvg": 54.78,
- "likeAvg": 0.18
- },
- "gh_6d9f36e3a7be_4": {
- "accountName": "音药养心馆",
- "ghId": "gh_6d9f36e3a7be",
- "fans": 205282,
- "position": "4",
- "readAvg": 54.77,
- "likeAvg": 0.4
- },
- "gh_b676b7ad9b74_3": {
- "accountName": "无忧生活小妙招",
- "ghId": "gh_b676b7ad9b74",
- "fans": 215401,
- "position": "3",
- "readAvg": 51.92,
- "likeAvg": 0.23
- },
- "gh_ee78360d06f5_4": {
- "accountName": "实用妙招800个",
- "ghId": "gh_ee78360d06f5",
- "fans": 120597,
- "position": "4",
- "readAvg": 49.49,
- "likeAvg": 0.0
- },
- "gh_7e5818b2dd83_4": {
- "accountName": "便捷生活好方法",
- "ghId": "gh_7e5818b2dd83",
- "fans": 437854,
- "position": "4",
- "readAvg": 48.91,
- "likeAvg": 0.33
- },
- "gh_9f8dc5b0c74e_5": {
- "accountName": "音药金曲厅",
- "ghId": "gh_9f8dc5b0c74e",
- "fans": 162850,
- "position": "5",
- "readAvg": 46.81,
- "likeAvg": 0.5
- },
- "gh_1d887d61088c_4": {
- "accountName": "乐享生活小窍门",
- "ghId": "gh_1d887d61088c",
- "fans": 214677,
- "position": "4",
- "readAvg": 45.74,
- "likeAvg": 0.19
- },
- "gh_26a307578776_4": {
- "accountName": "票圈美文速递",
- "ghId": "gh_26a307578776",
- "fans": 18670,
- "position": "4",
- "readAvg": 45.31,
- "likeAvg": 1.56
- },
- "gh_6b7c2a257263_3": {
- "accountName": "幸福晚年知音",
- "ghId": "gh_6b7c2a257263",
- "fans": 243535,
- "position": "3",
- "readAvg": 43.49,
- "likeAvg": 0.2
- },
- "gh_4568b5a7e2fe_3": {
- "accountName": "窦都事说",
- "ghId": "gh_4568b5a7e2fe",
- "fans": 329707,
- "position": "3",
- "readAvg": 43.15,
- "likeAvg": 0.3
- },
- "gh_a2901d34f75b_8": {
- "accountName": "畅聊奇闻",
- "ghId": "gh_a2901d34f75b",
- "fans": 389185,
- "position": "8",
- "readAvg": 43.11,
- "likeAvg": 0.0
- },
- "gh_dd4c857bbb36_4": {
- "accountName": "无忧自在生活",
- "ghId": "gh_dd4c857bbb36",
- "fans": 354334,
- "position": "4",
- "readAvg": 42.88,
- "likeAvg": 0.14
- },
- "gh_29074b51f2b7_3": {
- "accountName": "老来生活家",
- "ghId": "gh_29074b51f2b7",
- "fans": 197360,
- "position": "3",
- "readAvg": 41.3,
- "likeAvg": 0.25
- },
- "gh_a2901d34f75b_7": {
- "accountName": "畅聊奇闻",
- "ghId": "gh_a2901d34f75b",
- "fans": 389185,
- "position": "7",
- "readAvg": 39.79,
- "likeAvg": 0.11
- },
- "gh_7e5818b2dd83_5": {
- "accountName": "便捷生活好方法",
- "ghId": "gh_7e5818b2dd83",
- "fans": 437854,
- "position": "5",
- "readAvg": 38.91,
- "likeAvg": 0.17
- },
- "gh_ff487cb5dab3_4": {
- "accountName": "趣味生活达人",
- "ghId": "gh_ff487cb5dab3",
- "fans": 240559,
- "position": "4",
- "readAvg": 38.21,
- "likeAvg": 0.07
- },
- "gh_9eef14ad6c16_4": {
- "accountName": "快乐精选集",
- "ghId": "gh_9eef14ad6c16",
- "fans": 515674,
- "position": "4",
- "readAvg": 36.53,
- "likeAvg": 0.09
- },
- "gh_b6f2c5332c72_4": {
- "accountName": "巷尾风声",
- "ghId": "gh_b6f2c5332c72",
- "fans": 109057,
- "position": "4",
- "readAvg": 33.64,
- "likeAvg": 0.34
- },
- "gh_f25b5fb01977_3": {
- "accountName": "生活晓常识",
- "ghId": "gh_f25b5fb01977",
- "fans": 177200,
- "position": "3",
- "readAvg": 33.23,
- "likeAvg": 0.23
- },
- "gh_72bace6b3059_5": {
- "accountName": "幸福妙招合集",
- "ghId": "gh_72bace6b3059",
- "fans": 425935,
- "position": "5",
- "readAvg": 33.17,
- "likeAvg": 0.67
- },
- "gh_b676b7ad9b74_4": {
- "accountName": "无忧生活小妙招",
- "ghId": "gh_b676b7ad9b74",
- "fans": 215401,
- "position": "4",
- "readAvg": 31.7,
- "likeAvg": 0.06
- },
- "gh_72bace6b3059_4": {
- "accountName": "幸福妙招合集",
- "ghId": "gh_72bace6b3059",
- "fans": 425935,
- "position": "4",
- "readAvg": 31.62,
- "likeAvg": 0.41
- },
- "gh_ff487cb5dab3_5": {
- "accountName": "趣味生活达人",
- "ghId": "gh_ff487cb5dab3",
- "fans": 240559,
- "position": "5",
- "readAvg": 31.5,
- "likeAvg": 0.0
- },
- "gh_7e5818b2dd83_6": {
- "accountName": "便捷生活好方法",
- "ghId": "gh_7e5818b2dd83",
- "fans": 437854,
- "position": "6",
- "readAvg": 31.43,
- "likeAvg": 0.1
- },
- "gh_1ee2e1b39ccf_1": {
- "accountName": "票圈最新消息",
- "ghId": "gh_1ee2e1b39ccf",
- "fans": 2416,
- "position": "1",
- "readAvg": 29.6,
- "likeAvg": 0.49
- },
- "gh_084a485e859a_3": {
- "accountName": "生活情感叁读",
- "ghId": "gh_084a485e859a",
- "fans": 120693,
- "position": "3",
- "readAvg": 29.25,
- "likeAvg": 0.23
- },
- "gh_e0eb490115f5_5": {
- "accountName": "心灵情感驿站",
- "ghId": "gh_e0eb490115f5",
- "fans": 315146,
- "position": "5",
- "readAvg": 28.94,
- "likeAvg": 0.06
- },
- "gh_9f8dc5b0c74e_6": {
- "accountName": "音药金曲厅",
- "ghId": "gh_9f8dc5b0c74e",
- "fans": 162850,
- "position": "6",
- "readAvg": 28.73,
- "likeAvg": 0.07
- },
- "gh_6b7c2a257263_4": {
- "accountName": "幸福晚年知音",
- "ghId": "gh_6b7c2a257263",
- "fans": 243535,
- "position": "4",
- "readAvg": 28.29,
- "likeAvg": 0.17
- },
- "gh_183d80deffb8_5": {
- "accountName": "生活良读",
- "ghId": "gh_183d80deffb8",
- "fans": 89392,
- "position": "5",
- "readAvg": 27.75,
- "likeAvg": 0.06
- },
- "gh_7e5818b2dd83_7": {
- "accountName": "便捷生活好方法",
- "ghId": "gh_7e5818b2dd83",
- "fans": 437854,
- "position": "7",
- "readAvg": 25.94,
- "likeAvg": 0.0
- },
- "gh_7e5818b2dd83_8": {
- "accountName": "便捷生活好方法",
- "ghId": "gh_7e5818b2dd83",
- "fans": 437854,
- "position": "8",
- "readAvg": 25.71,
- "likeAvg": 0.12
- },
- "gh_6d9f36e3a7be_5": {
- "accountName": "音药养心馆",
- "ghId": "gh_6d9f36e3a7be",
- "fans": 205282,
- "position": "5",
- "readAvg": 25.38,
- "likeAvg": 0.31
- },
- "gh_29074b51f2b7_4": {
- "accountName": "老来生活家",
- "ghId": "gh_29074b51f2b7",
- "fans": 197360,
- "position": "4",
- "readAvg": 25.31,
- "likeAvg": 0.12
- },
- "gh_5ff48e9fb9ef_5": {
- "accountName": "祝福养心厅",
- "ghId": "gh_5ff48e9fb9ef",
- "fans": 147236,
- "position": "5",
- "readAvg": 24.94,
- "likeAvg": 0.12
- },
- "gh_dd4c857bbb36_5": {
- "accountName": "无忧自在生活",
- "ghId": "gh_dd4c857bbb36",
- "fans": 354334,
- "position": "5",
- "readAvg": 24.0,
- "likeAvg": 0.0
- },
- "gh_1b27dd1beeca_3": {
- "accountName": "小贝生活课堂",
- "ghId": "gh_1b27dd1beeca",
- "fans": 155419,
- "position": "3",
- "readAvg": 23.84,
- "likeAvg": 0.07
- },
- "gh_1ee2e1b39ccf_2": {
- "accountName": "票圈最新消息",
- "ghId": "gh_1ee2e1b39ccf",
- "fans": 2416,
- "position": "2",
- "readAvg": 23.68,
- "likeAvg": 0.35
- },
- "gh_4568b5a7e2fe_4": {
- "accountName": "窦都事说",
- "ghId": "gh_4568b5a7e2fe",
- "fans": 329707,
- "position": "4",
- "readAvg": 22.38,
- "likeAvg": 0.08
- },
- "gh_29074b51f2b7_5": {
- "accountName": "老来生活家",
- "ghId": "gh_29074b51f2b7",
- "fans": 197360,
- "position": "5",
- "readAvg": 21.58,
- "likeAvg": 0.11
- },
- "gh_5ff48e9fb9ef_6": {
- "accountName": "祝福养心厅",
- "ghId": "gh_5ff48e9fb9ef",
- "fans": 147236,
- "position": "6",
- "readAvg": 21.44,
- "likeAvg": 0.12
- },
- "gh_f25b5fb01977_4": {
- "accountName": "生活晓常识",
- "ghId": "gh_f25b5fb01977",
- "fans": 177200,
- "position": "4",
- "readAvg": 21.27,
- "likeAvg": 0.16
- },
- "gh_084a485e859a_4": {
- "accountName": "生活情感叁读",
- "ghId": "gh_084a485e859a",
- "fans": 120693,
- "position": "4",
- "readAvg": 18.96,
- "likeAvg": 0.08
- },
- "gh_6d9f36e3a7be_6": {
- "accountName": "音药养心馆",
- "ghId": "gh_6d9f36e3a7be",
- "fans": 205282,
- "position": "6",
- "readAvg": 18.87,
- "likeAvg": 0.2
- },
- "gh_e0eb490115f5_6": {
- "accountName": "心灵情感驿站",
- "ghId": "gh_e0eb490115f5",
- "fans": 315146,
- "position": "6",
- "readAvg": 18.25,
- "likeAvg": 0.12
- },
- "gh_e75dbdc73d80_3": {
- "accountName": "票圈正能量",
- "ghId": "gh_e75dbdc73d80",
- "fans": 21179,
- "position": "3",
- "readAvg": 17.87,
- "likeAvg": 0.13
- },
- "gh_1b27dd1beeca_4": {
- "accountName": "小贝生活课堂",
- "ghId": "gh_1b27dd1beeca",
- "fans": 155419,
- "position": "4",
- "readAvg": 16.98,
- "likeAvg": 0.05
- },
- "gh_1b27dd1beeca_5": {
- "accountName": "小贝生活课堂",
- "ghId": "gh_1b27dd1beeca",
- "fans": 155419,
- "position": "5",
- "readAvg": 15.33,
- "likeAvg": 0.0
- },
- "gh_e75dbdc73d80_4": {
- "accountName": "票圈正能量",
- "ghId": "gh_e75dbdc73d80",
- "fans": 21179,
- "position": "4",
- "readAvg": 14.26,
- "likeAvg": 0.0
- },
- "gh_9e559b3b94ca_3": {
- "accountName": "票圈大事件",
- "ghId": "gh_9e559b3b94ca",
- "fans": 20375,
- "position": "3",
- "readAvg": 13.91,
- "likeAvg": 0.32
- },
- "gh_183d80deffb8_6": {
- "accountName": "生活良读",
- "ghId": "gh_183d80deffb8",
- "fans": 89392,
- "position": "6",
- "readAvg": 10.8,
- "likeAvg": 0.07
- },
- "gh_084a485e859a_5": {
- "accountName": "生活情感叁读",
- "ghId": "gh_084a485e859a",
- "fans": 120693,
- "position": "5",
- "readAvg": 9.87,
- "likeAvg": 0.13
- },
- "gh_9e559b3b94ca_4": {
- "accountName": "票圈大事件",
- "ghId": "gh_9e559b3b94ca",
- "fans": 20375,
- "position": "4",
- "readAvg": 8.38,
- "likeAvg": 0.05
- },
- "gh_084a485e859a_6": {
- "accountName": "生活情感叁读",
- "ghId": "gh_084a485e859a",
- "fans": 120693,
- "position": "6",
- "readAvg": 7.29,
- "likeAvg": 0.0
- },
- "gh_7b4a5f86d68c_5": {
- "accountName": "异闻趣事多",
- "ghId": "gh_7b4a5f86d68c",
- "fans": 149539,
- "position": "5",
- "readAvg": 0.83,
- "likeAvg": 0.0
- },
- "gh_7b4a5f86d68c_6": {
- "accountName": "异闻趣事多",
- "ghId": "gh_7b4a5f86d68c",
- "fans": 149539,
- "position": "6",
- "readAvg": 0.0,
- "likeAvg": 0.0
- }
- }
|