EventConfig.json 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646
  1. {
  2. "configList": [
  3. {
  4. "ID": 1,
  5. "EventLinksId": [
  6. 1001,
  7. 1002,
  8. 1003,
  9. 1004,
  10. 1005,
  11. 100,
  12. 102
  13. ],
  14. "EventTriggerType": 1,
  15. "EventTag": 3,
  16. "EventType": 1,
  17. "Score": 0,
  18. "EventQuality": 1,
  19. "PrizeType": [
  20. 5
  21. ],
  22. "PrizeIDs": [
  23. 999001
  24. ],
  25. "PrizeNums": [
  26. 1
  27. ],
  28. "RefreshProbability": null,
  29. "RefreshCount": null,
  30. "placeID": null,
  31. "XiantuID": 4,
  32. "EventConditionId": null,
  33. "EventCount": null,
  34. "EventName": 174,
  35. "Description": 1936
  36. },
  37. {
  38. "ID": 2,
  39. "EventLinksId": [
  40. 1010,
  41. 1011,
  42. 1012,
  43. 1013,
  44. 1014,
  45. 1015,
  46. 1016,
  47. 100,
  48. 102
  49. ],
  50. "EventTriggerType": 1,
  51. "EventTag": 3,
  52. "EventType": 1,
  53. "Score": 0,
  54. "EventQuality": 1,
  55. "PrizeType": [
  56. 6
  57. ],
  58. "PrizeIDs": [
  59. 999002
  60. ],
  61. "PrizeNums": [
  62. 1
  63. ],
  64. "RefreshProbability": null,
  65. "RefreshCount": null,
  66. "placeID": null,
  67. "XiantuID": 4,
  68. "EventConditionId": null,
  69. "EventCount": null,
  70. "EventName": 175,
  71. "Description": 1937
  72. },
  73. {
  74. "ID": 4,
  75. "EventLinksId": [
  76. 1030,
  77. 100,
  78. 102
  79. ],
  80. "EventTriggerType": 1,
  81. "EventTag": 3,
  82. "EventType": 2,
  83. "Score": 0,
  84. "EventQuality": 1,
  85. "PrizeType": [
  86. 1
  87. ],
  88. "PrizeIDs": [
  89. 1001
  90. ],
  91. "PrizeNums": [
  92. 100
  93. ],
  94. "RefreshProbability": null,
  95. "RefreshCount": null,
  96. "placeID": null,
  97. "XiantuID": 3,
  98. "EventConditionId": null,
  99. "EventCount": null,
  100. "EventName": 217,
  101. "Description": 1939
  102. },
  103. {
  104. "ID": 5,
  105. "EventLinksId": [
  106. 1040,
  107. 100,
  108. 102
  109. ],
  110. "EventTriggerType": 1,
  111. "EventTag": 3,
  112. "EventType": 2,
  113. "Score": 0,
  114. "EventQuality": 1,
  115. "PrizeType": [
  116. 2
  117. ],
  118. "PrizeIDs": [
  119. 1003
  120. ],
  121. "PrizeNums": [
  122. 100
  123. ],
  124. "RefreshProbability": null,
  125. "RefreshCount": null,
  126. "placeID": null,
  127. "XiantuID": 3,
  128. "EventConditionId": null,
  129. "EventCount": null,
  130. "EventName": 218,
  131. "Description": 1940
  132. },
  133. {
  134. "ID": 6,
  135. "EventLinksId": [
  136. 1050,
  137. 100,
  138. 102
  139. ],
  140. "EventTriggerType": 1,
  141. "EventTag": 3,
  142. "EventType": 2,
  143. "Score": 0,
  144. "EventQuality": 1,
  145. "PrizeType": [
  146. 3
  147. ],
  148. "PrizeIDs": [
  149. 1005
  150. ],
  151. "PrizeNums": [
  152. 100
  153. ],
  154. "RefreshProbability": null,
  155. "RefreshCount": null,
  156. "placeID": null,
  157. "XiantuID": 3,
  158. "EventConditionId": null,
  159. "EventCount": null,
  160. "EventName": 219,
  161. "Description": 1941
  162. },
  163. {
  164. "ID": 7,
  165. "EventLinksId": [
  166. 1060,
  167. 100,
  168. 102
  169. ],
  170. "EventTriggerType": 1,
  171. "EventTag": 3,
  172. "EventType": 2,
  173. "Score": 0,
  174. "EventQuality": 1,
  175. "PrizeType": [
  176. 4
  177. ],
  178. "PrizeIDs": [
  179. 1006
  180. ],
  181. "PrizeNums": [
  182. 100
  183. ],
  184. "RefreshProbability": null,
  185. "RefreshCount": null,
  186. "placeID": null,
  187. "XiantuID": 3,
  188. "EventConditionId": null,
  189. "EventCount": null,
  190. "EventName": 220,
  191. "Description": 1942
  192. },
  193. {
  194. "ID": 1011,
  195. "EventLinksId": [
  196. 101101,
  197. 100,
  198. 102
  199. ],
  200. "EventTriggerType": 1,
  201. "EventTag": 7,
  202. "EventType": 1,
  203. "Score": 0,
  204. "EventQuality": 1,
  205. "PrizeType": [
  206. 7
  207. ],
  208. "PrizeIDs": [
  209. 1401
  210. ],
  211. "PrizeNums": [
  212. 1
  213. ],
  214. "RefreshProbability": null,
  215. "RefreshCount": null,
  216. "placeID": null,
  217. "XiantuID": null,
  218. "EventConditionId": null,
  219. "EventCount": null,
  220. "EventName": 3017,
  221. "Description": 3018
  222. },
  223. {
  224. "ID": 1012,
  225. "EventLinksId": [
  226. 101201,
  227. 100,
  228. 102
  229. ],
  230. "EventTriggerType": 1,
  231. "EventTag": 7,
  232. "EventType": 1,
  233. "Score": 0,
  234. "EventQuality": 3,
  235. "PrizeType": [
  236. 7
  237. ],
  238. "PrizeIDs": [
  239. 1402
  240. ],
  241. "PrizeNums": [
  242. 1
  243. ],
  244. "RefreshProbability": null,
  245. "RefreshCount": null,
  246. "placeID": null,
  247. "XiantuID": null,
  248. "EventConditionId": null,
  249. "EventCount": null,
  250. "EventName": 3038,
  251. "Description": 3039
  252. },
  253. {
  254. "ID": 1013,
  255. "EventLinksId": [
  256. 101301,
  257. 100,
  258. 102
  259. ],
  260. "EventTriggerType": 1,
  261. "EventTag": 7,
  262. "EventType": 1,
  263. "Score": 0,
  264. "EventQuality": 3,
  265. "PrizeType": [
  266. 7
  267. ],
  268. "PrizeIDs": [
  269. 1403
  270. ],
  271. "PrizeNums": [
  272. 1
  273. ],
  274. "RefreshProbability": null,
  275. "RefreshCount": null,
  276. "placeID": null,
  277. "XiantuID": null,
  278. "EventConditionId": null,
  279. "EventCount": null,
  280. "EventName": 3040,
  281. "Description": 3041
  282. },
  283. {
  284. "ID": 1014,
  285. "EventLinksId": [
  286. 101401,
  287. 100,
  288. 102
  289. ],
  290. "EventTriggerType": 1,
  291. "EventTag": 7,
  292. "EventType": 1,
  293. "Score": 0,
  294. "EventQuality": 3,
  295. "PrizeType": [
  296. 7
  297. ],
  298. "PrizeIDs": [
  299. 1404
  300. ],
  301. "PrizeNums": [
  302. 1
  303. ],
  304. "RefreshProbability": null,
  305. "RefreshCount": null,
  306. "placeID": null,
  307. "XiantuID": null,
  308. "EventConditionId": null,
  309. "EventCount": null,
  310. "EventName": 3042,
  311. "Description": 3043
  312. },
  313. {
  314. "ID": 1015,
  315. "EventLinksId": [
  316. 101501,
  317. 101502,
  318. 100,
  319. 102
  320. ],
  321. "EventTriggerType": 1,
  322. "EventTag": 7,
  323. "EventType": 1,
  324. "Score": 0,
  325. "EventQuality": 1,
  326. "PrizeType": [
  327. 8
  328. ],
  329. "PrizeIDs": [
  330. 1301
  331. ],
  332. "PrizeNums": [
  333. 1
  334. ],
  335. "RefreshProbability": null,
  336. "RefreshCount": null,
  337. "placeID": null,
  338. "XiantuID": null,
  339. "EventConditionId": null,
  340. "EventCount": null,
  341. "EventName": 3046,
  342. "Description": 3047
  343. },
  344. {
  345. "ID": 1016,
  346. "EventLinksId": [
  347. 101601,
  348. 101602,
  349. 100,
  350. 102
  351. ],
  352. "EventTriggerType": 1,
  353. "EventTag": 7,
  354. "EventType": 1,
  355. "Score": 0,
  356. "EventQuality": 1,
  357. "PrizeType": [
  358. 8
  359. ],
  360. "PrizeIDs": [
  361. 1302
  362. ],
  363. "PrizeNums": [
  364. 1
  365. ],
  366. "RefreshProbability": null,
  367. "RefreshCount": null,
  368. "placeID": null,
  369. "XiantuID": null,
  370. "EventConditionId": null,
  371. "EventCount": null,
  372. "EventName": 3048,
  373. "Description": 3049
  374. },
  375. {
  376. "ID": 1017,
  377. "EventLinksId": [
  378. 101701,
  379. 100,
  380. 102
  381. ],
  382. "EventTriggerType": 1,
  383. "EventTag": 7,
  384. "EventType": 1,
  385. "Score": 0,
  386. "EventQuality": 1,
  387. "PrizeType": [
  388. 8
  389. ],
  390. "PrizeIDs": [
  391. 1303
  392. ],
  393. "PrizeNums": [
  394. 1
  395. ],
  396. "RefreshProbability": null,
  397. "RefreshCount": null,
  398. "placeID": null,
  399. "XiantuID": null,
  400. "EventConditionId": 10,
  401. "EventValue": [
  402. 30009
  403. ],
  404. "EventCount": null,
  405. "EventName": 3048,
  406. "Description": 3050
  407. },
  408. {
  409. "ID": 1018,
  410. "EventLinksId": [
  411. 101801,
  412. 101802,
  413. 101803,
  414. 101804,
  415. 100,
  416. 102
  417. ],
  418. "EventTriggerType": 1,
  419. "EventTag": 7,
  420. "EventType": 1,
  421. "Score": 0,
  422. "EventQuality": 1,
  423. "PrizeType": [
  424. 8
  425. ],
  426. "PrizeIDs": [
  427. 1304
  428. ],
  429. "PrizeNums": [
  430. 1
  431. ],
  432. "RefreshProbability": null,
  433. "RefreshCount": null,
  434. "placeID": null,
  435. "XiantuID": null,
  436. "EventConditionId": null,
  437. "EventCount": null,
  438. "EventName": 3051,
  439. "Description": 3052
  440. },
  441. {
  442. "ID": 1019,
  443. "EventLinksId": [
  444. 101901,
  445. 101902,
  446. 101903,
  447. 100,
  448. 102
  449. ],
  450. "EventTriggerType": 1,
  451. "EventTag": 7,
  452. "EventType": 1,
  453. "Score": 0,
  454. "EventQuality": 1,
  455. "PrizeType": [
  456. 9
  457. ],
  458. "PrizeIDs": [
  459. 1201
  460. ],
  461. "PrizeNums": [
  462. 1
  463. ],
  464. "RefreshProbability": null,
  465. "RefreshCount": null,
  466. "placeID": null,
  467. "XiantuID": null,
  468. "EventConditionId": null,
  469. "EventCount": null,
  470. "EventName": 3053,
  471. "Description": 3054
  472. },
  473. {
  474. "ID": 1020,
  475. "EventLinksId": [
  476. 102001,
  477. 102002,
  478. 100,
  479. 102
  480. ],
  481. "EventTriggerType": 1,
  482. "EventTag": 7,
  483. "EventType": 1,
  484. "Score": 0,
  485. "EventQuality": 1,
  486. "PrizeType": [
  487. 9
  488. ],
  489. "PrizeIDs": [
  490. 1204
  491. ],
  492. "PrizeNums": [
  493. 1
  494. ],
  495. "RefreshProbability": null,
  496. "RefreshCount": null,
  497. "placeID": null,
  498. "XiantuID": null,
  499. "EventConditionId": null,
  500. "EventCount": null,
  501. "EventName": 3055,
  502. "Description": 3056
  503. },
  504. {
  505. "ID": 1021,
  506. "EventLinksId": [
  507. 102101,
  508. 102102,
  509. 102103,
  510. 100,
  511. 102
  512. ],
  513. "EventTriggerType": 1,
  514. "EventTag": 7,
  515. "EventType": 1,
  516. "Score": 0,
  517. "EventQuality": 1,
  518. "PrizeType": [
  519. 9
  520. ],
  521. "PrizeIDs": [
  522. 1207
  523. ],
  524. "PrizeNums": [
  525. 1
  526. ],
  527. "RefreshProbability": null,
  528. "RefreshCount": null,
  529. "placeID": null,
  530. "XiantuID": null,
  531. "EventConditionId": null,
  532. "EventCount": null,
  533. "EventName": 3057,
  534. "Description": 3058
  535. },
  536. {
  537. "ID": 1022,
  538. "EventLinksId": [
  539. 102201,
  540. 102202,
  541. 102203,
  542. 102204,
  543. 102205,
  544. 102206,
  545. 102207,
  546. 100,
  547. 102
  548. ],
  549. "EventTriggerType": 1,
  550. "EventTag": 7,
  551. "EventType": 1,
  552. "Score": 0,
  553. "EventQuality": 1,
  554. "PrizeType": [
  555. 10
  556. ],
  557. "PrizeIDs": [
  558. 1501
  559. ],
  560. "PrizeNums": [
  561. 1
  562. ],
  563. "RefreshProbability": null,
  564. "RefreshCount": null,
  565. "placeID": null,
  566. "XiantuID": null,
  567. "EventConditionId": null,
  568. "EventCount": null,
  569. "EventName": 3059,
  570. "Description": 3060
  571. },
  572. {
  573. "ID": 1023,
  574. "EventLinksId": [
  575. 102301,
  576. 102302,
  577. 102303,
  578. 100,
  579. 102
  580. ],
  581. "EventTriggerType": 1,
  582. "EventTag": 7,
  583. "EventType": 1,
  584. "Score": 0,
  585. "EventQuality": 1,
  586. "PrizeType": [
  587. 10
  588. ],
  589. "PrizeIDs": [
  590. 1502
  591. ],
  592. "PrizeNums": [
  593. 1
  594. ],
  595. "RefreshProbability": null,
  596. "RefreshCount": null,
  597. "placeID": null,
  598. "XiantuID": null,
  599. "EventConditionId": null,
  600. "EventCount": null,
  601. "EventName": 3061,
  602. "Description": 3062
  603. },
  604. {
  605. "ID": 1024,
  606. "EventLinksId": [
  607. 102401,
  608. 102402,
  609. 102403,
  610. 100,
  611. 102
  612. ],
  613. "EventTriggerType": 1,
  614. "EventTag": 7,
  615. "EventType": 1,
  616. "Score": 0,
  617. "EventQuality": 1,
  618. "PrizeType": [
  619. 11
  620. ],
  621. "PrizeIDs": [
  622. 1601
  623. ],
  624. "PrizeNums": [
  625. 1
  626. ],
  627. "RefreshProbability": null,
  628. "RefreshCount": null,
  629. "placeID": null,
  630. "XiantuID": null,
  631. "EventConditionId": null,
  632. "EventCount": null,
  633. "EventName": 3063,
  634. "Description": 3064
  635. },
  636. {
  637. "ID": 1025,
  638. "EventLinksId": [
  639. 102501,
  640. 102502,
  641. 102503,
  642. 100,
  643. 102
  644. ],
  645. "EventTriggerType": 1,
  646. "EventTag": 7,
  647. "EventType": 1,
  648. "Score": 0,
  649. "EventQuality": 1,
  650. "PrizeType": [
  651. 1
  652. ],
  653. "PrizeIDs": [
  654. 1001
  655. ],
  656. "PrizeNums": [
  657. 100
  658. ],
  659. "RefreshProbability": null,
  660. "RefreshCount": null,
  661. "placeID": null,
  662. "XiantuID": null,
  663. "EventConditionId": null,
  664. "EventCount": null,
  665. "EventName": 3065,
  666. "Description": 3066
  667. },
  668. {
  669. "ID": 1026,
  670. "EventLinksId": [
  671. 102601,
  672. 102602,
  673. 100,
  674. 102
  675. ],
  676. "EventTriggerType": 1,
  677. "EventTag": 7,
  678. "EventType": 1,
  679. "Score": 0,
  680. "EventQuality": 1,
  681. "PrizeType": [
  682. 2
  683. ],
  684. "PrizeIDs": [
  685. 1003
  686. ],
  687. "PrizeNums": [
  688. 100
  689. ],
  690. "RefreshProbability": null,
  691. "RefreshCount": null,
  692. "placeID": null,
  693. "XiantuID": null,
  694. "EventConditionId": null,
  695. "EventCount": null,
  696. "EventName": 3067,
  697. "Description": 3068
  698. },
  699. {
  700. "ID": 1027,
  701. "EventLinksId": [
  702. 102701,
  703. 102702,
  704. 100,
  705. 102
  706. ],
  707. "EventTriggerType": 1,
  708. "EventTag": 7,
  709. "EventType": 1,
  710. "Score": 0,
  711. "EventQuality": 1,
  712. "PrizeType": [
  713. 3
  714. ],
  715. "PrizeIDs": [
  716. 1005
  717. ],
  718. "PrizeNums": [
  719. 100
  720. ],
  721. "RefreshProbability": null,
  722. "RefreshCount": null,
  723. "placeID": null,
  724. "XiantuID": null,
  725. "EventConditionId": null,
  726. "EventCount": null,
  727. "EventName": 3069,
  728. "Description": 3070
  729. },
  730. {
  731. "ID": 1028,
  732. "EventLinksId": [
  733. 102801,
  734. 102802,
  735. 102803,
  736. 102804,
  737. 102805,
  738. 100,
  739. 102
  740. ],
  741. "EventTriggerType": 1,
  742. "EventTag": 7,
  743. "EventType": 1,
  744. "Score": 0,
  745. "EventQuality": 1,
  746. "PrizeType": [
  747. 4
  748. ],
  749. "PrizeIDs": [
  750. 1006
  751. ],
  752. "PrizeNums": [
  753. 100
  754. ],
  755. "RefreshProbability": null,
  756. "RefreshCount": null,
  757. "placeID": null,
  758. "XiantuID": null,
  759. "EventConditionId": null,
  760. "EventCount": null,
  761. "EventName": 3071,
  762. "Description": 3072
  763. },
  764. {
  765. "ID": 1029,
  766. "EventLinksId": [
  767. 102901,
  768. 102902,
  769. 102903,
  770. 102904,
  771. 102905,
  772. 102906,
  773. 102907,
  774. 102908,
  775. 100,
  776. 102
  777. ],
  778. "EventTriggerType": 1,
  779. "EventTag": 7,
  780. "EventType": 1,
  781. "Score": 0,
  782. "EventQuality": 1,
  783. "PrizeType": [
  784. 7
  785. ],
  786. "PrizeIDs": [
  787. 1401
  788. ],
  789. "PrizeNums": [
  790. 1
  791. ],
  792. "RefreshProbability": null,
  793. "RefreshCount": null,
  794. "placeID": null,
  795. "XiantuID": null,
  796. "EventConditionId": null,
  797. "EventCount": null,
  798. "EventName": 3073,
  799. "Description": 3074
  800. },
  801. {
  802. "ID": 1030,
  803. "EventLinksId": [
  804. 103001,
  805. 103002,
  806. 103003,
  807. 103004,
  808. 103005,
  809. 103006,
  810. 103007,
  811. 100,
  812. 102
  813. ],
  814. "EventTriggerType": 1,
  815. "EventTag": 7,
  816. "EventType": 1,
  817. "Score": 0,
  818. "EventQuality": 1,
  819. "PrizeType": [
  820. 8
  821. ],
  822. "PrizeIDs": [
  823. 1301
  824. ],
  825. "PrizeNums": [
  826. 1
  827. ],
  828. "RefreshProbability": null,
  829. "RefreshCount": null,
  830. "placeID": null,
  831. "XiantuID": null,
  832. "EventConditionId": null,
  833. "EventCount": null,
  834. "EventName": 3075,
  835. "Description": 3076
  836. },
  837. {
  838. "ID": 1031,
  839. "EventLinksId": [
  840. 103101,
  841. 103102,
  842. 103103,
  843. 103104,
  844. 103105,
  845. 100,
  846. 102
  847. ],
  848. "EventTriggerType": 1,
  849. "EventTag": 7,
  850. "EventType": 1,
  851. "Score": 0,
  852. "EventQuality": 1,
  853. "PrizeType": [
  854. 9
  855. ],
  856. "PrizeIDs": [
  857. 1201
  858. ],
  859. "PrizeNums": [
  860. 1
  861. ],
  862. "RefreshProbability": null,
  863. "RefreshCount": null,
  864. "placeID": null,
  865. "XiantuID": null,
  866. "EventConditionId": null,
  867. "EventCount": null,
  868. "EventName": 3077,
  869. "Description": 3074
  870. },
  871. {
  872. "ID": 11,
  873. "EventLinksId": [
  874. 1101,
  875. 1102,
  876. 1103,
  877. 100,
  878. 102
  879. ],
  880. "EventTriggerType": 2,
  881. "EventTag": 3,
  882. "EventType": 1,
  883. "Score": 0,
  884. "EventQuality": 1,
  885. "PrizeIDs": [
  886. 1003
  887. ],
  888. "PrizeNums": [
  889. -100
  890. ],
  891. "RefreshProbability": 950,
  892. "RefreshCount": null,
  893. "placeID": null,
  894. "XiantuID": null,
  895. "EventConditionId": null,
  896. "EventCount": null,
  897. "EventName": null,
  898. "Description": null
  899. },
  900. {
  901. "ID": 12,
  902. "EventLinksId": [
  903. 1201,
  904. 1202,
  905. 1203,
  906. 100,
  907. 102
  908. ],
  909. "EventTriggerType": 2,
  910. "EventTag": 3,
  911. "EventType": 1,
  912. "Score": 0,
  913. "EventQuality": 1,
  914. "PrizeIDs": [
  915. 1005
  916. ],
  917. "PrizeNums": [
  918. -100
  919. ],
  920. "RefreshProbability": 950,
  921. "RefreshCount": null,
  922. "placeID": null,
  923. "XiantuID": null,
  924. "EventConditionId": null,
  925. "EventCount": null,
  926. "EventName": null,
  927. "Description": null
  928. },
  929. {
  930. "ID": 13,
  931. "EventLinksId": [
  932. 1301,
  933. 1302,
  934. 1303,
  935. 1304,
  936. 100,
  937. 102
  938. ],
  939. "EventTriggerType": 2,
  940. "EventTag": 3,
  941. "EventType": 1,
  942. "Score": 0,
  943. "EventQuality": 1,
  944. "PrizeIDs": [
  945. 1006
  946. ],
  947. "PrizeNums": [
  948. -100
  949. ],
  950. "RefreshProbability": 950,
  951. "RefreshCount": null,
  952. "placeID": null,
  953. "XiantuID": null,
  954. "EventConditionId": null,
  955. "EventCount": null,
  956. "EventName": null,
  957. "Description": null
  958. },
  959. {
  960. "ID": 14,
  961. "EventLinksId": [
  962. 1401,
  963. 1402,
  964. 1403,
  965. 100,
  966. 102
  967. ],
  968. "EventTriggerType": 2,
  969. "EventTag": 3,
  970. "EventType": 1,
  971. "Score": 0,
  972. "EventQuality": 1,
  973. "PrizeIDs": [
  974. 1001
  975. ],
  976. "PrizeNums": [
  977. -100
  978. ],
  979. "RefreshProbability": 950,
  980. "RefreshCount": null,
  981. "placeID": null,
  982. "XiantuID": null,
  983. "EventConditionId": null,
  984. "EventCount": null,
  985. "EventName": null,
  986. "Description": null
  987. },
  988. {
  989. "ID": 15,
  990. "EventLinksId": [
  991. 1501,
  992. 1502,
  993. 1503,
  994. 1504,
  995. 100,
  996. 102
  997. ],
  998. "EventTriggerType": 2,
  999. "EventTag": 3,
  1000. "EventType": 1,
  1001. "Score": 0,
  1002. "EventQuality": 1,
  1003. "PrizeIDs": [
  1004. 1701
  1005. ],
  1006. "PrizeNums": [
  1007. 1
  1008. ],
  1009. "RefreshProbability": 100,
  1010. "RefreshCount": null,
  1011. "placeID": null,
  1012. "XiantuID": null,
  1013. "EventConditionId": null,
  1014. "EventCount": null,
  1015. "EventName": null,
  1016. "Description": null
  1017. },
  1018. {
  1019. "ID": 16,
  1020. "EventLinksId": [
  1021. 1601,
  1022. 1602,
  1023. 1603,
  1024. 100,
  1025. 102
  1026. ],
  1027. "EventTriggerType": 2,
  1028. "EventTag": 3,
  1029. "EventType": 1,
  1030. "Score": 0,
  1031. "EventQuality": 1,
  1032. "PrizeIDs": [
  1033. 1002
  1034. ],
  1035. "PrizeNums": [
  1036. 10
  1037. ],
  1038. "RefreshProbability": 100,
  1039. "RefreshCount": null,
  1040. "placeID": null,
  1041. "XiantuID": null,
  1042. "EventConditionId": null,
  1043. "EventCount": null,
  1044. "EventName": null,
  1045. "Description": null
  1046. },
  1047. {
  1048. "ID": 10001,
  1049. "EventLinksId": [
  1050. 1000101,
  1051. 1000102,
  1052. 1000103,
  1053. 1000104,
  1054. 102
  1055. ],
  1056. "EventTriggerType": 4,
  1057. "EventTag": 1,
  1058. "EventType": 1,
  1059. "Score": 10,
  1060. "EventQuality": 1,
  1061. "PrizeIDs": [
  1062. 1001
  1063. ],
  1064. "PrizeNums": [
  1065. 10
  1066. ],
  1067. "RefreshProbability": null,
  1068. "RefreshCount": null,
  1069. "placeID": 1,
  1070. "XiantuID": 1,
  1071. "EventConditionId": null,
  1072. "EventCount": null,
  1073. "EventName": 1906,
  1074. "Description": 1914
  1075. },
  1076. {
  1077. "ID": 10002,
  1078. "EventLinksId": [
  1079. 1000201,
  1080. 1000202,
  1081. 1000203,
  1082. 102
  1083. ],
  1084. "EventTriggerType": 4,
  1085. "EventTag": 1,
  1086. "EventType": 1,
  1087. "Score": 10,
  1088. "EventQuality": 1,
  1089. "PrizeIDs": [
  1090. 1001
  1091. ],
  1092. "PrizeNums": [
  1093. 10
  1094. ],
  1095. "RefreshProbability": null,
  1096. "RefreshCount": null,
  1097. "placeID": 1,
  1098. "XiantuID": 1,
  1099. "EventConditionId": null,
  1100. "EventCount": null,
  1101. "EventName": 1907,
  1102. "Description": 1915
  1103. },
  1104. {
  1105. "ID": 10003,
  1106. "EventLinksId": [
  1107. 1000301,
  1108. 1000302,
  1109. 1000303,
  1110. 1000304,
  1111. 1000305,
  1112. 1000306,
  1113. 1000307,
  1114. 1000308,
  1115. 1000309,
  1116. 102
  1117. ],
  1118. "EventTriggerType": 4,
  1119. "EventTag": 1,
  1120. "EventType": 1,
  1121. "Score": 10,
  1122. "EventQuality": 1,
  1123. "PrizeIDs": [
  1124. 1001
  1125. ],
  1126. "PrizeNums": [
  1127. 10
  1128. ],
  1129. "RefreshProbability": null,
  1130. "RefreshCount": null,
  1131. "placeID": 1,
  1132. "XiantuID": 1,
  1133. "EventConditionId": null,
  1134. "EventCount": null,
  1135. "EventName": 1908,
  1136. "Description": 1916
  1137. },
  1138. {
  1139. "ID": 10004,
  1140. "EventLinksId": [
  1141. 1000401,
  1142. 1000402,
  1143. 1000403,
  1144. 1000404,
  1145. 102
  1146. ],
  1147. "EventTriggerType": 4,
  1148. "EventTag": 1,
  1149. "EventType": 1,
  1150. "Score": 10,
  1151. "EventQuality": 1,
  1152. "PrizeIDs": [
  1153. 1001
  1154. ],
  1155. "PrizeNums": [
  1156. 10
  1157. ],
  1158. "RefreshProbability": null,
  1159. "RefreshCount": null,
  1160. "placeID": 1,
  1161. "XiantuID": 1,
  1162. "EventConditionId": null,
  1163. "EventCount": null,
  1164. "EventName": 1909,
  1165. "Description": 1917
  1166. },
  1167. {
  1168. "ID": 10005,
  1169. "EventLinksId": [
  1170. 1000501,
  1171. 1000502,
  1172. 1000503,
  1173. 1000504,
  1174. 1000505,
  1175. 1000506,
  1176. 1000507,
  1177. 1000508,
  1178. 1000509,
  1179. 1000510,
  1180. 1000511,
  1181. 1000512,
  1182. 1000513,
  1183. 1000514,
  1184. 102
  1185. ],
  1186. "EventTriggerType": 4,
  1187. "EventTag": 1,
  1188. "EventType": 1,
  1189. "Score": 10,
  1190. "EventQuality": 1,
  1191. "PrizeIDs": [
  1192. 1001
  1193. ],
  1194. "PrizeNums": [
  1195. 10
  1196. ],
  1197. "RefreshProbability": null,
  1198. "RefreshCount": null,
  1199. "placeID": 1,
  1200. "XiantuID": 1,
  1201. "EventConditionId": null,
  1202. "EventCount": null,
  1203. "EventName": 2135,
  1204. "Description": 2137
  1205. },
  1206. {
  1207. "ID": 10006,
  1208. "EventLinksId": [
  1209. 1000601,
  1210. 1000602,
  1211. 1000603,
  1212. 1000604,
  1213. 1000605,
  1214. 1000606,
  1215. 102
  1216. ],
  1217. "EventTriggerType": 4,
  1218. "EventTag": 1,
  1219. "EventType": 1,
  1220. "Score": 10,
  1221. "EventQuality": 1,
  1222. "PrizeIDs": [
  1223. 1001
  1224. ],
  1225. "PrizeNums": [
  1226. 10
  1227. ],
  1228. "RefreshProbability": null,
  1229. "RefreshCount": null,
  1230. "placeID": 1,
  1231. "XiantuID": 1,
  1232. "EventConditionId": null,
  1233. "EventCount": null,
  1234. "EventName": 2136,
  1235. "Description": 2138
  1236. },
  1237. {
  1238. "ID": 10007,
  1239. "EventLinksId": [
  1240. 1000701,
  1241. 1000702,
  1242. 1000703,
  1243. 1000704,
  1244. 1000705,
  1245. 102
  1246. ],
  1247. "EventTriggerType": 4,
  1248. "EventTag": 1,
  1249. "EventType": 1,
  1250. "Score": 10,
  1251. "EventQuality": 1,
  1252. "PrizeIDs": [
  1253. 1001
  1254. ],
  1255. "PrizeNums": [
  1256. 10
  1257. ],
  1258. "RefreshProbability": null,
  1259. "RefreshCount": null,
  1260. "placeID": 1,
  1261. "XiantuID": 1,
  1262. "EventConditionId": null,
  1263. "EventCount": null,
  1264. "EventName": 2801,
  1265. "Description": 2822
  1266. },
  1267. {
  1268. "ID": 10008,
  1269. "EventLinksId": [
  1270. 1000801,
  1271. 1000802,
  1272. 1000803,
  1273. 1000804,
  1274. 1000805,
  1275. 1000806,
  1276. 1000807,
  1277. 1000808,
  1278. 1000809,
  1279. 1000810,
  1280. 1000811,
  1281. 1000812,
  1282. 1000813,
  1283. 1000814,
  1284. 102
  1285. ],
  1286. "EventTriggerType": 4,
  1287. "EventTag": 1,
  1288. "EventType": 1,
  1289. "Score": 10,
  1290. "EventQuality": 1,
  1291. "PrizeIDs": [
  1292. 1001
  1293. ],
  1294. "PrizeNums": [
  1295. 10
  1296. ],
  1297. "RefreshProbability": null,
  1298. "RefreshCount": null,
  1299. "placeID": 1,
  1300. "XiantuID": 1,
  1301. "EventConditionId": null,
  1302. "EventCount": null,
  1303. "EventName": 2802,
  1304. "Description": 2823
  1305. },
  1306. {
  1307. "ID": 10009,
  1308. "EventLinksId": [
  1309. 1000901,
  1310. 1000902,
  1311. 1000903,
  1312. 102
  1313. ],
  1314. "EventTriggerType": 4,
  1315. "EventTag": 1,
  1316. "EventType": 1,
  1317. "Score": 10,
  1318. "EventQuality": 1,
  1319. "PrizeIDs": [
  1320. 1001
  1321. ],
  1322. "PrizeNums": [
  1323. 10
  1324. ],
  1325. "RefreshProbability": null,
  1326. "RefreshCount": null,
  1327. "placeID": 1,
  1328. "XiantuID": 1,
  1329. "EventConditionId": null,
  1330. "EventCount": null,
  1331. "EventName": 2803,
  1332. "Description": 2824
  1333. },
  1334. {
  1335. "ID": 10010,
  1336. "EventLinksId": [
  1337. 1001001,
  1338. 102
  1339. ],
  1340. "EventTriggerType": 4,
  1341. "EventTag": 1,
  1342. "EventType": 1,
  1343. "Score": 10,
  1344. "EventQuality": 1,
  1345. "PrizeIDs": [
  1346. 1001
  1347. ],
  1348. "PrizeNums": [
  1349. 10
  1350. ],
  1351. "RefreshProbability": null,
  1352. "RefreshCount": null,
  1353. "placeID": 1,
  1354. "XiantuID": 1,
  1355. "EventConditionId": null,
  1356. "EventCount": null,
  1357. "EventName": 2804,
  1358. "Description": 2825
  1359. },
  1360. {
  1361. "ID": 10011,
  1362. "EventLinksId": [
  1363. 1001101,
  1364. 102
  1365. ],
  1366. "EventTriggerType": 4,
  1367. "EventTag": 1,
  1368. "EventType": 1,
  1369. "Score": 10,
  1370. "EventQuality": 1,
  1371. "PrizeIDs": [
  1372. 1001
  1373. ],
  1374. "PrizeNums": [
  1375. 10
  1376. ],
  1377. "RefreshProbability": null,
  1378. "RefreshCount": null,
  1379. "placeID": 1,
  1380. "XiantuID": 1,
  1381. "EventConditionId": null,
  1382. "EventCount": null,
  1383. "EventName": 2805,
  1384. "Description": 2826
  1385. },
  1386. {
  1387. "ID": 10012,
  1388. "EventLinksId": [
  1389. 1001201,
  1390. 1001202,
  1391. 1001203,
  1392. 1001204,
  1393. 1001205,
  1394. 1001206,
  1395. 1001207,
  1396. 1001208,
  1397. 1001209,
  1398. 1001210,
  1399. 1001211,
  1400. 1001212,
  1401. 102
  1402. ],
  1403. "EventTriggerType": 4,
  1404. "EventTag": 1,
  1405. "EventType": 1,
  1406. "Score": 10,
  1407. "EventQuality": 1,
  1408. "PrizeIDs": [
  1409. 1001
  1410. ],
  1411. "PrizeNums": [
  1412. 10
  1413. ],
  1414. "RefreshProbability": null,
  1415. "RefreshCount": null,
  1416. "placeID": 2,
  1417. "XiantuID": 1,
  1418. "EventConditionId": null,
  1419. "EventCount": null,
  1420. "EventName": 2806,
  1421. "Description": 2827
  1422. },
  1423. {
  1424. "ID": 10013,
  1425. "EventLinksId": [
  1426. 1001301,
  1427. 1001302,
  1428. 1001303,
  1429. 1001304,
  1430. 1001305,
  1431. 1001306,
  1432. 1001307,
  1433. 1001308,
  1434. 1001309,
  1435. 1001310,
  1436. 1001311,
  1437. 1001312,
  1438. 1001313,
  1439. 1001314,
  1440. 1001315,
  1441. 1001316,
  1442. 102
  1443. ],
  1444. "EventTriggerType": 4,
  1445. "EventTag": 1,
  1446. "EventType": 1,
  1447. "Score": 10,
  1448. "EventQuality": 1,
  1449. "PrizeIDs": [
  1450. 1001
  1451. ],
  1452. "PrizeNums": [
  1453. 10
  1454. ],
  1455. "RefreshProbability": null,
  1456. "RefreshCount": null,
  1457. "placeID": 2,
  1458. "XiantuID": 1,
  1459. "EventConditionId": null,
  1460. "EventCount": null,
  1461. "EventName": 2807,
  1462. "Description": 2828
  1463. },
  1464. {
  1465. "ID": 10014,
  1466. "EventLinksId": [
  1467. 1001401,
  1468. 1001402,
  1469. 1001403,
  1470. 1001404,
  1471. 1001405,
  1472. 1001406,
  1473. 1001407,
  1474. 1001408,
  1475. 102
  1476. ],
  1477. "EventTriggerType": 4,
  1478. "EventTag": 1,
  1479. "EventType": 1,
  1480. "Score": 10,
  1481. "EventQuality": 1,
  1482. "PrizeIDs": [
  1483. 1001
  1484. ],
  1485. "PrizeNums": [
  1486. 10
  1487. ],
  1488. "RefreshProbability": null,
  1489. "RefreshCount": null,
  1490. "placeID": 2,
  1491. "XiantuID": 1,
  1492. "EventConditionId": null,
  1493. "EventCount": null,
  1494. "EventName": 2808,
  1495. "Description": 2829
  1496. },
  1497. {
  1498. "ID": 10015,
  1499. "EventLinksId": [
  1500. 1001501,
  1501. 1001502,
  1502. 1001503,
  1503. 1001504,
  1504. 1001505,
  1505. 1001506,
  1506. 1001507,
  1507. 1001508,
  1508. 102
  1509. ],
  1510. "EventTriggerType": 4,
  1511. "EventTag": 1,
  1512. "EventType": 1,
  1513. "Score": 10,
  1514. "EventQuality": 1,
  1515. "PrizeIDs": [
  1516. 1001
  1517. ],
  1518. "PrizeNums": [
  1519. 10
  1520. ],
  1521. "RefreshProbability": null,
  1522. "RefreshCount": null,
  1523. "placeID": 2,
  1524. "XiantuID": 1,
  1525. "EventConditionId": null,
  1526. "EventCount": null,
  1527. "EventName": 2809,
  1528. "Description": 2830
  1529. },
  1530. {
  1531. "ID": 10016,
  1532. "EventLinksId": [
  1533. 1001601,
  1534. 1001602,
  1535. 1001603,
  1536. 1001604,
  1537. 1001605,
  1538. 1001606,
  1539. 1001607,
  1540. 1001608,
  1541. 1001609,
  1542. 1001610,
  1543. 1001611,
  1544. 1001612,
  1545. 1001613,
  1546. 102
  1547. ],
  1548. "EventTriggerType": 4,
  1549. "EventTag": 1,
  1550. "EventType": 1,
  1551. "Score": 10,
  1552. "EventQuality": 1,
  1553. "PrizeIDs": [
  1554. 1001
  1555. ],
  1556. "PrizeNums": [
  1557. 10
  1558. ],
  1559. "RefreshProbability": null,
  1560. "RefreshCount": null,
  1561. "placeID": 2,
  1562. "XiantuID": 1,
  1563. "EventConditionId": null,
  1564. "EventCount": null,
  1565. "EventName": 2810,
  1566. "Description": 2831
  1567. },
  1568. {
  1569. "ID": 10017,
  1570. "EventLinksId": [
  1571. 1001701,
  1572. 1001702,
  1573. 1001703,
  1574. 1001704,
  1575. 1001705,
  1576. 1001706,
  1577. 1001707,
  1578. 1001708,
  1579. 1001709,
  1580. 1001710,
  1581. 102
  1582. ],
  1583. "EventTriggerType": 4,
  1584. "EventTag": 1,
  1585. "EventType": 1,
  1586. "Score": 10,
  1587. "EventQuality": 1,
  1588. "PrizeIDs": [
  1589. 1001
  1590. ],
  1591. "PrizeNums": [
  1592. 10
  1593. ],
  1594. "RefreshProbability": null,
  1595. "RefreshCount": null,
  1596. "placeID": 2,
  1597. "XiantuID": 1,
  1598. "EventConditionId": null,
  1599. "EventCount": null,
  1600. "EventName": 2811,
  1601. "Description": 2832
  1602. },
  1603. {
  1604. "ID": 10018,
  1605. "EventLinksId": [
  1606. 1001801,
  1607. 1001802,
  1608. 1001803,
  1609. 1001804,
  1610. 1001805,
  1611. 1001806,
  1612. 1001807,
  1613. 1001808,
  1614. 1001809,
  1615. 1001810,
  1616. 1001811,
  1617. 1001812,
  1618. 1001813,
  1619. 1001814,
  1620. 1001815,
  1621. 1001816,
  1622. 1001817,
  1623. 1001818,
  1624. 1001819,
  1625. 1001820,
  1626. 102
  1627. ],
  1628. "EventTriggerType": 4,
  1629. "EventTag": 1,
  1630. "EventType": 1,
  1631. "Score": 10,
  1632. "EventQuality": 1,
  1633. "PrizeIDs": [
  1634. 1001
  1635. ],
  1636. "PrizeNums": [
  1637. 10
  1638. ],
  1639. "RefreshProbability": null,
  1640. "RefreshCount": null,
  1641. "placeID": 2,
  1642. "XiantuID": 1,
  1643. "EventConditionId": null,
  1644. "EventCount": null,
  1645. "EventName": 2812,
  1646. "Description": 2833
  1647. },
  1648. {
  1649. "ID": 10019,
  1650. "EventLinksId": [
  1651. 1001901,
  1652. 1001902,
  1653. 102
  1654. ],
  1655. "EventTriggerType": 4,
  1656. "EventTag": 1,
  1657. "EventType": 1,
  1658. "Score": 10,
  1659. "EventQuality": 1,
  1660. "PrizeIDs": [
  1661. 1001
  1662. ],
  1663. "PrizeNums": [
  1664. 10
  1665. ],
  1666. "RefreshProbability": null,
  1667. "RefreshCount": null,
  1668. "placeID": 2,
  1669. "XiantuID": 1,
  1670. "EventConditionId": null,
  1671. "EventCount": null,
  1672. "EventName": 2813,
  1673. "Description": 2834
  1674. },
  1675. {
  1676. "ID": 10020,
  1677. "EventLinksId": [
  1678. 1002001,
  1679. 1002002,
  1680. 1002003,
  1681. 1002004,
  1682. 102
  1683. ],
  1684. "EventTriggerType": 4,
  1685. "EventTag": 1,
  1686. "EventType": 1,
  1687. "Score": 10,
  1688. "EventQuality": 1,
  1689. "PrizeIDs": [
  1690. 1001
  1691. ],
  1692. "PrizeNums": [
  1693. 10
  1694. ],
  1695. "RefreshProbability": null,
  1696. "RefreshCount": null,
  1697. "placeID": 2,
  1698. "XiantuID": 1,
  1699. "EventConditionId": null,
  1700. "EventCount": null,
  1701. "EventName": 2814,
  1702. "Description": 2835
  1703. },
  1704. {
  1705. "ID": 10021,
  1706. "EventLinksId": [
  1707. 1002101,
  1708. 1002102,
  1709. 1002103,
  1710. 1002104,
  1711. 1002105,
  1712. 1002106,
  1713. 1002107,
  1714. 1002108,
  1715. 1002109,
  1716. 1002110,
  1717. 1002111,
  1718. 1002112,
  1719. 102
  1720. ],
  1721. "EventTriggerType": 4,
  1722. "EventTag": 1,
  1723. "EventType": 1,
  1724. "Score": 10,
  1725. "EventQuality": 1,
  1726. "PrizeIDs": [
  1727. 1001
  1728. ],
  1729. "PrizeNums": [
  1730. 10
  1731. ],
  1732. "RefreshProbability": null,
  1733. "RefreshCount": null,
  1734. "placeID": 2,
  1735. "XiantuID": 1,
  1736. "EventConditionId": null,
  1737. "EventCount": null,
  1738. "EventName": 2815,
  1739. "Description": 2836
  1740. },
  1741. {
  1742. "ID": 10022,
  1743. "EventLinksId": [
  1744. 1002201,
  1745. 1002202,
  1746. 1002203,
  1747. 102
  1748. ],
  1749. "EventTriggerType": 4,
  1750. "EventTag": 1,
  1751. "EventType": 1,
  1752. "Score": 10,
  1753. "EventQuality": 1,
  1754. "PrizeIDs": [
  1755. 1001
  1756. ],
  1757. "PrizeNums": [
  1758. 10
  1759. ],
  1760. "RefreshProbability": null,
  1761. "RefreshCount": null,
  1762. "placeID": 3,
  1763. "XiantuID": 1,
  1764. "EventConditionId": null,
  1765. "EventCount": null,
  1766. "EventName": 2816,
  1767. "Description": 2837
  1768. },
  1769. {
  1770. "ID": 10023,
  1771. "EventLinksId": [
  1772. 1002301,
  1773. 1002302,
  1774. 1002303,
  1775. 1002304,
  1776. 1002305,
  1777. 1002306,
  1778. 1002307,
  1779. 1002308,
  1780. 1002309,
  1781. 1002310,
  1782. 1002311,
  1783. 1002312,
  1784. 1002313,
  1785. 102
  1786. ],
  1787. "EventTriggerType": 4,
  1788. "EventTag": 1,
  1789. "EventType": 1,
  1790. "Score": 10,
  1791. "EventQuality": 1,
  1792. "PrizeIDs": [
  1793. 1001
  1794. ],
  1795. "PrizeNums": [
  1796. 10
  1797. ],
  1798. "RefreshProbability": null,
  1799. "RefreshCount": null,
  1800. "placeID": 3,
  1801. "XiantuID": 1,
  1802. "EventConditionId": null,
  1803. "EventCount": null,
  1804. "EventName": 2817,
  1805. "Description": 2838
  1806. },
  1807. {
  1808. "ID": 10024,
  1809. "EventLinksId": [
  1810. 1002401,
  1811. 1002402,
  1812. 1002403,
  1813. 1002404,
  1814. 1002405,
  1815. 1002406,
  1816. 1002407,
  1817. 102
  1818. ],
  1819. "EventTriggerType": 4,
  1820. "EventTag": 1,
  1821. "EventType": 1,
  1822. "Score": 10,
  1823. "EventQuality": 1,
  1824. "PrizeIDs": [
  1825. 1001
  1826. ],
  1827. "PrizeNums": [
  1828. 10
  1829. ],
  1830. "RefreshProbability": null,
  1831. "RefreshCount": null,
  1832. "placeID": 3,
  1833. "XiantuID": 1,
  1834. "EventConditionId": null,
  1835. "EventCount": null,
  1836. "EventName": 2818,
  1837. "Description": 2839
  1838. },
  1839. {
  1840. "ID": 10025,
  1841. "EventLinksId": [
  1842. 1002501,
  1843. 1002502,
  1844. 1002503,
  1845. 1002504,
  1846. 1002505,
  1847. 1002506,
  1848. 1002507,
  1849. 1002508,
  1850. 1002509,
  1851. 102
  1852. ],
  1853. "EventTriggerType": 4,
  1854. "EventTag": 1,
  1855. "EventType": 1,
  1856. "Score": 10,
  1857. "EventQuality": 1,
  1858. "PrizeIDs": [
  1859. 1001
  1860. ],
  1861. "PrizeNums": [
  1862. 10
  1863. ],
  1864. "RefreshProbability": null,
  1865. "RefreshCount": null,
  1866. "placeID": 3,
  1867. "XiantuID": 1,
  1868. "EventConditionId": null,
  1869. "EventCount": null,
  1870. "EventName": 2819,
  1871. "Description": 2840
  1872. },
  1873. {
  1874. "ID": 10026,
  1875. "EventLinksId": [
  1876. 102
  1877. ],
  1878. "EventTriggerType": 4,
  1879. "EventTag": 1,
  1880. "EventType": 1,
  1881. "Score": 10,
  1882. "EventQuality": 1,
  1883. "PrizeIDs": [
  1884. 1001
  1885. ],
  1886. "PrizeNums": [
  1887. 10
  1888. ],
  1889. "RefreshProbability": null,
  1890. "RefreshCount": null,
  1891. "placeID": 3,
  1892. "XiantuID": 1,
  1893. "EventConditionId": null,
  1894. "EventCount": null,
  1895. "EventName": 2820,
  1896. "Description": 2841
  1897. },
  1898. {
  1899. "ID": 10027,
  1900. "EventLinksId": [
  1901. 102
  1902. ],
  1903. "EventTriggerType": 4,
  1904. "EventTag": 1,
  1905. "EventType": 1,
  1906. "Score": 10,
  1907. "EventQuality": 1,
  1908. "PrizeIDs": [
  1909. 1001
  1910. ],
  1911. "PrizeNums": [
  1912. 10
  1913. ],
  1914. "RefreshProbability": null,
  1915. "RefreshCount": null,
  1916. "placeID": 3,
  1917. "XiantuID": 1,
  1918. "EventConditionId": null,
  1919. "EventCount": null,
  1920. "EventName": 2821,
  1921. "Description": 2842
  1922. },
  1923. {
  1924. "ID": 20001,
  1925. "EventLinksId": [
  1926. 1001,
  1927. 1002,
  1928. 1003,
  1929. 1004,
  1930. 1005,
  1931. 102
  1932. ],
  1933. "EventTriggerType": 5,
  1934. "EventTag": null,
  1935. "EventType": 1,
  1936. "Score": 0,
  1937. "EventQuality": 1,
  1938. "PrizeIDs": [
  1939. 1001
  1940. ],
  1941. "PrizeNums": [
  1942. 10
  1943. ],
  1944. "RefreshProbability": null,
  1945. "RefreshCount": null,
  1946. "placeID": null,
  1947. "XiantuID": null,
  1948. "EventConditionId": null,
  1949. "EventCount": null,
  1950. "EventName": 174,
  1951. "Description": 1936
  1952. },
  1953. {
  1954. "ID": 20002,
  1955. "EventLinksId": [
  1956. 1010,
  1957. 1011,
  1958. 1012,
  1959. 1013,
  1960. 1014,
  1961. 1015,
  1962. 1016,
  1963. 102
  1964. ],
  1965. "EventTriggerType": 5,
  1966. "EventTag": null,
  1967. "EventType": 1,
  1968. "Score": 0,
  1969. "EventQuality": 1,
  1970. "PrizeIDs": [
  1971. 1001
  1972. ],
  1973. "PrizeNums": [
  1974. 10
  1975. ],
  1976. "RefreshProbability": null,
  1977. "RefreshCount": null,
  1978. "placeID": null,
  1979. "XiantuID": null,
  1980. "EventConditionId": null,
  1981. "EventCount": null,
  1982. "EventName": 175,
  1983. "Description": 1937
  1984. },
  1985. {
  1986. "ID": 20003,
  1987. "EventLinksId": [
  1988. 1001,
  1989. 1002,
  1990. 1003,
  1991. 1004,
  1992. 1005,
  1993. 102
  1994. ],
  1995. "EventTriggerType": 5,
  1996. "EventTag": null,
  1997. "EventType": 1,
  1998. "Score": 0,
  1999. "EventQuality": 1,
  2000. "PrizeIDs": [
  2001. 1001
  2002. ],
  2003. "PrizeNums": [
  2004. 10
  2005. ],
  2006. "RefreshProbability": null,
  2007. "RefreshCount": null,
  2008. "placeID": null,
  2009. "XiantuID": null,
  2010. "EventConditionId": null,
  2011. "EventCount": null,
  2012. "EventName": 1943,
  2013. "Description": 1944
  2014. },
  2015. {
  2016. "ID": 9001,
  2017. "EventLinksId": [
  2018. 1001,
  2019. 1002,
  2020. 1003,
  2021. 1004,
  2022. 1005,
  2023. 102
  2024. ],
  2025. "EventTriggerType": 6,
  2026. "EventTag": 3,
  2027. "EventType": 1,
  2028. "Score": 0,
  2029. "EventQuality": 1,
  2030. "PrizeIDs": [
  2031. 1001
  2032. ],
  2033. "PrizeNums": [
  2034. 10
  2035. ],
  2036. "RefreshProbability": null,
  2037. "RefreshCount": null,
  2038. "placeID": null,
  2039. "XiantuID": null,
  2040. "EventConditionId": null,
  2041. "EventCount": null,
  2042. "EventName": 174,
  2043. "Description": 1936
  2044. },
  2045. {
  2046. "ID": 9002,
  2047. "EventLinksId": [
  2048. 1010,
  2049. 1011,
  2050. 1012,
  2051. 1013,
  2052. 1014,
  2053. 1015,
  2054. 1016,
  2055. 102
  2056. ],
  2057. "EventTriggerType": 6,
  2058. "EventTag": 3,
  2059. "EventType": 1,
  2060. "Score": 0,
  2061. "EventQuality": 1,
  2062. "PrizeIDs": [
  2063. 1001
  2064. ],
  2065. "PrizeNums": [
  2066. 10
  2067. ],
  2068. "RefreshProbability": null,
  2069. "RefreshCount": null,
  2070. "placeID": null,
  2071. "XiantuID": null,
  2072. "EventConditionId": null,
  2073. "EventCount": null,
  2074. "EventName": 175,
  2075. "Description": 1937
  2076. },
  2077. {
  2078. "ID": 9003,
  2079. "EventLinksId": [
  2080. 9003,
  2081. 9004,
  2082. 9005,
  2083. 9006,
  2084. 9007,
  2085. 9008,
  2086. 102
  2087. ],
  2088. "EventTriggerType": 6,
  2089. "EventTag": 5,
  2090. "EventType": 1,
  2091. "Score": 0,
  2092. "EventQuality": 1,
  2093. "PrizeIDs": [
  2094. 1001
  2095. ],
  2096. "PrizeNums": [
  2097. 10
  2098. ],
  2099. "RefreshProbability": null,
  2100. "RefreshCount": null,
  2101. "placeID": null,
  2102. "XiantuID": null,
  2103. "EventConditionId": null,
  2104. "EventCount": null,
  2105. "EventName": 2035,
  2106. "Description": 2036
  2107. },
  2108. {
  2109. "ID": 9025,
  2110. "EventLinksId": [
  2111. 102
  2112. ],
  2113. "EventTriggerType": 6,
  2114. "EventTag": 3,
  2115. "EventType": 1,
  2116. "Score": 0,
  2117. "EventQuality": 1,
  2118. "PrizeIDs": [
  2119. 1001
  2120. ],
  2121. "PrizeNums": [
  2122. 10
  2123. ],
  2124. "RefreshProbability": null,
  2125. "RefreshCount": null,
  2126. "placeID": 1,
  2127. "XiantuID": 2,
  2128. "EventConditionId": null,
  2129. "EventCount": null,
  2130. "EventName": 2067,
  2131. "Description": 2068
  2132. },
  2133. {
  2134. "ID": 9014,
  2135. "EventLinksId": [
  2136. 9014,
  2137. 102
  2138. ],
  2139. "EventTriggerType": 6,
  2140. "EventTag": 3,
  2141. "EventType": 1,
  2142. "Score": 0,
  2143. "EventQuality": 1,
  2144. "PrizeIDs": [
  2145. 1001
  2146. ],
  2147. "PrizeNums": [
  2148. 10
  2149. ],
  2150. "RefreshProbability": null,
  2151. "RefreshCount": null,
  2152. "placeID": 2,
  2153. "XiantuID": 2,
  2154. "EventConditionId": null,
  2155. "EventCount": null,
  2156. "EventName": 2069,
  2157. "Description": 2070
  2158. },
  2159. {
  2160. "ID": 9031,
  2161. "EventLinksId": [
  2162. 9031,
  2163. 102
  2164. ],
  2165. "EventTriggerType": 6,
  2166. "EventTag": 3,
  2167. "EventType": 1,
  2168. "Score": 0,
  2169. "EventQuality": 1,
  2170. "PrizeIDs": [
  2171. 1001
  2172. ],
  2173. "PrizeNums": [
  2174. 10
  2175. ],
  2176. "RefreshProbability": 30,
  2177. "RefreshCount": 2,
  2178. "placeID": 3,
  2179. "XiantuID": 2,
  2180. "EventConditionId": null,
  2181. "EventCount": null,
  2182. "EventName": 2071,
  2183. "Description": 2072
  2184. },
  2185. {
  2186. "ID": 3,
  2187. "EventLinksId": [
  2188. 1020,
  2189. 1021,
  2190. 1022,
  2191. 1023,
  2192. 1024,
  2193. 1025,
  2194. 1026,
  2195. 102
  2196. ],
  2197. "EventTriggerType": 99,
  2198. "EventTag": 2,
  2199. "EventType": 1,
  2200. "Score": 10,
  2201. "EventQuality": 1,
  2202. "PrizeIDs": [
  2203. 1001
  2204. ],
  2205. "PrizeNums": [
  2206. 10
  2207. ],
  2208. "RefreshProbability": null,
  2209. "RefreshCount": null,
  2210. "placeID": 1,
  2211. "XiantuID": 4,
  2212. "EventConditionId": 1,
  2213. "EventValue": [
  2214. 1004
  2215. ],
  2216. "EventCount": 1,
  2217. "EventName": 176,
  2218. "Description": 1938
  2219. },
  2220. {
  2221. "ID": 1001,
  2222. "EventLinksId": [
  2223. 1001,
  2224. 1002,
  2225. 1003,
  2226. 1004,
  2227. 1005,
  2228. 100,
  2229. 102
  2230. ],
  2231. "EventTriggerType": 99,
  2232. "EventTag": 4,
  2233. "EventType": 1,
  2234. "Score": 10,
  2235. "EventQuality": 1,
  2236. "PrizeIDs": [
  2237. 1001
  2238. ],
  2239. "PrizeNums": [
  2240. 10
  2241. ],
  2242. "RefreshProbability": null,
  2243. "RefreshCount": null,
  2244. "placeID": null,
  2245. "XiantuID": null,
  2246. "EventConditionId": null,
  2247. "EventCount": null,
  2248. "EventName": 1943,
  2249. "Description": 1944
  2250. },
  2251. {
  2252. "ID": 30001,
  2253. "EventLinksId": [
  2254. 100,
  2255. 102
  2256. ],
  2257. "EventTriggerType": 99,
  2258. "EventTag": 6,
  2259. "EventType": 1,
  2260. "Score": 0,
  2261. "EventQuality": 1,
  2262. "RefreshProbability": 50,
  2263. "RefreshCount": 5,
  2264. "placeID": null,
  2265. "XiantuID": null,
  2266. "EventConditionId": null,
  2267. "EventCount": null,
  2268. "EventName": null,
  2269. "Description": null
  2270. },
  2271. {
  2272. "ID": 30002,
  2273. "EventLinksId": [
  2274. 100,
  2275. 102
  2276. ],
  2277. "EventTriggerType": 99,
  2278. "EventTag": 6,
  2279. "EventType": 1,
  2280. "Score": 0,
  2281. "EventQuality": 1,
  2282. "RefreshProbability": 50,
  2283. "RefreshCount": 1,
  2284. "placeID": null,
  2285. "XiantuID": null,
  2286. "EventConditionId": null,
  2287. "EventCount": null,
  2288. "EventName": null,
  2289. "Description": null
  2290. },
  2291. {
  2292. "ID": 30003,
  2293. "EventLinksId": [
  2294. 3000301,
  2295. 100,
  2296. 102
  2297. ],
  2298. "EventTriggerType": 99,
  2299. "EventTag": 6,
  2300. "EventType": 1,
  2301. "Score": 0,
  2302. "EventQuality": 1,
  2303. "RefreshProbability": 50,
  2304. "RefreshCount": 1,
  2305. "placeID": 1,
  2306. "XiantuID": null,
  2307. "EventConditionId": null,
  2308. "EventCount": null,
  2309. "EventName": null,
  2310. "Description": null
  2311. },
  2312. {
  2313. "ID": 30004,
  2314. "EventLinksId": [
  2315. 3000401,
  2316. 100,
  2317. 102
  2318. ],
  2319. "EventTriggerType": 99,
  2320. "EventTag": 6,
  2321. "EventType": 1,
  2322. "Score": 0,
  2323. "EventQuality": 1,
  2324. "RefreshProbability": 50,
  2325. "RefreshCount": 3,
  2326. "placeID": 2,
  2327. "XiantuID": null,
  2328. "EventConditionId": null,
  2329. "EventCount": null,
  2330. "EventName": null,
  2331. "Description": null
  2332. },
  2333. {
  2334. "ID": 30005,
  2335. "EventLinksId": [
  2336. 3000501,
  2337. 100,
  2338. 102
  2339. ],
  2340. "EventTriggerType": 99,
  2341. "EventTag": 6,
  2342. "EventType": 1,
  2343. "Score": 0,
  2344. "EventQuality": 1,
  2345. "RefreshProbability": 50,
  2346. "RefreshCount": 1,
  2347. "placeID": 2,
  2348. "XiantuID": null,
  2349. "EventConditionId": null,
  2350. "EventCount": null,
  2351. "EventName": null,
  2352. "Description": null
  2353. },
  2354. {
  2355. "ID": 30006,
  2356. "EventLinksId": [
  2357. 3000601,
  2358. 100,
  2359. 102
  2360. ],
  2361. "EventTriggerType": 99,
  2362. "EventTag": 6,
  2363. "EventType": 1,
  2364. "Score": 0,
  2365. "EventQuality": 1,
  2366. "RefreshProbability": 50,
  2367. "RefreshCount": 1,
  2368. "placeID": 2,
  2369. "XiantuID": null,
  2370. "EventConditionId": null,
  2371. "EventCount": null,
  2372. "EventName": null,
  2373. "Description": null
  2374. },
  2375. {
  2376. "ID": 30007,
  2377. "EventLinksId": [
  2378. 3000701,
  2379. 100,
  2380. 102
  2381. ],
  2382. "EventTriggerType": 99,
  2383. "EventTag": 6,
  2384. "EventType": 1,
  2385. "Score": 0,
  2386. "EventQuality": 1,
  2387. "RefreshProbability": 50,
  2388. "RefreshCount": 1,
  2389. "placeID": 3,
  2390. "XiantuID": null,
  2391. "EventConditionId": null,
  2392. "EventCount": null,
  2393. "EventName": null,
  2394. "Description": null
  2395. },
  2396. {
  2397. "ID": 30008,
  2398. "EventLinksId": [
  2399. 3000801,
  2400. 100,
  2401. 102
  2402. ],
  2403. "EventTriggerType": 99,
  2404. "EventTag": 6,
  2405. "EventType": 1,
  2406. "Score": 0,
  2407. "EventQuality": 1,
  2408. "RefreshProbability": 15,
  2409. "RefreshCount": 1,
  2410. "placeID": 3,
  2411. "XiantuID": null,
  2412. "EventConditionId": null,
  2413. "EventCount": null,
  2414. "EventName": null,
  2415. "Description": null
  2416. },
  2417. {
  2418. "ID": 30009,
  2419. "EventLinksId": [
  2420. 3000901,
  2421. 3000902,
  2422. 100,
  2423. 102
  2424. ],
  2425. "EventTriggerType": 99,
  2426. "EventTag": 6,
  2427. "EventType": 1,
  2428. "Score": 0,
  2429. "EventQuality": 1,
  2430. "PrizeIDs": [
  2431. 1301
  2432. ],
  2433. "PrizeNums": [
  2434. 1
  2435. ],
  2436. "RefreshProbability": 100,
  2437. "RefreshCount": 1,
  2438. "placeID": 3,
  2439. "XiantuID": null,
  2440. "EventConditionId": null,
  2441. "EventCount": null,
  2442. "EventName": null,
  2443. "Description": null
  2444. },
  2445. {
  2446. "ID": 30010,
  2447. "EventLinksId": [
  2448. 3001001,
  2449. 100,
  2450. 102
  2451. ],
  2452. "EventTriggerType": 99,
  2453. "EventTag": 6,
  2454. "EventType": 1,
  2455. "Score": 0,
  2456. "EventQuality": 1,
  2457. "PrizeIDs": [
  2458. 1001
  2459. ],
  2460. "PrizeNums": [
  2461. 1
  2462. ],
  2463. "RefreshProbability": 100,
  2464. "RefreshCount": 1,
  2465. "placeID": 3,
  2466. "XiantuID": null,
  2467. "EventConditionId": 10,
  2468. "EventValue": [
  2469. 1021
  2470. ],
  2471. "EventCount": null,
  2472. "EventName": null,
  2473. "Description": null
  2474. },
  2475. {
  2476. "ID": 30011,
  2477. "EventLinksId": [
  2478. 3001101,
  2479. 3001102,
  2480. 100,
  2481. 102
  2482. ],
  2483. "EventTriggerType": 99,
  2484. "EventTag": 6,
  2485. "EventType": 1,
  2486. "Score": 0,
  2487. "EventQuality": 1,
  2488. "PrizeIDs": [
  2489. 20003
  2490. ],
  2491. "PrizeNums": [
  2492. 3
  2493. ],
  2494. "RefreshProbability": 100,
  2495. "RefreshCount": 1,
  2496. "placeID": 2,
  2497. "XiantuID": null,
  2498. "EventConditionId": null,
  2499. "EventCount": null,
  2500. "EventName": null,
  2501. "Description": null
  2502. },
  2503. {
  2504. "ID": 5001,
  2505. "EventLinksId": [
  2506. 500101,
  2507. 500102,
  2508. 500103,
  2509. 500104,
  2510. 500105,
  2511. 500106,
  2512. 500107,
  2513. 500108,
  2514. 500109,
  2515. 500110,
  2516. 500111,
  2517. 500112,
  2518. 500113,
  2519. 500114,
  2520. 500115,
  2521. 500116,
  2522. 500117,
  2523. 500118,
  2524. 500119,
  2525. 102
  2526. ],
  2527. "EventTriggerType": 99,
  2528. "EventTag": 5,
  2529. "EventType": 1,
  2530. "Score": 10,
  2531. "EventQuality": 1,
  2532. "PrizeType": [
  2533. 10
  2534. ],
  2535. "PrizeIDs": [
  2536. 1501
  2537. ],
  2538. "PrizeNums": [
  2539. 1
  2540. ],
  2541. "RefreshProbability": null,
  2542. "RefreshCount": null,
  2543. "placeID": 1,
  2544. "XiantuID": 1,
  2545. "EventConditionId": null,
  2546. "EventCount": null,
  2547. "EventName": 3019,
  2548. "Description": 3020
  2549. },
  2550. {
  2551. "ID": 5002,
  2552. "EventLinksId": [
  2553. 500201,
  2554. 500202,
  2555. 500203,
  2556. 500204,
  2557. 500205,
  2558. 500206,
  2559. 500207,
  2560. 500208,
  2561. 500209,
  2562. 500210,
  2563. 500211,
  2564. 500212,
  2565. 500213,
  2566. 500214,
  2567. 500215,
  2568. 500216,
  2569. 102
  2570. ],
  2571. "EventTriggerType": 99,
  2572. "EventTag": 5,
  2573. "EventType": 1,
  2574. "Score": 10,
  2575. "EventQuality": 1,
  2576. "PrizeType": [
  2577. 11
  2578. ],
  2579. "PrizeIDs": [
  2580. 1601
  2581. ],
  2582. "PrizeNums": [
  2583. 1
  2584. ],
  2585. "RefreshProbability": null,
  2586. "RefreshCount": null,
  2587. "placeID": 1,
  2588. "XiantuID": 1,
  2589. "EventConditionId": 10,
  2590. "EventValue": [
  2591. 5001
  2592. ],
  2593. "EventCount": null,
  2594. "EventName": 3036,
  2595. "Description": 3037
  2596. },
  2597. {
  2598. "ID": 5003,
  2599. "EventLinksId": [
  2600. 500301,
  2601. 500302,
  2602. 500303,
  2603. 500304,
  2604. 500305,
  2605. 500306,
  2606. 500307,
  2607. 500308,
  2608. 500309,
  2609. 500310,
  2610. 500311,
  2611. 500312,
  2612. 500313,
  2613. 500314,
  2614. 500315,
  2615. 500316,
  2616. 500317,
  2617. 500318,
  2618. 500319,
  2619. 500320,
  2620. 102
  2621. ],
  2622. "EventTriggerType": 99,
  2623. "EventTag": 2,
  2624. "EventType": 1,
  2625. "Score": 10,
  2626. "EventQuality": 1,
  2627. "PrizeType": [
  2628. 1
  2629. ],
  2630. "PrizeIDs": [
  2631. 1001
  2632. ],
  2633. "PrizeNums": [
  2634. 500
  2635. ],
  2636. "RefreshProbability": null,
  2637. "RefreshCount": null,
  2638. "placeID": 1,
  2639. "XiantuID": 1,
  2640. "EventConditionId": null,
  2641. "EventCount": null,
  2642. "EventName": 3034,
  2643. "Description": 3035
  2644. }
  2645. ]
  2646. }