default_settings.json 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926
  1. {
  2. "version": 13,
  3. "core": {
  4. "logging": {
  5. "debugger_sink": true,
  6. "file_sink": true,
  7. "levels": {
  8. "core": "warn",
  9. "client": "info",
  10. "state": "debug",
  11. "server": "debug",
  12. "middleware": "debug"
  13. }
  14. },
  15. "activity_sdk_generation": {
  16. "enabled": true,
  17. "lua_declarations": true
  18. }
  19. },
  20. "steam": {
  21. "language": "english",
  22. "user": {
  23. "persona_name": "Player"
  24. }
  25. },
  26. "client": {
  27. "ui": {
  28. "enabled": true,
  29. "toggle_key": "insert"
  30. },
  31. "external_server": {
  32. "enabled": false,
  33. "host": "127.0.0.1",
  34. "config_url": "https://127.0.0.1/config/",
  35. "config_guid": "d2legacy-0000-0000-0000-000000000001"
  36. },
  37. "suppress_peer_relay": true,
  38. "region_private": false,
  39. "pin_replicated_record": true,
  40. "hold_spawn": true,
  41. "spawn_hold_ms": 30000
  42. },
  43. "server": {
  44. "bap_port": 30974,
  45. "gameplay": {
  46. "topology": "embedded",
  47. "bind_address": "127.0.0.1",
  48. "advertised_address": "127.0.0.1",
  49. "transport_address": "127.0.0.1",
  50. "port": 30976,
  51. "server_reserve_count": 256,
  52. "client_join_grant_count": 8192
  53. },
  54. "activation": {
  55. "default_client_activation": true,
  56. "activity_compatibility_mirror": true,
  57. "gameplay_external_body": false,
  58. "server_default_entity": false,
  59. "activity_public_membership": true,
  60. "prevent_ownerless_channel_close": false,
  61. "mission_scripting": true
  62. },
  63. "entitlements": [
  64. { "name": "1085660", "owned": "handle" },
  65. { "name": "STEAM_PAID_TIER", "owned": "handle" },
  66. { "name": "STEAM_UGC_BLOCKED", "owned": "none" },
  67. { "name": "1090090", "owned": "application" },
  68. { "name": "1090091", "owned": "application" },
  69. { "name": "1090092", "owned": "application" },
  70. { "name": "1090093", "owned": "application" },
  71. { "name": "1090094", "owned": "application" },
  72. { "name": "1090095", "owned": "application" },
  73. { "name": "1090096", "owned": "application" },
  74. { "name": "1090150", "owned": "application" },
  75. { "name": "1090151", "owned": "application" },
  76. { "name": "1090152", "owned": "application" },
  77. { "name": "1090170", "owned": "application" },
  78. { "name": "1090171", "owned": "application" },
  79. { "name": "1090200", "owned": "application" },
  80. { "name": "1090201", "owned": "application" },
  81. { "name": "1090202", "owned": "application" },
  82. { "name": "1330040", "owned": "application" }
  83. ]
  84. },
  85. "state": {
  86. "investment": {
  87. "family5_flag_overrides": [[2003,2], [2260,2], [3698,2], [4661,2], [5901,2], [7188,2], [9144,2], [9150,2], [9162,2], [9164,2], [9169,2], [9171,2], [9176,2], [9178,2], [9180,2], [9183,2], [9186,2], [9279,2], [9355,2], [9567,2], [11554,2], [11558,2], [15034,2], [16840,2], [16843,2], [16846,2], [16849,2], [16852,2], [16854,2], [16856,2], [16857,2], [16860,2], [16862,2], [16865,2], [16868,2], [16871,2], [16873,2], [16875,2], [16878,2], [16884,2], [16887,2], [16889,2], [16892,2]],
  88. "family5_value_overrides": [[3510,5], [462,1010], [477,1010], [12913,42], [470,1], [465,20], [12823,1000], [5159,3]]
  89. },
  90. "unlocks": {
  91. "character_flag_runs": [[61,1], [120,1], [130,1], [135,1], [138,2], [141,1], [200,1], [223,1], [273,1], [275,2], [312,1], [360,1], [409,4], [416,1], [418,4], [423,6], [446,2], [458,2], [470,1], [524,1], [581,4], [659,1], [661,1], [699,1], [707,1], [731,1], [744,1], [791,1], [794,1], [817,1], [821,1], [828,1], [833,1], [838,1], [849,2], [852,1], [859,1], [865,1], [924,1], [938,1], [946,1], [957,1], [959,1], [964,1], [966,1], [971,1], [980,1], [994,1], [1013,1], [1055,1], [1058,1], [1065,4], [1131,1], [1134,1], [1136,2], [1139,1], [1143,1], [1145,2], [1171,1], [1178,1], [1182,2], [1195,1], [1197,1], [1212,3], [1232,1], [1234,3], [1247,1], [1252,2], [1256,1], [1259,1], [1264,1], [1326,1], [1422,1], [1428,2], [1514,1], [1516,1], [1518,1], [1520,1], [1524,1], [1542,1], [1544,1], [1662,6], [1678,3], [1685,1], [1783,1], [1790,2], [1837,6], [1848,2], [1853,3], [1858,4], [1880,6], [2253,6], [2269,1]],
  92. "character_objective_values": [[443,-1], [502,-1]],
  93. "account_flag_runs": [[26,21], [52,1], [78,1], [81,1], [83,3], [89,2], [95,1], [97,3], [101,1], [111,1], [141,1], [207,1], [241,1], [295,7], [303,14], [320,21], [342,10], [355,20], [376,11], [390,95], [487,72], [561,72], [635,32], [681,1], [683,5], [717,2], [728,8], [745,6], [754,1], [758,32], [796,13], [810,20], [831,19], [860,26], [935,18], [954,25], [986,1], [1034,1], [1039,1], [1058,1], [1063,1], [1095,1], [1100,1], [1202,1], [1217,1], [1585,1], [1599,3], [1606,1], [1614,22], [1638,1], [1641,1], [1644,1], [1647,1], [1650,1], [1653,1], [1656,1], [1659,1], [1662,1], [1669,17], [1688,1], [1691,1], [1694,1], [1697,78], [1791,35], [1827,4], [1832,172], [2005,20], [2026,4], [2031,4], [2036,4], [2041,4], [2046,4], [2051,4], [2056,4], [2061,1], [2065,33], [2099,15], [2121,88], [2211,1], [2213,45], [2259,91], [2351,48], [2400,48], [2449,10], [2464,28], [2507,19], [2554,11], [2569,62], [2642,87], [2735,28], [2764,5], [2772,1], [2775,6], [2784,13], [2808,11], [2821,7], [2830,12], [2843,1], [2845,2], [2848,6], [2855,11], [2867,40], [2908,36], [2945,41], [3001,46], [3051,35], [3089,1], [3091,10], [3107,3], [3133,15], [3153,15], [3173,15], [3193,26], [3220,14], [3240,2], [3245,1], [3248,12], [3265,2], [3303,52], [3370,62], [3447,62], [3524,15], [3540,27], [3568,10], [3581,11], [3593,2], [3596,2], [3599,2], [3602,2], [3641,2], [3644,1], [3646,62], [3713,2], [3720,2], [3727,2], [3730,16], [3747,46], [3854,3], [3930,2], [3960,21], [3984,61], [4046,14], [4061,3], [4068,2], [4071,4], [4076,1], [4081,1], [4083,38], [4122,9], [4144,30], [4183,16], [4202,3], [4206,26], [4245,81], [4330,4], [4347,11], [4362,9], [4376,27], [4404,3], [4410,12], [4424,2], [4428,13], [4442,7], [4454,1], [4474,1], [4478,1], [4490,14], [4505,1], [4508,24], [4533,4], [4538,96], [4641,244], [4903,30], [4934,6], [4946,6], [4954,4], [4961,6], [4969,4], [4977,2], [4981,2], [4985,2], [4989,1], [4991,1], [4995,1], [4997,1], [4999,1], [5005,1], [5009,1], [5031,33], [5065,1], [5069,8], [5078,13], [5096,1], [5098,14], [5114,6], [5126,16], [5144,6], [5156,1], [5158,17], [5235,2], [5238,1], [5241,15], [5261,5], [5271,41], [5317,5], [5327,41], [5373,5], [5383,26], [5410,1], [5436,1], [5439,40], [5480,16], [5497,2], [5601,23], [5632,2], [5635,1], [5652,4], [5657,5], [5669,7], [5678,1], [5682,1], [5687,1], [5690,1], [5693,26], [5720,12], [5733,3], [5738,1], [5759,1], [5761,1], [5775,2], [5818,3], [5840,2], [5844,6], [5855,36], [5892,1], [5894,20], [5931,1], [5965,13], [5979,7], [5987,7], [6000,17], [6018,16], [6040,16], [6057,5], [6064,5], [6071,8], [6080,1], [6084,15], [6102,6], [6113,15], [6129,16], [6151,26], [6187,4], [6192,8], [6201,1], [6208,24], [6234,1], [6236,54], [6291,1], [6304,42], [6348,2], [6355,1], [6361,1], [6364,1], [6366,1], [6370,1], [6373,1], [6401,50], [6452,8], [6461,8], [6471,11], [6483,17], [6503,1], [6505,1], [6507,34], [6564,18], [6586,32], [6619,1], [6621,1], [6623,17], [6646,45], [6695,17], [6715,4], [6722,12], [6784,63], [6848,1], [6873,2], [6876,36], [6959,57], [7019,1], [7021,1], [7025,61], [7090,28], [7121,27], [7150,1], [7170,2], [7175,50], [7242,1], [7245,4], [7251,66], [7336,54], [7391,1], [7395,9], [7435,32], [7468,15], [7488,5], [7498,10], [7509,15], [7529,5], [7539,10], [7550,15], [7570,5], [7580,10], [7663,1], [7717,1], [7735,14], [7761,4], [7767,5], [7774,2], [7777,1], [7780,3], [7952,2], [8184,1], [8251,5], [8284,3], [8291,1], [8420,1], [10308,1], [10420,1], [10579,3], [10699,1], [11145,11]],
  94. "profile_flag_runs": [[1,1], [4,1], [6,2], [9,3], [130,5], [137,1], [139,29], [169,3], [173,1], [177,33], [211,1], [217,1], [219,8], [235,2], [238,2], [243,17], [261,13], [275,19]],
  95. "character_flags": [16,17,18,19,82],
  96. "objective_values": [[58,5000], [59,5000], [60,5000], [61,500], [62,300], [63,300], [64,300], [65,1000], [68,60], [75,75], [78,5], [79,1], [80,5], [81,1], [82,500], [83,1000], [84,30], [85,100], [86,250], [87,10], [88,25], [89,200], [92,50], [93,75], [94,4000], [96,800], [104,5], [105,7], [106,250], [108,50], [158,400], [159,100], [160,20], [161,75], [162,25], [163,5], [165,100], [167,150000], [168,150000], [169,150000], [170,900000], [171,10], [172,3], [173,3], [175,100], [176,10], [177,30], [179,1000], [180,25], [181,30], [182,3], [183,10], [185,300], [186,10], [191,7], [192,1], [193,3], [195,25], [196,3], [396,5], [397,1], [398,2], [400,10], [401,1], [402,1], [403,1], [404,1], [405,1], [406,1], [407,50], [408,9], [409,1], [410,5], [411,1], [412,1], [413,1], [414,1], [415,1], [416,29], [417,1], [418,1], [419,1], [420,1], [421,1], [422,1], [423,1], [424,1], [425,1], [426,1], [427,1], [432,1], [433,13], [434,16], [435,3], [436,1], [437,3], [438,1], [439,2], [440,3], [441,3], [442,10], [443,1], [444,1], [445,1], [446,1], [447,1], [448,1], [449,1], [450,1], [451,1], [452,1], [453,1], [454,1], [455,1], [456,1], [457,50], [458,21], [459,1], [460,1], [461,1], [462,1], [463,1], [464,1], [465,36], [466,1], [467,1], [468,1], [469,1], [470,1], [471,1], [472,1], [473,1], [474,1], [475,1], [476,1], [483,1], [484,4], [485,3], [486,1], [487,2], [488,10], [489,1], [490,1], [491,1], [492,1], [493,50], [494,6], [495,1], [496,1], [497,1], [498,1], [499,1], [500,1], [501,17], [502,1], [503,1], [504,1], [505,1], [506,1], [507,1], [508,1], [509,1], [510,1], [511,1], [512,1], [517,1], [518,50], [519,100], [520,25], [521,100], [522,200], [523,50], [524,300], [525,50], [526,150], [527,9], [528,1], [529,1], [530,1], [531,1], [532,1], [533,1], [534,1], [535,1], [536,1], [537,1], [538,300], [539,50], [540,75], [541,25], [542,50], [543,100], [544,75], [545,75], [546,100], [549,9], [550,1], [551,1], [552,1], [553,1], [554,1], [555,1], [556,1], [557,1], [558,1], [559,1], [560,300], [561,100], [562,100], [563,9], [564,1], [565,1], [566,1], [567,1], [568,75], [569,50], [570,150], [571,50], [572,100], [573,50], [574,50], [575,100], [576,1], [577,1], [578,1], [579,1], [580,1], [581,1], [582,1], [583,1], [585,25], [586,100], [587,50], [588,25], [595,20], [596,20], [597,20], [598,30], [599,20], [600,7], [601,18], [602,30], [603,10], [604,7], [605,45], [607,1], [608,1], [609,1], [610,1], [611,1], [612,1], [613,1], [614,1], [615,1], [616,1], [617,1], [618,1], [619,7], [620,5], [622,1], [624,1], [625,1], [626,1], [627,1], [628,10], [629,1], [630,1], [631,1], [632,1], [633,1], [634,1], [635,1], [636,1], [637,1], [638,1], [639,1], [640,1], [641,1], [642,1], [643,50], [644,21], [645,1], [646,1], [647,1], [648,1], [649,1], [650,1], [651,32], [652,1], [653,1], [654,1], [655,1], [656,1], [657,1], [658,1], [659,1], [660,1], [661,1], [662,1], [669,1], [670,1], [671,1], [672,1], [673,100], [674,1], [675,1], [676,1], [677,1], [678,5], [679,1], [680,1], [681,1], [682,1], [683,1], [684,1], [685,1], [686,1], [687,1], [688,1], [689,1], [690,25], [691,25], [692,7], [694,3], [695,100], [696,2], [697,1], [698,1], [699,1], [700,1], [701,1], [702,100], [706,3], [707,25], [708,1], [709,1], [710,1], [711,1], [712,1], [713,1], [714,1], [715,1], [716,1], [717,1], [718,1], [719,1], [720,1], [721,1], [722,30], [723,500], [724,20], [725,72], [726,50], [728,1], [729,1], [730,1], [731,1], [732,1], [733,1], [734,1], [735,1], [736,1], [737,1], [738,1], [739,1], [740,1], [741,1], [742,1200000], [743,250], [744,1], [745,50], [746,1], [747,1], [748,1], [749,1], [750,1], [751,1], [752,1200000], [753,1], [754,1], [755,10], [756,10], [757,1], [758,1], [759,1], [760,1], [761,1], [762,1200000], [763,1], [764,1], [765,50], [766,50], [767,1], [768,1], [769,1], [770,1], [771,1], [772,1200000], [773,1], [774,1], [775,50], [776,15], [777,1], [778,1], [779,1], [780,1], [781,1], [782,1200000], [783,1], [784,25], [785,1], [786,50], [787,1], [788,1], [789,1], [790,1], [791,1], [792,1200000], [793,1], [794,1], [795,25], [796,25], [797,1], [798,1], [799,1], [800,1], [801,1], [802,300], [803,200], [804,150], [805,100], [806,25], [807,250], [808,150], [809,100], [810,1], [811,9], [812,1], [813,1], [814,1], [815,1], [816,1], [817,1], [818,1], [819,1], [820,1], [821,1], [822,50], [823,50], [824,200], [825,100], [826,50], [827,50], [828,300], [829,50], [830,100], [831,9], [832,1], [833,1], [834,1], [835,1], [836,1], [837,1], [838,1], [839,1], [840,1], [841,1], [842,200], [843,75], [844,100], [845,9], [846,100], [847,300], [848,50], [849,75], [850,25], [851,200], [852,1], [853,1], [854,1], [855,1], [856,1], [857,1], [858,1], [859,1], [860,1], [861,1], [862,1], [863,3], [864,3], [865,100], [866,10], [868,21], [869,3], [870,150], [872,1], [873,1], [874,1], [875,1], [876,1], [877,10], [878,5], [879,1], [880,1], [881,1], [882,1], [883,1], [884,1], [885,1], [886,1], [887,1], [888,1], [889,100], [890,50], [891,100], [892,50], [893,50], [894,250], [895,50], [896,300], [897,9], [898,50], [899,1], [900,1], [901,1], [902,1], [903,1], [904,1], [905,1], [906,1], [907,1], [908,1], [909,75], [910,200], [911,50], [912,50], [913,75], [914,100], [915,300], [916,50], [917,100], [918,9], [919,1], [920,1], [921,1], [922,1], [923,1], [924,1], [925,1], [926,1], [927,1], [928,1], [929,75], [930,50], [931,100], [932,50], [933,50], [934,150], [935,200], [936,300], [937,50], [938,9], [939,1], [940,1], [941,1], [942,1], [943,1], [944,1], [945,1], [946,1], [947,1], [948,1], [949,16], [950,1], [951,1], [952,1], [953,1], [954,1], [955,1], [956,1], [957,500], [958,5], [960,10], [961,1], [962,50], [963,500], [964,13], [965,23], [966,1], [967,1], [968,1], [969,1], [970,1], [971,1], [972,1], [973,1], [974,1], [975,1], [976,1], [977,1], [978,1], [979,1], [980,1], [981,1], [982,1], [983,10], [984,1], [985,8], [986,1], [987,5], [988,4000], [989,1], [990,1], [991,1], [992,1], [993,1], [994,1], [995,1], [996,1], [997,1], [998,1], [999,1], [1000,1], [1001,1], [1002,1], [1003,1], [1004,1], [1005,1], [1006,1], [1007,1], [1008,1], [1009,1], [1010,1], [1011,1], [1012,1], [1013,1], [1014,1], [1015,1], [1016,1], [1017,1], [1018,1], [1019,1], [1020,1], [1021,1], [1022,1], [1023,1], [1024,1], [1025,1], [1026,1], [1027,1], [1028,1], [1029,1], [1030,1], [1031,1], [1032,1], [1033,1], [1034,1], [1035,1], [1036,1], [1037,1], [1038,1], [1039,1], [1040,1], [1041,1], [1042,1], [1043,1], [1044,1], [1045,1], [1046,1], [1047,1], [1048,1], [1049,1], [1050,1], [1051,1], [1052,1], [1053,1], [1054,4], [1055,10], [1056,10], [1057,10], [1058,100], [1059,1], [1060,1], [1061,1], [1062,1], [1063,1], [1210,1], [1211,1], [1212,1], [1213,1], [1214,1], [1215,1], [1216,1], [1217,1], [1218,1], [1219,1], [1220,25], [1221,5], [1222,5], [1223,25], [1224,250], [1230,15], [1231,255], [1232,5], [1233,1], [1234,150], [1240,15], [1241,165], [1242,5], [1243,1], [1244,150], [1250,5], [1251,165], [1252,5], [1253,25], [1254,250], [1260,15], [1261,210], [1262,5], [1263,1], [1264,200], [1270,1], [1271,1], [1272,1], [1273,1], [1274,1], [1280,7], [1281,10], [1282,10], [1283,5], [1284,7], [1285,7], [1286,250], [1297,25], [1298,10], [1299,5], [1300,25], [1301,1000], [1336,1], [1337,1], [1340,2], [1342,2], [1344,2], [1346,1], [1349,1], [1351,2], [1353,1], [1356,1], [1358,2], [1360,1], [1363,3], [1365,1], [1368,2], [1370,2], [1372,1], [1375,1], [1377,1], [1379,1], [1381,1], [1383,1], [1386,2], [1388,2], [1390,2], [1392,1], [1395,3], [1397,1], [1399,1], [1402,2], [1404,1], [1406,1], [1409,2], [1411,2], [1413,1], [1416,3], [1437,1], [1438,1], [1448,600], [1449,250], [1450,15], [1451,1], [1452,100], [1458,65], [1459,85], [1460,1], [1461,50], [1462,30], [1468,55], [1469,25], [1470,1], [1471,50], [1472,30], [1478,130], [1479,30], [1480,1], [1481,50], [1482,30], [1488,70], [1489,165], [1490,1], [1491,50], [1492,30], [1498,70], [1499,90], [1500,1], [1501,50], [1502,30], [1508,65], [1509,135], [1510,1], [1511,50], [1512,30], [1518,21], [1519,100], [1520,5], [1521,25], [1522,100], [1528,65], [1529,30], [1530,1], [1531,50], [1532,30], [1538,80], [1539,50], [1540,1], [1541,50], [1542,30], [1548,110], [1549,25], [1550,1], [1551,50], [1552,30], [1558,1], [1559,1], [1560,1], [1561,1], [1562,1], [1568,35], [1569,15], [1570,366], [1571,40], [1572,1500], [1611,500], [1613,250], [1615,500], [1617,1000], [1619,2500], [1620,500], [1622,500], [1623,500], [1625,500], [1627,1000], [1628,250], [1630,5], [1631,500], [1633,1000], [1634,500], [1636,1000], [1638,300], [1640,500], [1642,1000], [1644,150], [1646,150], [1647,150], [1648,300], [1650,500], [1652,50], [1653,1000], [1655,200], [1657,500], [1659,500], [1661,500], [1664,1], [1665,1], [1667,250], [1669,500], [1671,50], [1672,500], [1674,5], [1676,300], [1678,500], [1680,1], [1681,1000], [1682,2000], [1683,1000], [1684,50], [1927,19], [2219,1], [2220,1], [2221,1], [2222,10], [2223,10], [2224,10], [2225,10], [2226,10], [2227,10], [2228,10], [2229,10], [2230,10], [2231,10], [2232,10], [2233,10], [2290,1], [2291,1], [2292,1], [2293,1], [2294,1], [2295,1], [2313,500], [2318,500], [2319,500], [2320,500], [2321,500], [2322,400], [2323,350], [2324,500], [2325,350], [2326,350], [2327,500], [2328,500], [2329,500], [2330,500], [2331,500], [2332,500], [2333,350], [2334,500], [2335,500], [2336,500], [2337,350], [2338,500], [2350,1], [2351,1], [2352,1], [2384,250], [2385,700], [2386,700], [2387,300], [2401,5], [2402,1], [2403,10], [2404,1], [2405,1], [2411,5], [2412,1], [2413,10], [2414,1], [2415,1], [2421,5], [2422,1], [2423,10], [2424,1], [2425,1], [2466,700], [2467,700], [2468,400], [2469,400], [2470,700], [2471,700], [2472,400], [2549,400], [2550,700], [2551,700], [2576,700], [2577,700], [2578,400], [2608,400], [2609,700], [2610,5000], [2632,1], [2633,1], [2634,3], [2635,1], [2636,7], [2642,1], [2643,1], [2644,3], [2645,1], [2646,7], [2652,1], [2653,1], [2654,3], [2655,1], [2656,7], [2666,20], [2667,3], [2668,10], [2669,1000], [2670,5], [5662,-1]]
  97. },
  98. "activity": {
  99. "roster_key_from_identity": false,
  100. "default_destination": {
  101. "reason": -1,
  102. "source_activity_index": -1,
  103. "activity_index": 20,
  104. "package_name": "city_tower_social_d2",
  105. "bubble_count": 8,
  106. "stateful_bubble_mask": "0xCF",
  107. "initial_slice_set": 48,
  108. "spawn_set_hash": "0x811C9DC5"
  109. },
  110. "arrival_overrides": [
  111. {
  112. "package_name": "raid_envy_v310",
  113. "bubble": 7
  114. },
  115. {
  116. "package_name": "raid_gluttony_0",
  117. "bubble": 2,
  118. "slice_set": 17,
  119. "spawn_set_hash": "0x8029E4B4"
  120. },
  121. {
  122. "package_name": "raid_gluttony_1",
  123. "bubble": 2,
  124. "spawn_set_hash": "0x8029E4B4"
  125. },
  126. {
  127. "package_name": "raid_gluttony_2",
  128. "bubble": 2,
  129. "spawn_set_hash": "0x8029E4B4"
  130. },
  131. {
  132. "package_name": "raid_gluttony_3",
  133. "bubble": 2,
  134. "spawn_set_hash": "0x8029E4B4"
  135. },
  136. {
  137. "package_name": "raid_gluttony_4",
  138. "bubble": 2,
  139. "spawn_set_hash": "0x8029E4B4"
  140. },
  141. {
  142. "package_name": "raid_gluttony_5",
  143. "bubble": 2,
  144. "spawn_set_hash": "0x8029E4B4"
  145. },
  146. {
  147. "package_name": "raid_sunset",
  148. "bubble": 1,
  149. "spawn_set_hash": "0xBC6A3A37"
  150. }
  151. ]
  152. },
  153. "account": {
  154. "primary_soid": "0x9EAA300100100100",
  155. "dismantle_rewards": [
  156. { "definition_hash": "0xBC53E66E", "quantity": 25, "rarity": "common" },
  157. { "definition_hash": "0xBC53E66E", "quantity": 50, "rarity": "uncommon" },
  158. { "definition_hash": "0xBC53E66E", "quantity": 100, "rarity": "rare" },
  159. { "definition_hash": "0xBC53E66E", "quantity": 250, "rarity": "legendary" },
  160. { "definition_hash": "0xBC53E66E", "quantity": 500, "rarity": "exotic" },
  161. { "definition_hash": "0x3CF2E8E2", "quantity": 3, "rarity": "legendary" },
  162. { "definition_hash": "0x3CF2E8E2", "quantity": 5, "rarity": "exotic" },
  163. { "definition_hash": "0x28D6AC07", "quantity": 1, "rarity": "rare", "class": "weapon" },
  164. { "definition_hash": "0x28D6AC07", "quantity": 3, "rarity": ["legendary", "exotic"], "class": "weapon" },
  165. { "definition_hash": "0xE5B38AD2", "quantity": 3, "rarity": ["legendary", "exotic"], "masterworked": true }
  166. ],
  167. "profile_items": [
  168. {
  169. "definition_hash": "0xBC53E66E",
  170. "quantity": 100000
  171. },
  172. {
  173. "definition_hash": "0x3CF2E8E2",
  174. "quantity": 50000
  175. },
  176. {
  177. "definition_hash": "0xA7EE4765",
  178. "quantity": 50000
  179. },
  180. {
  181. "definition_hash": "0xB19439E5",
  182. "quantity": 25
  183. },
  184. {
  185. "definition_hash": "0x28D6AC07",
  186. "quantity": 500
  187. },
  188. {
  189. "definition_hash": "0xE5B38AD2",
  190. "quantity": 999
  191. },
  192. {
  193. "definition_hash": "0xFDC50EA0",
  194. "quantity": 50
  195. },
  196. {
  197. "definition_hash": "0xFDC50EA1",
  198. "quantity": 10
  199. },
  200. {
  201. "definition_hash": "0x54CCDFF2",
  202. "quantity": 1000
  203. },
  204. {
  205. "definition_hash": "0xDAAB73B4",
  206. "quantity": 1000
  207. },
  208. {
  209. "definition_hash": "0xCD8DA6F2",
  210. "quantity": 1000
  211. }
  212. ],
  213. "settings": {
  214. "controls": {
  215. "button_layout": 0,
  216. "movement_mode": 0,
  217. "controller_look_sensitivity": 2,
  218. "controller_invert_vertical": false,
  219. "controller_auto_look_centering": false,
  220. "controller_vibration": true,
  221. "controller_swap_shoulders": false,
  222. "controller_invert_horizontal": false,
  223. "mouse_look_sensitivity": 15,
  224. "mouse_invert_vertical": false,
  225. "mouse_invert_horizontal": false,
  226. "unidentified_toggle": false,
  227. "mouse_aim_smoothing": false,
  228. "ads_sensitivity_modifier": 1.0,
  229. "double_press_delay": 0
  230. },
  231. "audio": {
  232. "voice_output_mode": 1,
  233. "team_voice_channel": 0,
  234. "reserved_mode": 0,
  235. "migration_version": 8,
  236. "chat_volume": 2,
  237. "mute_when_unfocused": false,
  238. "sound_effects_volume": 3,
  239. "dialogue_volume": 2,
  240. "music_volume": 2
  241. },
  242. "display": {
  243. "brightness": 3,
  244. "show_fps": false,
  245. "hdr_mode": 0,
  246. "vertical_sync_interval": 0,
  247. "field_of_view": 85,
  248. "calibration_primary": 10000.0,
  249. "calibration_alpha": 0.0
  250. },
  251. "interface": {
  252. "subtitles_mode": 0,
  253. "colorblind_mode": 0,
  254. "helmet_mode": 1,
  255. "hud_opacity": 3,
  256. "display_hints": true,
  257. "background_opacity": 2,
  258. "reticle_location": 0,
  259. "reticle_color": 0,
  260. "text_size": 0,
  261. "text_color": 0,
  262. "text_background_style": 0,
  263. "text_background_opacity": 0,
  264. "reserved_text_mode": 0,
  265. "subtitle_options_entry": 0
  266. },
  267. "social": {
  268. "prefer_good_connection": false,
  269. "text_chat_mode": 3,
  270. "show_real_names": true,
  271. "clan_invite_notifications": true,
  272. "profanity_filter": false,
  273. "voice_chat_enabled": true,
  274. "whisper_chat_mode": 0,
  275. "team_chat_join_mode": 0,
  276. "local_chat_join_mode": 0,
  277. "clan_chat_join_mode": 1,
  278. "chat_auto_hide_mode": 1
  279. },
  280. "key_binding_source": "computer",
  281. "key_bindings": {
  282. "fire": { "primary": "left mouse button", "secondary": null },
  283. "toggle_zoom": { "primary": null, "secondary": null },
  284. "hold_zoom": { "primary": "right mouse button", "secondary": null },
  285. "melee": { "primary": "c", "secondary": null },
  286. "grenade": { "primary": "q", "secondary": null },
  287. "super": { "primary": "f", "secondary": null },
  288. "reload": { "primary": "r", "secondary": null },
  289. "light_attack": { "primary": "left mouse button", "secondary": null },
  290. "heavy_attack": { "primary": "right mouse button", "secondary": null },
  291. "block": { "primary": "c", "secondary": null },
  292. "switch_weapons": { "primary": "`", "secondary": null },
  293. "next_weapon": { "primary": "mouse wheel up", "secondary": null },
  294. "previous_weapon": { "primary": "mouse wheel down", "secondary": null },
  295. "primary_weapon": { "primary": "1", "secondary": null },
  296. "special_weapon": { "primary": "2", "secondary": null },
  297. "heavy_weapon": { "primary": "3", "secondary": null },
  298. "move_forward": { "primary": "w", "secondary": null },
  299. "move_backward": { "primary": "s", "secondary": null },
  300. "move_left": { "primary": "a", "secondary": null },
  301. "move_right": { "primary": "d", "secondary": null },
  302. "jump": { "primary": "space", "secondary": null },
  303. "toggle_crouch": { "primary": "control", "secondary": null },
  304. "hold_crouch": { "primary": null, "secondary": null },
  305. "toggle_sprint": { "primary": "shift", "secondary": null },
  306. "hold_sprint": { "primary": null, "secondary": null },
  307. "vehicle_boost": { "primary": "right mouse button", "secondary": null },
  308. "vehicle_brake": { "primary": "shift", "secondary": null },
  309. "vehicle_zoom": { "primary": "right mouse button", "secondary": null },
  310. "vehicle_fire_primary": { "primary": "left mouse button", "secondary": null },
  311. "vehicle_fire_secondary": { "primary": "e", "secondary": null },
  312. "vehicle_exit": { "primary": "space", "secondary": null },
  313. "interact": { "primary": "e", "secondary": null },
  314. "highlight_player": { "primary": "g", "secondary": null },
  315. "emote_1": { "primary": "up", "secondary": null },
  316. "emote_2": { "primary": "down", "secondary": null },
  317. "emote_3": { "primary": "left", "secondary": null },
  318. "emote_4": { "primary": "right", "secondary": null },
  319. "air_move": { "primary": "x", "secondary": null },
  320. "class_ability": { "primary": "v", "secondary": null },
  321. "death_cam_zoom_in": { "primary": "mouse wheel up", "secondary": null },
  322. "death_cam_zoom_out": { "primary": "mouse wheel down", "secondary": null },
  323. "push_to_talk": { "primary": "t", "secondary": null },
  324. "ui_gamepad_button_back": { "primary": "tab", "secondary": null },
  325. "ui_open_director": { "primary": "m", "secondary": null },
  326. "ui_open_director_store_tab": { "primary": null, "secondary": null },
  327. "ui_open_director_pursuits_tab": { "primary": null, "secondary": null },
  328. "ui_open_director_map_tab": { "primary": null, "secondary": null },
  329. "ui_open_director_destinations_tab": { "primary": null, "secondary": null },
  330. "ui_open_director_roster_tab": { "primary": "u", "secondary": null },
  331. "ui_open_director_seasons_tab": { "primary": null, "secondary": null },
  332. "ui_open_start_menu_alternative": { "primary": "i", "secondary": null },
  333. "ui_open_start_menu_records_tab": { "primary": null, "secondary": null },
  334. "ui_open_start_menu_collections_tab": { "primary": null, "secondary": null },
  335. "ui_open_start_menu_clan_tab": { "primary": null, "secondary": null },
  336. "ui_open_start_menu_inventory_tab": { "primary": null, "secondary": null },
  337. "ui_open_start_menu_settings_tab": { "primary": null, "secondary": null },
  338. "ui_open_exit_dialog_confirm": { "primary": "shift+escape", "secondary": null },
  339. "ui_abort_activity": { "primary": "o", "secondary": null },
  340. "ui_text_chat_toggle_state": { "primary": "l", "secondary": null },
  341. "screenshot": { "primary": "print screen", "secondary": null }
  342. }
  343. }
  344. },
  345. "characters": [
  346. {
  347. "soid": "0x9EAA300100100101",
  348. "race": 0,
  349. "gender": 0,
  350. "class": 1,
  351. "movement_ability": 6,
  352. "grenade_ability": 7,
  353. "super_ability": 10,
  354. "melee_ability": 11,
  355. "class_ability": 2,
  356. "level": 50,
  357. "accepted": true,
  358. "preview_available": true,
  359. "appearance_value": 1.0,
  360. "last_orbited_destination": "0x125CF0E7",
  361. "content_bypass": true,
  362. "equipment": {
  363. "kinetic": {
  364. "instance_soid": "0x4000000000000001",
  365. "definition_hash": "0xE516CF40",
  366. "level": 106,
  367. "quantity": 1,
  368. "plugs": [
  369. "0xAB5218B6",
  370. "0xCCA5773B",
  371. "0x065F4ED0",
  372. "0x45A0BDD7",
  373. "0x1B6B4DB8",
  374. "0xFD368D30",
  375. "0x8A8536B5",
  376. "0x8C84EA53",
  377. null,
  378. "0x8838B9DA",
  379. null,
  380. "0xE713379A"
  381. ]
  382. },
  383. "energy": {
  384. "instance_soid": "0x4000000000000002",
  385. "definition_hash": "0x4156C94D",
  386. "level": 106,
  387. "quantity": 1,
  388. "plugs": [
  389. "0x3B667F9C",
  390. "0x4F68703D",
  391. "0x065F4ED0",
  392. "0xF2A907DF",
  393. "0x8CB6409D",
  394. "0xFD368D30",
  395. "0x8A8536B5",
  396. null,
  397. null,
  398. "0x8838B9DA"
  399. ]
  400. },
  401. "heavy": {
  402. "instance_soid": "0x4000000000000003",
  403. "definition_hash": "0x6F22FCEC",
  404. "level": 106,
  405. "quantity": 1,
  406. "plugs": [
  407. "0xD91C01C9",
  408. "0x37F1078F",
  409. "0x8CE3FE36",
  410. "0x151FBDCC",
  411. "0x9A6B194D",
  412. null,
  413. "0xAEBAE371",
  414. "0x9B283E92"
  415. ]
  416. },
  417. "helmet": {
  418. "instance_soid": "0x4000000000000004",
  419. "definition_hash": "0xF2994B80",
  420. "level": 106,
  421. "quantity": 1,
  422. "plugs": [
  423. "0xEC2137DA",
  424. "0x301CB225",
  425. "0x301CB225",
  426. null,
  427. "0x54CCDFF2",
  428. "0xA4D6D964",
  429. "0x39CBE5E4",
  430. "0x85480BD0",
  431. "0xA81461CE",
  432. "0x01E90FE0",
  433. "0x29E6A60B"
  434. ]
  435. },
  436. "gauntlets": {
  437. "instance_soid": "0x4000000000000005",
  438. "definition_hash": "0x61868551",
  439. "level": 106,
  440. "quantity": 1,
  441. "plugs": [
  442. "0xEC2137DA",
  443. "0x6DE9E6FF",
  444. "0x6DE9E6FF",
  445. null,
  446. "0x54CCDFF2",
  447. "0xA4D6D964",
  448. "0x39CBE5E4",
  449. "0x85480BD0",
  450. "0xA81461CE",
  451. "0x01E90FE0",
  452. "0x29E6A60B"
  453. ]
  454. },
  455. "chest": {
  456. "instance_soid": "0x4000000000000006",
  457. "definition_hash": "0x6F0DBB07",
  458. "level": 106,
  459. "quantity": 1,
  460. "plugs": [
  461. "0xEC2137DA",
  462. "0x62E854BB",
  463. "0x62E854BB",
  464. null,
  465. "0x54CCDFF2",
  466. "0xA4D6D964",
  467. "0x39CBE5E4",
  468. "0x85480BD0",
  469. "0xA81461CE",
  470. "0x01E90FE0",
  471. "0x29E6A60B"
  472. ]
  473. },
  474. "legs": {
  475. "instance_soid": "0x4000000000000007",
  476. "definition_hash": "0x0B8E36D0",
  477. "level": 106,
  478. "quantity": 1,
  479. "plugs": [
  480. "0xEC2137DA",
  481. "0x22299393",
  482. "0x22299393",
  483. "0x64FC1692",
  484. "0x54CCDFF2",
  485. "0x13EFAFB3",
  486. "0x85480BD0",
  487. "0xE92D2525",
  488. "0x056CABAD",
  489. "0x37661C63",
  490. "0x29E6A60B"
  491. ]
  492. },
  493. "class_item": {
  494. "instance_soid": "0x4000000000000008",
  495. "definition_hash": "0xB578E716",
  496. "level": 106,
  497. "quantity": 1,
  498. "plugs": [
  499. "0x1CB5C883",
  500. "0x43C9A775",
  501. "0x43C9A775",
  502. null,
  503. "0x54CCDFF2",
  504. "0xA4D6D964",
  505. "0x29E6A60B"
  506. ]
  507. },
  508. "ghost": {
  509. "instance_soid": "0x4000000000000009",
  510. "definition_hash": "0xF6856969",
  511. "level": 0,
  512. "quantity": 1,
  513. "plugs": ["0xF17B4841", null, "0xE9B5CF11", "0x909FBBEE"]
  514. },
  515. "vehicle": {
  516. "instance_soid": "0x400000000000000A",
  517. "definition_hash": "0xC5C22F78",
  518. "level": 0,
  519. "quantity": 1,
  520. "plugs": [
  521. "0xFD368D30",
  522. "0xB185D1D6",
  523. "0x8A78C491",
  524. "0x41219514",
  525. "0x5084C54E"
  526. ]
  527. },
  528. "ship": {
  529. "instance_soid": "0x400000000000000B",
  530. "definition_hash": "0x1174E2EA",
  531. "level": 0,
  532. "quantity": 1,
  533. "plugs": ["0xFD368D30", "0x52E2AE2F"]
  534. },
  535. "subclass": {
  536. "instance_soid": "0x400000000000000C",
  537. "definition_hash": "0xD8B8D1FC",
  538. "level": 0,
  539. "quantity": 1,
  540. "plugs": []
  541. },
  542. "clan_banner": {
  543. "instance_soid": "0x400000000000000D",
  544. "definition_hash": "0x570EAA71",
  545. "level": 0,
  546. "quantity": 1,
  547. "plugs": [
  548. "0x36BF5F04",
  549. "0x2249F5C8",
  550. "0xE01AE367",
  551. "0x63A3BA12",
  552. "0x5CE104E5",
  553. "0x7CCC4828"
  554. ]
  555. },
  556. "emblem": {
  557. "instance_soid": "0x400000000000000E",
  558. "definition_hash": "0x71B4CC1A",
  559. "level": 0,
  560. "quantity": 1,
  561. "plugs": []
  562. },
  563. "emote": {
  564. "instance_soid": "0x400000000000000F",
  565. "definition_hash": "0x7979AE7D",
  566. "level": 0,
  567. "quantity": 1,
  568. "plugs": []
  569. },
  570. "finisher": {
  571. "instance_soid": "0x4000000000000100",
  572. "definition_hash": "0x09183EEF",
  573. "level": 0,
  574. "quantity": 1,
  575. "plugs": []
  576. },
  577. "artifact": {
  578. "instance_soid": "0x4000000000000103",
  579. "definition_hash": "0x613A3DA6",
  580. "level": 0,
  581. "quantity": 1,
  582. "plugs": null
  583. }
  584. },
  585. "inventory": [
  586. {
  587. "instance_soid": "0x4000000000000011",
  588. "definition_hash": "0x3E7B47F8",
  589. "level": 106,
  590. "quantity": 1,
  591. "plugs": null
  592. },
  593. {
  594. "instance_soid": "0x4000000000000012",
  595. "definition_hash": "0x26275FBA",
  596. "level": 106,
  597. "quantity": 1,
  598. "plugs": null
  599. },
  600. {
  601. "instance_soid": "0x4000000000000013",
  602. "definition_hash": "0xE9E6B958",
  603. "level": 106,
  604. "quantity": 1,
  605. "plugs": null
  606. },
  607. {
  608. "instance_soid": "0x4000000000000014",
  609. "definition_hash": "0xCA3F1095",
  610. "level": 106,
  611. "quantity": 1,
  612. "plugs": null
  613. },
  614. {
  615. "instance_soid": "0x4000000000000015",
  616. "definition_hash": "0xC4916786",
  617. "level": 106,
  618. "quantity": 1,
  619. "plugs": null
  620. },
  621. {
  622. "instance_soid": "0x4000000000000016",
  623. "definition_hash": "0xA25B8F8F",
  624. "level": 106,
  625. "quantity": 1,
  626. "plugs": null
  627. },
  628. {
  629. "instance_soid": "0x4000000000000017",
  630. "definition_hash": "0xDC0DA337",
  631. "level": 106,
  632. "quantity": 1,
  633. "plugs": null
  634. },
  635. {
  636. "instance_soid": "0x4000000000000018",
  637. "definition_hash": "0xDEF8BAA5",
  638. "level": 106,
  639. "quantity": 1,
  640. "plugs": null
  641. },
  642. {
  643. "instance_soid": "0x4000000000000019",
  644. "definition_hash": "0xDBF8EB6E",
  645. "level": 106,
  646. "quantity": 1,
  647. "plugs": null
  648. },
  649. {
  650. "instance_soid": "0x400000000000001A",
  651. "definition_hash": "0xA1D55C26",
  652. "level": 106,
  653. "quantity": 1,
  654. "plugs": null
  655. },
  656. {
  657. "instance_soid": "0x400000000000001B",
  658. "definition_hash": "0x670F94F7",
  659. "level": 106,
  660. "quantity": 1,
  661. "plugs": null
  662. },
  663. {
  664. "instance_soid": "0x400000000000001C",
  665. "definition_hash": "0x40B7F441",
  666. "level": 106,
  667. "quantity": 1,
  668. "plugs": null
  669. },
  670. {
  671. "instance_soid": "0x400000000000001D",
  672. "definition_hash": "0xD2DBA199",
  673. "level": 106,
  674. "quantity": 1,
  675. "plugs": null
  676. },
  677. {
  678. "instance_soid": "0x400000000000001E",
  679. "definition_hash": "0x6F5C089C",
  680. "level": 106,
  681. "quantity": 1,
  682. "plugs": null
  683. },
  684. {
  685. "instance_soid": "0x400000000000001F",
  686. "definition_hash": "0xA859BCA8",
  687. "level": 106,
  688. "quantity": 1,
  689. "plugs": null
  690. },
  691. {
  692. "instance_soid": "0x4000000000000020",
  693. "definition_hash": "0x65AD4E39",
  694. "level": 106,
  695. "quantity": 1,
  696. "plugs": null
  697. },
  698. {
  699. "instance_soid": "0x4000000000000021",
  700. "definition_hash": "0x5EFA7F9F",
  701. "level": 106,
  702. "quantity": 1,
  703. "plugs": null
  704. },
  705. {
  706. "instance_soid": "0x4000000000000022",
  707. "definition_hash": "0x1489642B",
  708. "level": 106,
  709. "quantity": 1,
  710. "plugs": null
  711. },
  712. {
  713. "instance_soid": "0x4000000000000023",
  714. "definition_hash": "0xC5162C2E",
  715. "level": 106,
  716. "quantity": 1,
  717. "plugs": null
  718. },
  719. {
  720. "instance_soid": "0x4000000000000024",
  721. "definition_hash": "0x27559F11",
  722. "level": 106,
  723. "quantity": 1,
  724. "plugs": null
  725. },
  726. {
  727. "instance_soid": "0x4000000000000025",
  728. "definition_hash": "0xD4DFDFE8",
  729. "level": 106,
  730. "quantity": 1,
  731. "plugs": null
  732. },
  733. {
  734. "instance_soid": "0x4000000000000026",
  735. "definition_hash": "0x34AD4160",
  736. "level": 106,
  737. "quantity": 1,
  738. "plugs": null
  739. },
  740. {
  741. "instance_soid": "0x4000000000000027",
  742. "definition_hash": "0x1684FA42",
  743. "level": 106,
  744. "quantity": 1,
  745. "plugs": null
  746. },
  747. {
  748. "instance_soid": "0x4000000000000028",
  749. "definition_hash": "0x0B8D3D9D",
  750. "level": 106,
  751. "quantity": 1,
  752. "plugs": null
  753. },
  754. {
  755. "instance_soid": "0x4000000000000029",
  756. "definition_hash": "0xF685696A",
  757. "level": 0,
  758. "quantity": 1,
  759. "plugs": null
  760. },
  761. {
  762. "instance_soid": "0x400000000000002A",
  763. "definition_hash": "0x3083B063",
  764. "level": 0,
  765. "quantity": 1,
  766. "plugs": null
  767. },
  768. {
  769. "instance_soid": "0x400000000000002B",
  770. "definition_hash": "0x35EE8905",
  771. "level": 0,
  772. "quantity": 1,
  773. "plugs": null
  774. },
  775. {
  776. "instance_soid": "0x400000000000002C",
  777. "definition_hash": "0x4E86F9EC",
  778. "level": 0,
  779. "quantity": 1,
  780. "plugs": null
  781. },
  782. {
  783. "instance_soid": "0x400000000000002D",
  784. "definition_hash": "0x71A87B55",
  785. "level": 0,
  786. "quantity": 1,
  787. "plugs": null
  788. },
  789. {
  790. "instance_soid": "0x400000000000002E",
  791. "definition_hash": "0xA984374D",
  792. "level": 0,
  793. "quantity": 1,
  794. "plugs": null
  795. },
  796. {
  797. "instance_soid": "0x400000000000002F",
  798. "definition_hash": "0xD8ACA0CE",
  799. "level": 0,
  800. "quantity": 1,
  801. "plugs": null
  802. },
  803. {
  804. "instance_soid": "0x4000000000000030",
  805. "definition_hash": "0xC7CBC15C",
  806. "level": 0,
  807. "quantity": 1,
  808. "plugs": null
  809. },
  810. {
  811. "instance_soid": "0x4000000000000031",
  812. "definition_hash": "0x11C83768",
  813. "level": 0,
  814. "quantity": 1,
  815. "plugs": null
  816. },
  817. {
  818. "instance_soid": "0x4000000000000032",
  819. "definition_hash": "0x5A6603AD",
  820. "level": 0,
  821. "quantity": 1,
  822. "plugs": null,
  823. "flags": 0
  824. },
  825. {
  826. "instance_soid": "0x4000000000000033",
  827. "definition_hash": "0x4D24AB5D",
  828. "level": 0,
  829. "quantity": 1,
  830. "plugs": null,
  831. "flags": 0
  832. },
  833. {
  834. "instance_soid": "0x4000000000000034",
  835. "definition_hash": "0x564C7E4C",
  836. "level": 0,
  837. "quantity": 1,
  838. "plugs": null,
  839. "flags": 0
  840. },
  841. {
  842. "instance_soid": "0x4000000000000010",
  843. "definition_hash": "0xEF255BFB",
  844. "level": 0,
  845. "quantity": 1,
  846. "plugs": null,
  847. "flags": 0
  848. },
  849. {
  850. "instance_soid": "0x4000000000000035",
  851. "definition_hash": "0x05B1C785",
  852. "level": 0,
  853. "quantity": 1,
  854. "plugs": null
  855. },
  856. {
  857. "instance_soid": "0x4000000000000036",
  858. "definition_hash": "0xA3CE6FD4",
  859. "level": 0,
  860. "quantity": 1,
  861. "plugs": null
  862. },
  863. {
  864. "instance_soid": "0x4000000000000037",
  865. "definition_hash": "0xE0B2E67F",
  866. "level": 0,
  867. "quantity": 1,
  868. "plugs": null
  869. }
  870. ]
  871. },
  872. {
  873. "soid": "0x9EAA300100100102",
  874. "race": 0,
  875. "gender": 0,
  876. "class": 0,
  877. "movement_ability": 6,
  878. "grenade_ability": 7,
  879. "super_ability": 10,
  880. "melee_ability": 11,
  881. "class_ability": 2,
  882. "level": 50,
  883. "accepted": true,
  884. "preview_available": true,
  885. "appearance_value": 1.0,
  886. "last_orbited_destination": "0x125CF0E7",
  887. "content_bypass": true,
  888. "equipment": {
  889. "kinetic": {
  890. "instance_soid": "0x4000000000000065",
  891. "definition_hash": "0xE516CF40",
  892. "level": 106,
  893. "quantity": 1,
  894. "plugs": [
  895. "0xAB5218B6",
  896. "0xCCA5773B",
  897. "0x065F4ED0",
  898. "0x45A0BDD7",
  899. "0x1B6B4DB8",
  900. "0xFD368D30",
  901. "0x8A8536B5",
  902. "0x8C84EA53",
  903. null,
  904. "0x8838B9DA",
  905. null,
  906. "0xE713379A"
  907. ]
  908. },
  909. "energy": {
  910. "instance_soid": "0x4000000000000066",
  911. "definition_hash": "0x4156C94D",
  912. "level": 106,
  913. "quantity": 1,
  914. "plugs": [
  915. "0x3B667F9C",
  916. "0x4F68703D",
  917. "0x065F4ED0",
  918. "0xF2A907DF",
  919. "0x8CB6409D",
  920. "0xFD368D30",
  921. "0x8A8536B5",
  922. null,
  923. null,
  924. "0x8838B9DA"
  925. ]
  926. },
  927. "heavy": {
  928. "instance_soid": "0x4000000000000067",
  929. "definition_hash": "0x6F22FCEC",
  930. "level": 106,
  931. "quantity": 1,
  932. "plugs": [
  933. "0xD91C01C9",
  934. "0x37F1078F",
  935. "0x8CE3FE36",
  936. "0x151FBDCC",
  937. "0x9A6B194D",
  938. null,
  939. "0xAEBAE371",
  940. "0x9B283E92"
  941. ]
  942. },
  943. "helmet": {
  944. "instance_soid": "0x4000000000000068",
  945. "definition_hash": "0xECB479E4",
  946. "level": 106,
  947. "quantity": 1,
  948. "plugs": [
  949. "0xEC2137DA",
  950. "0x301CB225",
  951. "0x301CB225",
  952. null,
  953. "0x54CCDFF2",
  954. "0xA4D6D964",
  955. "0x39CBE5E4",
  956. "0x85480BD0",
  957. "0xA81461CE",
  958. "0x01E90FE0",
  959. "0x29E6A60B"
  960. ]
  961. },
  962. "gauntlets": {
  963. "instance_soid": "0x4000000000000069",
  964. "definition_hash": "0xE98EBABD",
  965. "level": 106,
  966. "quantity": 1,
  967. "plugs": [
  968. "0xEC2137DA",
  969. "0x6DE9E6FF",
  970. "0x6DE9E6FF",
  971. null,
  972. "0x54CCDFF2",
  973. "0xA4D6D964",
  974. "0x39CBE5E4",
  975. "0x85480BD0",
  976. "0xA81461CE",
  977. "0x01E90FE0",
  978. "0x29E6A60B"
  979. ]
  980. },
  981. "chest": {
  982. "instance_soid": "0x400000000000006A",
  983. "definition_hash": "0x542FC543",
  984. "level": 106,
  985. "quantity": 1,
  986. "plugs": [
  987. "0xEC2137DA",
  988. "0x62E854BB",
  989. "0x62E854BB",
  990. null,
  991. "0x54CCDFF2",
  992. "0xA4D6D964",
  993. "0x39CBE5E4",
  994. "0x85480BD0",
  995. "0xA81461CE",
  996. "0x01E90FE0",
  997. "0x29E6A60B"
  998. ]
  999. },
  1000. "legs": {
  1001. "instance_soid": "0x400000000000006B",
  1002. "definition_hash": "0xD2F64E86",
  1003. "level": 106,
  1004. "quantity": 1,
  1005. "plugs": [
  1006. "0xEC2137DA",
  1007. "0x22299393",
  1008. "0x22299393",
  1009. "0xC130B5BC",
  1010. "0x54CCDFF2",
  1011. "0x13EFAFB3",
  1012. "0x85480BD0",
  1013. "0xE92D2525",
  1014. "0x01E90FE0",
  1015. "0x37661C63",
  1016. "0x29E6A60B"
  1017. ]
  1018. },
  1019. "class_item": {
  1020. "instance_soid": "0x400000000000006C",
  1021. "definition_hash": "0x295F70BA",
  1022. "level": 106,
  1023. "quantity": 1,
  1024. "plugs": [
  1025. "0xEC2137DA",
  1026. "0x43C9A775",
  1027. "0x43C9A775",
  1028. null,
  1029. "0x54CCDFF2",
  1030. "0xA4D6D964",
  1031. "0x29E6A60B"
  1032. ]
  1033. },
  1034. "ghost": {
  1035. "instance_soid": "0x400000000000006D",
  1036. "definition_hash": "0xF6856969",
  1037. "level": 0,
  1038. "quantity": 1,
  1039. "plugs": ["0xF17B4841", null, "0xE9B5CF11", "0x909FBBEE"]
  1040. },
  1041. "vehicle": {
  1042. "instance_soid": "0x400000000000006E",
  1043. "definition_hash": "0xC5C22F78",
  1044. "level": 0,
  1045. "quantity": 1,
  1046. "plugs": [
  1047. "0xFD368D30",
  1048. "0xB185D1D6",
  1049. "0x8A78C491",
  1050. "0x41219514",
  1051. "0x5084C54E"
  1052. ]
  1053. },
  1054. "ship": {
  1055. "instance_soid": "0x400000000000006F",
  1056. "definition_hash": "0x1174E2EA",
  1057. "level": 0,
  1058. "quantity": 1,
  1059. "plugs": ["0xFD368D30", "0x52E2AE2F"]
  1060. },
  1061. "subclass": {
  1062. "instance_soid": "0x4000000000000070",
  1063. "definition_hash": "0xB920CE9A",
  1064. "level": 0,
  1065. "quantity": 1,
  1066. "plugs": []
  1067. },
  1068. "clan_banner": {
  1069. "instance_soid": "0x4000000000000071",
  1070. "definition_hash": "0x570EAA71",
  1071. "level": 0,
  1072. "quantity": 1,
  1073. "plugs": [
  1074. "0x36BF5F04",
  1075. "0x2249F5C8",
  1076. "0xE01AE367",
  1077. "0x63A3BA12",
  1078. "0x5CE104E5",
  1079. "0x7CCC4828"
  1080. ]
  1081. },
  1082. "emblem": {
  1083. "instance_soid": "0x4000000000000072",
  1084. "definition_hash": "0x71B4CC1B",
  1085. "level": 0,
  1086. "quantity": 1,
  1087. "plugs": []
  1088. },
  1089. "emote": {
  1090. "instance_soid": "0x4000000000000073",
  1091. "definition_hash": "0x7979AE7D",
  1092. "level": 0,
  1093. "quantity": 1,
  1094. "plugs": []
  1095. },
  1096. "finisher": {
  1097. "instance_soid": "0x4000000000000101",
  1098. "definition_hash": "0x09183EEF",
  1099. "level": 0,
  1100. "quantity": 1,
  1101. "plugs": []
  1102. },
  1103. "artifact": {
  1104. "instance_soid": "0x4000000000000104",
  1105. "definition_hash": "0x613A3DA6",
  1106. "level": 0,
  1107. "quantity": 1,
  1108. "plugs": null
  1109. }
  1110. },
  1111. "inventory": [
  1112. {
  1113. "instance_soid": "0x4000000000000075",
  1114. "definition_hash": "0x3E7B47F8",
  1115. "level": 106,
  1116. "quantity": 1,
  1117. "plugs": null
  1118. },
  1119. {
  1120. "instance_soid": "0x4000000000000076",
  1121. "definition_hash": "0x26275FBA",
  1122. "level": 106,
  1123. "quantity": 1,
  1124. "plugs": null
  1125. },
  1126. {
  1127. "instance_soid": "0x4000000000000077",
  1128. "definition_hash": "0xE9E6B958",
  1129. "level": 106,
  1130. "quantity": 1,
  1131. "plugs": null
  1132. },
  1133. {
  1134. "instance_soid": "0x4000000000000078",
  1135. "definition_hash": "0xCA3F1095",
  1136. "level": 106,
  1137. "quantity": 1,
  1138. "plugs": null
  1139. },
  1140. {
  1141. "instance_soid": "0x4000000000000079",
  1142. "definition_hash": "0xC4916786",
  1143. "level": 106,
  1144. "quantity": 1,
  1145. "plugs": null
  1146. },
  1147. {
  1148. "instance_soid": "0x400000000000007A",
  1149. "definition_hash": "0xA25B8F8F",
  1150. "level": 106,
  1151. "quantity": 1,
  1152. "plugs": null
  1153. },
  1154. {
  1155. "instance_soid": "0x400000000000007B",
  1156. "definition_hash": "0xDC0DA337",
  1157. "level": 106,
  1158. "quantity": 1,
  1159. "plugs": null
  1160. },
  1161. {
  1162. "instance_soid": "0x400000000000007C",
  1163. "definition_hash": "0xDEF8BAA5",
  1164. "level": 106,
  1165. "quantity": 1,
  1166. "plugs": null
  1167. },
  1168. {
  1169. "instance_soid": "0x400000000000007D",
  1170. "definition_hash": "0xDBF8EB6E",
  1171. "level": 106,
  1172. "quantity": 1,
  1173. "plugs": null
  1174. },
  1175. {
  1176. "instance_soid": "0x400000000000007E",
  1177. "definition_hash": "0x51ADBEB4",
  1178. "level": 106,
  1179. "quantity": 1,
  1180. "plugs": null
  1181. },
  1182. {
  1183. "instance_soid": "0x400000000000007F",
  1184. "definition_hash": "0xF2AF51CD",
  1185. "level": 106,
  1186. "quantity": 1,
  1187. "plugs": null
  1188. },
  1189. {
  1190. "instance_soid": "0x4000000000000080",
  1191. "definition_hash": "0x966B9873",
  1192. "level": 106,
  1193. "quantity": 1,
  1194. "plugs": null
  1195. },
  1196. {
  1197. "instance_soid": "0x4000000000000081",
  1198. "definition_hash": "0x1AAAE68F",
  1199. "level": 106,
  1200. "quantity": 1,
  1201. "plugs": null
  1202. },
  1203. {
  1204. "instance_soid": "0x4000000000000082",
  1205. "definition_hash": "0x19DFB9AA",
  1206. "level": 106,
  1207. "quantity": 1,
  1208. "plugs": null
  1209. },
  1210. {
  1211. "instance_soid": "0x4000000000000083",
  1212. "definition_hash": "0xF435CE34",
  1213. "level": 106,
  1214. "quantity": 1,
  1215. "plugs": null
  1216. },
  1217. {
  1218. "instance_soid": "0x4000000000000084",
  1219. "definition_hash": "0x9537614D",
  1220. "level": 106,
  1221. "quantity": 1,
  1222. "plugs": null
  1223. },
  1224. {
  1225. "instance_soid": "0x4000000000000085",
  1226. "definition_hash": "0xF29BFEF3",
  1227. "level": 106,
  1228. "quantity": 1,
  1229. "plugs": null
  1230. },
  1231. {
  1232. "instance_soid": "0x4000000000000086",
  1233. "definition_hash": "0xBD32F60F",
  1234. "level": 106,
  1235. "quantity": 1,
  1236. "plugs": null
  1237. },
  1238. {
  1239. "instance_soid": "0x4000000000000087",
  1240. "definition_hash": "0x7610202A",
  1241. "level": 106,
  1242. "quantity": 1,
  1243. "plugs": null
  1244. },
  1245. {
  1246. "instance_soid": "0x4000000000000088",
  1247. "definition_hash": "0x103CB34D",
  1248. "level": 106,
  1249. "quantity": 1,
  1250. "plugs": null
  1251. },
  1252. {
  1253. "instance_soid": "0x4000000000000089",
  1254. "definition_hash": "0x3723973C",
  1255. "level": 106,
  1256. "quantity": 1,
  1257. "plugs": null
  1258. },
  1259. {
  1260. "instance_soid": "0x400000000000008A",
  1261. "definition_hash": "0x9918CAA4",
  1262. "level": 106,
  1263. "quantity": 1,
  1264. "plugs": null
  1265. },
  1266. {
  1267. "instance_soid": "0x400000000000008B",
  1268. "definition_hash": "0x1287C646",
  1269. "level": 106,
  1270. "quantity": 1,
  1271. "plugs": null
  1272. },
  1273. {
  1274. "instance_soid": "0x400000000000008C",
  1275. "definition_hash": "0xC56EBCF9",
  1276. "level": 106,
  1277. "quantity": 1,
  1278. "plugs": null
  1279. },
  1280. {
  1281. "instance_soid": "0x400000000000008D",
  1282. "definition_hash": "0xF6856968",
  1283. "level": 0,
  1284. "quantity": 1,
  1285. "plugs": null
  1286. },
  1287. {
  1288. "instance_soid": "0x400000000000008E",
  1289. "definition_hash": "0xAA583AC8",
  1290. "level": 0,
  1291. "quantity": 1,
  1292. "plugs": null
  1293. },
  1294. {
  1295. "instance_soid": "0x400000000000008F",
  1296. "definition_hash": "0x45F41F39",
  1297. "level": 0,
  1298. "quantity": 1,
  1299. "plugs": null
  1300. },
  1301. {
  1302. "instance_soid": "0x4000000000000090",
  1303. "definition_hash": "0x7B387201",
  1304. "level": 0,
  1305. "quantity": 1,
  1306. "plugs": null
  1307. },
  1308. {
  1309. "instance_soid": "0x4000000000000091",
  1310. "definition_hash": "0xCAE2C4B0",
  1311. "level": 0,
  1312. "quantity": 1,
  1313. "plugs": null
  1314. },
  1315. {
  1316. "instance_soid": "0x4000000000000092",
  1317. "definition_hash": "0xF322966C",
  1318. "level": 0,
  1319. "quantity": 1,
  1320. "plugs": null
  1321. },
  1322. {
  1323. "instance_soid": "0x4000000000000093",
  1324. "definition_hash": "0xEAE9FA4A",
  1325. "level": 0,
  1326. "quantity": 1,
  1327. "plugs": null
  1328. },
  1329. {
  1330. "instance_soid": "0x4000000000000094",
  1331. "definition_hash": "0xC7CBC15C",
  1332. "level": 0,
  1333. "quantity": 1,
  1334. "plugs": null
  1335. },
  1336. {
  1337. "instance_soid": "0x4000000000000095",
  1338. "definition_hash": "0x11C83768",
  1339. "level": 0,
  1340. "quantity": 1,
  1341. "plugs": null
  1342. },
  1343. {
  1344. "instance_soid": "0x4000000000000096",
  1345. "definition_hash": "0xBB3CAA51",
  1346. "level": 0,
  1347. "quantity": 1,
  1348. "plugs": null,
  1349. "flags": 0
  1350. },
  1351. {
  1352. "instance_soid": "0x4000000000000097",
  1353. "definition_hash": "0xCF1C4EF3",
  1354. "level": 0,
  1355. "quantity": 1,
  1356. "plugs": null,
  1357. "flags": 0
  1358. },
  1359. {
  1360. "instance_soid": "0x4000000000000098",
  1361. "definition_hash": "0x29905E7A",
  1362. "level": 0,
  1363. "quantity": 1,
  1364. "plugs": null,
  1365. "flags": 0
  1366. },
  1367. {
  1368. "instance_soid": "0x4000000000000074",
  1369. "definition_hash": "0xAA223B79",
  1370. "level": 0,
  1371. "quantity": 1,
  1372. "plugs": null,
  1373. "flags": 0
  1374. },
  1375. {
  1376. "instance_soid": "0x4000000000000099",
  1377. "definition_hash": "0x1FA2AD3E",
  1378. "level": 0,
  1379. "quantity": 1,
  1380. "plugs": null
  1381. },
  1382. {
  1383. "instance_soid": "0x400000000000009A",
  1384. "definition_hash": "0x30A14DDC",
  1385. "level": 0,
  1386. "quantity": 1,
  1387. "plugs": null
  1388. },
  1389. {
  1390. "instance_soid": "0x400000000000009B",
  1391. "definition_hash": "0x46D82092",
  1392. "level": 0,
  1393. "quantity": 1,
  1394. "plugs": null
  1395. }
  1396. ]
  1397. },
  1398. {
  1399. "soid": "0x9EAA300100100103",
  1400. "race": 0,
  1401. "gender": 0,
  1402. "class": 2,
  1403. "movement_ability": 5,
  1404. "grenade_ability": 7,
  1405. "super_ability": 10,
  1406. "melee_ability": 11,
  1407. "class_ability": 2,
  1408. "level": 50,
  1409. "accepted": true,
  1410. "preview_available": true,
  1411. "appearance_value": 1.0,
  1412. "last_orbited_destination": "0x125CF0E7",
  1413. "content_bypass": true,
  1414. "equipment": {
  1415. "kinetic": {
  1416. "instance_soid": "0x40000000000000C9",
  1417. "definition_hash": "0xE516CF40",
  1418. "level": 106,
  1419. "quantity": 1,
  1420. "plugs": [
  1421. "0xAB5218B6",
  1422. "0xCCA5773B",
  1423. "0x065F4ED0",
  1424. "0x45A0BDD7",
  1425. "0x1B6B4DB8",
  1426. "0xFD368D30",
  1427. "0x8A8536B5",
  1428. "0x8C84EA53",
  1429. null,
  1430. "0x8838B9DA",
  1431. null,
  1432. "0xE713379A"
  1433. ]
  1434. },
  1435. "energy": {
  1436. "instance_soid": "0x40000000000000CA",
  1437. "definition_hash": "0x4156C94D",
  1438. "level": 106,
  1439. "quantity": 1,
  1440. "plugs": [
  1441. "0x3B667F9C",
  1442. "0x4F68703D",
  1443. "0x065F4ED0",
  1444. "0xF2A907DF",
  1445. "0x8CB6409D",
  1446. "0xFD368D30",
  1447. "0x8A8536B5",
  1448. null,
  1449. null,
  1450. "0x8838B9DA"
  1451. ]
  1452. },
  1453. "heavy": {
  1454. "instance_soid": "0x40000000000000CB",
  1455. "definition_hash": "0x6F22FCEC",
  1456. "level": 106,
  1457. "quantity": 1,
  1458. "plugs": [
  1459. "0xD91C01C9",
  1460. "0x37F1078F",
  1461. "0x8CE3FE36",
  1462. "0x151FBDCC",
  1463. "0x9A6B194D",
  1464. null,
  1465. "0xAEBAE371",
  1466. "0x9B283E92"
  1467. ]
  1468. },
  1469. "helmet": {
  1470. "instance_soid": "0x40000000000000CC",
  1471. "definition_hash": "0xEA042965",
  1472. "level": 106,
  1473. "quantity": 1,
  1474. "plugs": [
  1475. "0xEC2137DA",
  1476. "0x301CB225",
  1477. "0x301CB225",
  1478. null,
  1479. "0x54CCDFF2",
  1480. "0xA4D6D964",
  1481. "0x39CBE5E4",
  1482. "0x85480BD0",
  1483. "0xA81461CE",
  1484. "0x01E90FE0",
  1485. "0x29E6A60B"
  1486. ]
  1487. },
  1488. "gauntlets": {
  1489. "instance_soid": "0x40000000000000CD",
  1490. "definition_hash": "0x188C5834",
  1491. "level": 106,
  1492. "quantity": 1,
  1493. "plugs": [
  1494. "0xEC2137DA",
  1495. "0x6DE9E6FF",
  1496. "0x6DE9E6FF",
  1497. null,
  1498. "0x54CCDFF2",
  1499. "0xA4D6D964",
  1500. "0x39CBE5E4",
  1501. "0x85480BD0",
  1502. "0xA81461CE",
  1503. "0x01E90FE0",
  1504. "0x29E6A60B"
  1505. ]
  1506. },
  1507. "chest": {
  1508. "instance_soid": "0x40000000000000CE",
  1509. "definition_hash": "0xF8689C4C",
  1510. "level": 106,
  1511. "quantity": 1,
  1512. "plugs": [
  1513. "0xEC2137DA",
  1514. "0x62E854BB",
  1515. "0x62E854BB",
  1516. null,
  1517. "0x54CCDFF2",
  1518. "0xA4D6D964",
  1519. "0x39CBE5E4",
  1520. "0x85480BD0",
  1521. "0xA81461CE",
  1522. "0x01E90FE0",
  1523. "0x29E6A60B"
  1524. ]
  1525. },
  1526. "legs": {
  1527. "instance_soid": "0x40000000000000CF",
  1528. "definition_hash": "0x083E04B6",
  1529. "level": 106,
  1530. "quantity": 1,
  1531. "plugs": [
  1532. "0xEC2137DA",
  1533. "0x22299393",
  1534. "0x22299393",
  1535. "0xC78E19B1",
  1536. "0x54CCDFF2",
  1537. "0x13EFAFB3",
  1538. "0x85480BD0",
  1539. "0xBAE01BEB",
  1540. "0x056CABAD",
  1541. "0xF37F6509",
  1542. "0x29E6A60B"
  1543. ]
  1544. },
  1545. "class_item": {
  1546. "instance_soid": "0x40000000000000D0",
  1547. "definition_hash": "0x99446581",
  1548. "level": 106,
  1549. "quantity": 1,
  1550. "plugs": [
  1551. "0x1CB5C883",
  1552. "0x43C9A775",
  1553. "0x43C9A775",
  1554. null,
  1555. "0x54CCDFF2",
  1556. "0xA4D6D964",
  1557. "0x29E6A60B"
  1558. ]
  1559. },
  1560. "ghost": {
  1561. "instance_soid": "0x40000000000000D1",
  1562. "definition_hash": "0xF6856969",
  1563. "level": 0,
  1564. "quantity": 1,
  1565. "plugs": ["0xF17B4841", null, "0xE9B5CF11", "0x909FBBEE"]
  1566. },
  1567. "vehicle": {
  1568. "instance_soid": "0x40000000000000D2",
  1569. "definition_hash": "0xC5C22F78",
  1570. "level": 0,
  1571. "quantity": 1,
  1572. "plugs": [
  1573. "0xFD368D30",
  1574. "0xB185D1D6",
  1575. "0x8A78C491",
  1576. "0x41219514",
  1577. "0x5084C54E"
  1578. ]
  1579. },
  1580. "ship": {
  1581. "instance_soid": "0x40000000000000D3",
  1582. "definition_hash": "0x1174E2EA",
  1583. "level": 0,
  1584. "quantity": 1,
  1585. "plugs": ["0xFD368D30", "0x52E2AE2F"]
  1586. },
  1587. "subclass": {
  1588. "instance_soid": "0x40000000000000D4",
  1589. "definition_hash": "0xCF88FEA5",
  1590. "level": 0,
  1591. "quantity": 1,
  1592. "plugs": []
  1593. },
  1594. "clan_banner": {
  1595. "instance_soid": "0x40000000000000D5",
  1596. "definition_hash": "0x570EAA71",
  1597. "level": 0,
  1598. "quantity": 1,
  1599. "plugs": [
  1600. "0x36BF5F04",
  1601. "0x2249F5C8",
  1602. "0xE01AE367",
  1603. "0x63A3BA12",
  1604. "0x5CE104E5",
  1605. "0x7CCC4828"
  1606. ]
  1607. },
  1608. "emblem": {
  1609. "instance_soid": "0x40000000000000D6",
  1610. "definition_hash": "0x71B4CC19",
  1611. "level": 0,
  1612. "quantity": 1,
  1613. "plugs": []
  1614. },
  1615. "emote": {
  1616. "instance_soid": "0x40000000000000D7",
  1617. "definition_hash": "0x7979AE7D",
  1618. "level": 0,
  1619. "quantity": 1,
  1620. "plugs": []
  1621. },
  1622. "finisher": {
  1623. "instance_soid": "0x4000000000000102",
  1624. "definition_hash": "0x09183EEF",
  1625. "level": 0,
  1626. "quantity": 1,
  1627. "plugs": []
  1628. },
  1629. "artifact": {
  1630. "instance_soid": "0x4000000000000105",
  1631. "definition_hash": "0x613A3DA6",
  1632. "level": 0,
  1633. "quantity": 1,
  1634. "plugs": null
  1635. }
  1636. },
  1637. "inventory": [
  1638. {
  1639. "instance_soid": "0x40000000000000D9",
  1640. "definition_hash": "0x3E7B47F8",
  1641. "level": 106,
  1642. "quantity": 1,
  1643. "plugs": null
  1644. },
  1645. {
  1646. "instance_soid": "0x40000000000000DA",
  1647. "definition_hash": "0x26275FBA",
  1648. "level": 106,
  1649. "quantity": 1,
  1650. "plugs": null
  1651. },
  1652. {
  1653. "instance_soid": "0x40000000000000DB",
  1654. "definition_hash": "0xE9E6B958",
  1655. "level": 106,
  1656. "quantity": 1,
  1657. "plugs": null
  1658. },
  1659. {
  1660. "instance_soid": "0x40000000000000DC",
  1661. "definition_hash": "0xCA3F1095",
  1662. "level": 106,
  1663. "quantity": 1,
  1664. "plugs": null
  1665. },
  1666. {
  1667. "instance_soid": "0x40000000000000DD",
  1668. "definition_hash": "0xC4916786",
  1669. "level": 106,
  1670. "quantity": 1,
  1671. "plugs": null
  1672. },
  1673. {
  1674. "instance_soid": "0x40000000000000DE",
  1675. "definition_hash": "0xA25B8F8F",
  1676. "level": 106,
  1677. "quantity": 1,
  1678. "plugs": null
  1679. },
  1680. {
  1681. "instance_soid": "0x40000000000000DF",
  1682. "definition_hash": "0xDC0DA337",
  1683. "level": 106,
  1684. "quantity": 1,
  1685. "plugs": null
  1686. },
  1687. {
  1688. "instance_soid": "0x40000000000000E0",
  1689. "definition_hash": "0xDEF8BAA5",
  1690. "level": 106,
  1691. "quantity": 1,
  1692. "plugs": null
  1693. },
  1694. {
  1695. "instance_soid": "0x40000000000000E1",
  1696. "definition_hash": "0xDBF8EB6E",
  1697. "level": 106,
  1698. "quantity": 1,
  1699. "plugs": null
  1700. },
  1701. {
  1702. "instance_soid": "0x40000000000000E2",
  1703. "definition_hash": "0x5CA160F5",
  1704. "level": 106,
  1705. "quantity": 1,
  1706. "plugs": null
  1707. },
  1708. {
  1709. "instance_soid": "0x40000000000000E3",
  1710. "definition_hash": "0x0DB45944",
  1711. "level": 106,
  1712. "quantity": 1,
  1713. "plugs": null
  1714. },
  1715. {
  1716. "instance_soid": "0x40000000000000E4",
  1717. "definition_hash": "0xC9F7B53C",
  1718. "level": 106,
  1719. "quantity": 1,
  1720. "plugs": null
  1721. },
  1722. {
  1723. "instance_soid": "0x40000000000000E5",
  1724. "definition_hash": "0x80C7AB6E",
  1725. "level": 106,
  1726. "quantity": 1,
  1727. "plugs": null
  1728. },
  1729. {
  1730. "instance_soid": "0x40000000000000E6",
  1731. "definition_hash": "0x326316B1",
  1732. "level": 106,
  1733. "quantity": 1,
  1734. "plugs": null
  1735. },
  1736. {
  1737. "instance_soid": "0x40000000000000E7",
  1738. "definition_hash": "0x0B117DAB",
  1739. "level": 106,
  1740. "quantity": 1,
  1741. "plugs": null
  1742. },
  1743. {
  1744. "instance_soid": "0x40000000000000E8",
  1745. "definition_hash": "0xA496C19A",
  1746. "level": 106,
  1747. "quantity": 1,
  1748. "plugs": null
  1749. },
  1750. {
  1751. "instance_soid": "0x40000000000000E9",
  1752. "definition_hash": "0xAA71C8EE",
  1753. "level": 106,
  1754. "quantity": 1,
  1755. "plugs": null
  1756. },
  1757. {
  1758. "instance_soid": "0x40000000000000EA",
  1759. "definition_hash": "0x0B4089D4",
  1760. "level": 106,
  1761. "quantity": 1,
  1762. "plugs": null
  1763. },
  1764. {
  1765. "instance_soid": "0x40000000000000EB",
  1766. "definition_hash": "0xD6B2A7B7",
  1767. "level": 106,
  1768. "quantity": 1,
  1769. "plugs": null
  1770. },
  1771. {
  1772. "instance_soid": "0x40000000000000EC",
  1773. "definition_hash": "0x5B1ACD6C",
  1774. "level": 106,
  1775. "quantity": 1,
  1776. "plugs": null
  1777. },
  1778. {
  1779. "instance_soid": "0x40000000000000ED",
  1780. "definition_hash": "0x28B26925",
  1781. "level": 106,
  1782. "quantity": 1,
  1783. "plugs": null
  1784. },
  1785. {
  1786. "instance_soid": "0x40000000000000EE",
  1787. "definition_hash": "0xDC124D7B",
  1788. "level": 106,
  1789. "quantity": 1,
  1790. "plugs": null
  1791. },
  1792. {
  1793. "instance_soid": "0x40000000000000EF",
  1794. "definition_hash": "0x3D663DA7",
  1795. "level": 106,
  1796. "quantity": 1,
  1797. "plugs": null
  1798. },
  1799. {
  1800. "instance_soid": "0x40000000000000F0",
  1801. "definition_hash": "0x7A1FC812",
  1802. "level": 106,
  1803. "quantity": 1,
  1804. "plugs": null
  1805. },
  1806. {
  1807. "instance_soid": "0x40000000000000F1",
  1808. "definition_hash": "0x3083B063",
  1809. "level": 0,
  1810. "quantity": 1,
  1811. "plugs": null
  1812. },
  1813. {
  1814. "instance_soid": "0x40000000000000F2",
  1815. "definition_hash": "0x2E71E54E",
  1816. "level": 0,
  1817. "quantity": 1,
  1818. "plugs": null
  1819. },
  1820. {
  1821. "instance_soid": "0x40000000000000F3",
  1822. "definition_hash": "0x4E86F9EC",
  1823. "level": 0,
  1824. "quantity": 1,
  1825. "plugs": null
  1826. },
  1827. {
  1828. "instance_soid": "0x40000000000000F4",
  1829. "definition_hash": "0xC9993382",
  1830. "level": 0,
  1831. "quantity": 1,
  1832. "plugs": null
  1833. },
  1834. {
  1835. "instance_soid": "0x40000000000000F5",
  1836. "definition_hash": "0xA984374D",
  1837. "level": 0,
  1838. "quantity": 1,
  1839. "plugs": null
  1840. },
  1841. {
  1842. "instance_soid": "0x40000000000000F6",
  1843. "definition_hash": "0x28155DF4",
  1844. "level": 0,
  1845. "quantity": 1,
  1846. "plugs": null
  1847. },
  1848. {
  1849. "instance_soid": "0x40000000000000F7",
  1850. "definition_hash": "0xD4753C25",
  1851. "level": 0,
  1852. "quantity": 1,
  1853. "plugs": null
  1854. },
  1855. {
  1856. "instance_soid": "0x40000000000000F8",
  1857. "definition_hash": "0xC7CBC15C",
  1858. "level": 0,
  1859. "quantity": 1,
  1860. "plugs": null
  1861. },
  1862. {
  1863. "instance_soid": "0x40000000000000F9",
  1864. "definition_hash": "0x11C83768",
  1865. "level": 0,
  1866. "quantity": 1,
  1867. "plugs": null
  1868. },
  1869. {
  1870. "instance_soid": "0x40000000000000FA",
  1871. "definition_hash": "0x58E8183A",
  1872. "level": 0,
  1873. "quantity": 1,
  1874. "plugs": null,
  1875. "flags": 0
  1876. },
  1877. {
  1878. "instance_soid": "0x40000000000000FB",
  1879. "definition_hash": "0x58F778E0",
  1880. "level": 0,
  1881. "quantity": 1,
  1882. "plugs": null,
  1883. "flags": 0
  1884. },
  1885. {
  1886. "instance_soid": "0x40000000000000FC",
  1887. "definition_hash": "0xCABFBE57",
  1888. "level": 0,
  1889. "quantity": 1,
  1890. "plugs": null,
  1891. "flags": 0
  1892. },
  1893. {
  1894. "instance_soid": "0x40000000000000D8",
  1895. "definition_hash": "0x0F2B9504",
  1896. "level": 0,
  1897. "quantity": 1,
  1898. "plugs": null,
  1899. "flags": 0
  1900. },
  1901. {
  1902. "instance_soid": "0x40000000000000FD",
  1903. "definition_hash": "0xF5095792",
  1904. "level": 0,
  1905. "quantity": 1,
  1906. "plugs": null
  1907. },
  1908. {
  1909. "instance_soid": "0x40000000000000FE",
  1910. "definition_hash": "0xEEF8905A",
  1911. "level": 0,
  1912. "quantity": 1,
  1913. "plugs": null
  1914. },
  1915. {
  1916. "instance_soid": "0x40000000000000FF",
  1917. "definition_hash": "0x6846D9F9",
  1918. "level": 0,
  1919. "quantity": 1,
  1920. "plugs": null
  1921. }
  1922. ]
  1923. }
  1924. ]
  1925. }
  1926. }