-
Notifications
You must be signed in to change notification settings - Fork 2
/
BRConfig.lua
1523 lines (1469 loc) · 118 KB
/
BRConfig.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
brConfig = {}
brConfig.scriptName = "TES3MP-Battle-Royale"
brConfig.defaultConfig = {
debugLevel = 0,
fogWarnFilePath = tes3mp.GetDataPath() .. "/map/fogwarn.png",
fog1FilePath = tes3mp.GetDataPath() .. "/map/fog1.png",
fog2FilePath = tes3mp.GetDataPath() .. "/map/fog2.png",
fog3FilePath = tes3mp.GetDataPath() .. "/map/fog3.png",
-- TODO: will this even work?
fogFilePaths = {fogWarnFilePath, fog1FilePath, fog2FilePath, fog3FilePath},
-- default stats for players
defaultStats = {
playerLevel = 1,
playerAttributes = 80,
playerSkills = 80,
playerHealth = 200,
playerMagicka = 100,
playerFatigue = 300,
playerLuck = 100,
playerSpeed = 75,
playerAcrobatics = 70,
playerMarksman = 150
},
-- defines the type and size of each zone
-- zones are either cell-based or geometry-based. 0 = cell, 1 = geo
-- size of zone is *diameter* of the zone. One cell unit is 8192 geometry units {type, units}
-- the last one has size of 0, which results in a single cell (provided cell-centre-based logic)
zoneSizes = {{0, 14},{0,10},{0,6},{0,3},{0,1},{0,0}}
}
brConfig.config = DataManager.loadConfiguration(brConfig.scriptName, brConfig.defaultConfig)
-- print out a lot more messages about what script is doing
-- TODO: properly define debug levels
brConfig.debugLevel = 0
-- what is the starting fog stage with just 2 players
brConfig.defaultMatchStage = 4
-- determines what the initial stage of match will be
-- {4, 6, 10, 15} - 2-4 players = stage 4, 5-6 = stage 3, 7-10 = stage 2, 10+ = stage 1
brConfig.playerCountStageMapping = {4, 6, 10}
-- how fast time passes
-- you will most likely want this to be very low in order to have skybox remain the same
--brConfig.timeScale = 0.1
-- determines default time of day, can be used to regulate brightness
--brConfig.timeOfDay = 9
-- determines default weather
--brConfig.weather = 0
-- Determines if the effects from player's chosen race get applied
--brConfig.allowRacePowers = false
-- Determines if the effects from player's chosen celestial sign get applied
--brConfig.allowSignPowers = false
-- Determines if it is possible to use different presets of equipment / stats
--brConfig.allowClasses = true
-- Determines if players are allowed to move into cells that are not part of exterior
--brConfig.allowEnteringInteriorCells = false
-- Determines if unique (as in named, non-generic) items will spawn among loot
brConfig.allowUniqueItems = true
-- Will loot get spawned only in the initial safe-zone or across whole map
-- TODO: rework loot spawn logic to accout for this option
--brConfig.spawnLootOnlyInPlayableArea = true
-- Determines if the GhostFence (magic border around Red Mountain) will be there during the match
brConfig.enableGhostfence = true
-- define image files for map
brConfig.fogWarnFilePath = tes3mp.GetDataPath() .. "/map/fogwarn.png"
brConfig.fog1FilePath = tes3mp.GetDataPath() .. "/map/fog1.png"
brConfig.fog2FilePath = tes3mp.GetDataPath() .. "/map/fog2.png"
brConfig.fog3FilePath = tes3mp.GetDataPath() .. "/map/fog3.png"
brConfig.fogFilePaths = {fogWarnFilePath, fog1FilePath, fog2FilePath, fog3FilePath}
-- default stats for players
brConfig.defaultStats = {
playerLevel = 1,
playerAttributes = 80,
playerSkills = 80,
playerHealth = 200,
playerMagicka = 100,
playerFatigue = 300,
playerLuck = 100,
playerSpeed = 75,
playerAcrobatics = 70,
playerMarksman = 150
}
-- defines the type and size of each zone
-- zones are either cell-based or geometry-based. 0 = cell, 1 = geo
-- size of zone is *diameter* of the zone. One cell unit is 8192 geometry units {type, units}
-- the last one has size of 0, which results in a single cell (provided cell-centre-based logic)
brConfig.zoneSizes = {{0, 14},{0,10},{0,6},{0,3},{0,1},{0,0}}
-- Actual attempt
brConfig.stageDurations = {500, 400, 240, 120, 90, 75, 60, 60, 60, 0}
-- Debug durations, first one for automatic quick iteration, second one for manual control
--stageDurations = {10, 10, 10, 10, 10, 10, 10, 10, 10, 10}
--brConfig.stageDurations = {9000, 9000, 9000, 9000, 9000, 9000, 9000, 9000, 9000, 0}
-- determines the order of how levels increase damage
-- TODO: Would it make more sense to abandon this and instead map values to integers
-- have -1 be "nothing", 0 would be warning, and then positive integers
-- but that would make whole thing less customisable
-- let's keep it like this for now
brConfig.stageDamageLevels = {"warn", 1, 2, 3}
-- TODO: Deprecate
-- used to determine the cell span on which to use the fog logic
-- {{min_X, min_Y},{max_X, max_Y}}
brConfig.mapBorders = {{-15,-15}, {25,25}}
-- used to determine the centre cell for zone-generating logic
brConfig.mapCentre = {5,5}
-- used to determine how many cells away from centre does play area reach
brConfig.mapSize = 20
-- determines how the process for starting the match goes
-- if true, then server periodically proposes new match and starts it if criteria is met (just /ready)
-- if false, then players are in control of proposing a new match (/newmatch then /ready)
brConfig.automaticMatchmaking = true
-- how many seconds does match proposal last
--brConfig.matchProposalTime = 60
brConfig.matchProposalTime = 20
-- ID of the cell that is used for lobby
-- remember that this is case sensitive
brConfig.lobbyCell = "ToddTest"
-- position in lobby cell where player spawns
brConfig.lobbyCoordinates = {2177.776367, 653.002380, -184.874023}
-- how the shrinking zone is called in game
-- start with uppercase because it's at the start of the sentence
brConfig.fogName = "Blight storm"
--fogName = "Blizzard"
-- how long does each stage last, in seconds
-- 15 is about how much time it takes to fall from spawn to the top of Red Mountain.
-- 30 should be enough to fall to any ground safely
-- - apparenlty it is not because of some networking / performance thing. 40 should really be enough though
-- code assumes this config is valid, so don't mess it up
-- airDropStages[stage] = {duration, playerSpeed, enableSlowfall}
brConfig.airDropStages = {}
brConfig.airDropStages[1] = {25, 3000, true}
brConfig.airDropStages[2] = {40, -1, true}
-- limits on how many items can spawn in loot containers (min, max)
brConfig.containerLootLimits = {3, 7}
-- limits on how many items can spawn as ground loot per spawn position (min, max)
brConfig.containerLootLimits = {1, 4}
-- loot tables
-- "loot tables" in vanilla game: https://en.uesp.net/wiki/Morrowind:Leveled_Lists
-- https://en.uesp.net/wiki/Morrowind:Generic_Magic_Clothing
brConfig.lootTables = {
unique = {},
armor = {},
weapons = {},
projectiles = {},
potions = {},
scrolls = {},
ingredients = {},
alchemyTools = {},
clothing = {}
}
-- TODO: sort unique items by types
brConfig.lootTables.unique[1] = {"banhammer_unique"}
brConfig.lootTables.unique[2] = {}
brConfig.lootTables.unique[3] = {}
brConfig.lootTables.unique[4] = {}
brConfig.lootTables.armor[1] = {"cloth bracer left", "cloth bracer right", "left leather bracer", "right leather bracer", "fur_bracer_left", "fur_bracer_right", "netch_leather_gauntlet_left", "netch_leather_gauntlet_right", "fur_gauntlet_left", "fur_gauntlet_right", "chitin guantlet [sic] - left", "chitin guantlet [sic] - right", "netch_leather_boots", "fur_boots", "gondolier_helm", "iron_bracer_left", "iron_bracer_right", "netch_leather_pauldron_left", "netch_leather_pauldron_right", "fur_pauldron_left", "fur_pauldron_right", "chitin boots", "iron_gauntlet_left", "iron_gauntlet_right", "netch_leather_helm", "fur_helm", "chitin pauldron - left", "chitin pauldron - right", "netch_leather_boiled_helm", "chitin helm", "chitin_mask_helm", "mole_crab_helm", "morag_tong_helm", "netch_leather_greaves", "fur_greaves", "chitin_watchman_helm", "iron_pauldron_left", "iron_pauldron_right", "fur_colovian_helm", "templar bracer left", "templar bracer right", "imperial_chain_pauldron_left", "imperial_chain_pauldron_right", "steel_gauntlet_left", "steel_gauntlet_right", "chitin greaves", "dust_adept_helm", "iron_helmet", "imperial left gauntlet", "imperial right gauntlet", "netch_leather_cuirass", "fur_bearskin_cuirass", "fur_cuirass", "imperial_chain_coif_helm", "steel_boots", "iron_greaves", "chitin cuirass", "netch_leather_boiled_cuirass", "netch_leather_shield", "chitin_shield", "nordic_leather_shield", "netch_leather_towershield", "chitin_towershield", "iron_shield", "iron_towershield", "steel_shield", "trollbone_shield"}
brConfig.lootTables.armor[2] = {"steel_pauldron_left", "steel_pauldron_right", "cephalopod_helm", "imperial_chain_greaves", "bonemold_bracer_left", "bonemold_bracer_right", "nordic_iron_helm", "imperial boots", "templar boots", "iron boots", "imperial left pauldron", "imperial right pauldron", "steel_helm", "templar_pauldron_left", "templar_pauldron_right", "imperial_studded_cuirass", "trollbone_helm", "iron_cuirass", "imperial helmet armor", "templar_helmet_armor", "nordic_ringmail_cuirass", "steel_greaves", "imperial_chain_cuirass", "imperial_greaves", "newtscale_cuirass", "heavy_leather_boots", "bonemold_boots", "templar_greaves", "bonemold_pauldron_l", "bonemold_pauldron_r", "bonemold_armun-an_pauldron_l", "bonemold_armun-an_pauldron_r", "silver_helm", "dragonscale_helm", "nordic_iron_cuirass", "bonemold_gah-julan_pauldron_l", "bonemold_gah-julan_pauldron_r", "bonemold_helm", "bonemold_founders_helm", "bonemold_armun-an_helm", "steel_cuirass", "imperial cuirass_armor", "dwemer_bracer_left", "dwemer_bracer_right", "bonemold_gah-julan_helm", "trollbone_cuirass", "bonemold_chuzei_helm", "templar_cuirass", "bonemold_greaves", "silver_cuirass", "dwemer_boots", "imperial shield", "steel_towershield", "bonemold_shield", "dragonscale_towershield", "bonemold_towershield", "bonemold_tshield_hlaaluguard", "bonemold_tshield_redoranguard", "bonemold_tshield_telvanniguard", "dwemer_shield"}
brConfig.lootTables.armor[3] = {"dragonscale_cuirass", "bonemold_cuirass", "bonemold_armun-an_cuirass", "silver_dukesguard_cuirass", "bonemold_gah-julan_cuirass", "dwemer_pauldron_left", "dwemer_pauldron_right", "orcish_bracer_left", "orcish_bracer_right", "dwemer_helm", "dwemer_greaves", "orcish_boots", "orcish_pauldron_left", "orcish_pauldron_right", "dwemer_cuirass", "orcish_helm", "indoril left gauntlet", "indoril right gauntlet", "orcish_greaves", "indoril boots", "dreugh_helm", "indoril pauldron left", "indoril pauldron right", "orcish_cuirass", "indoril helmet", "redoran_master_helm", "glass_bracer_left", "glass_bracer_right", "indoril shield", "orcish_towershield", "dreugh_shield", "glass_shield"}
brConfig.lootTables.armor[4] = {"ebony_bracer_left", "ebony_bracer_right", "dreugh_cuirass", "indoril cuirass", "glass_boots", "glass_pauldron_left", "glass_pauldron_right", "ebony_boots", "glass_helm", "ebony_pauldron_left", "ebony_pauldron_right", "daedric_fountain_helm", "daedric_terrifying_helm", "daedric_gauntlet_left", "daedric_gauntlet_right", "ebony_closed_helm", "daedric_god_helm", "glass_greaves", "daedric_boots", "ebony_greaves", "daedric_pauldron_left", "daedric_pauldron_right", "glass_cuirass", "ebony_cuirass", "daedric_greaves", "daedric_cuirass", "ebony_shield", "glass_towershield", "ebony_towershield", "daedric_shield", "daedric_towershield"}
brConfig.lootTables.weapons[1] = { "chitin club", "chitin dagger", "miner's pick", "wooden staff", "iron club", "iron dagger", "chitin shortsword", "chitin spear", "iron tanto", "spiked club", "chitin war axe", "steel club", "steel dagger", "iron shortsword", "iron spear", "Iron Long Spear", "iron mace", "iron wakizashi", "iron saber", "steel staff", "steel tanto", "iron war axe", "imperial shortsword", "iron broadsword", "iron warhammer", "silver dagger", "steel shortsword", "iron longsword", "steel spear", "iron halberd", "steel mace", "steel wakizashi", "chitin short bow", "long bow"}
brConfig.lootTables.weapons[2] = { "steel saber", "iron battle axe", "silver staff", "steel axe", "steel war axe", "nordic battle axe", "steel broadsword", "imperial broadsword", "steel warhammer", "silver shortsword", "steel longsword", "iron claymore", "steel halberd", "silver spear", "nordic broadsword", "steel battle axe", "steel katana", "silver war axe", "silver longsword", "steel claymore", "nordic claymore", "dreugh club", "steel dai-katana", "dwarven shortsword", "dwarven spear", "silver claymore", "dwarven mace", "dreugh staff", "dwarven war axe", "dwarven warhammer", "dwarven halberd", "dwarven battle axe", "short bow", "steel longbow", "steel crossbow"}
brConfig.lootTables.weapons[3] = { "dwarven claymore", "foeburner", "orcish warhammer", "orcish battle axe", "glass dagger", "6th bell hammer", "glass staff", "ebony staff", "daedric club", "daedric dagger", "ebony shortsword", "ebony spear", "glass war axe", "ebony mace", "daedric staff", "daedric tanto", "bonemold long bow"}
brConfig.lootTables.weapons[4] = { "ebony war axe", "ebony broadsword", "glass longsword", "glass halberd", "daedric shortsword", "ebony longsword", "daedric spear", "daedric mace", "daedric war axe", "daedric warhammer", "glass claymore", "daedric longsword", "daedric wakizashi", "daedric battle axe", "daedric katana", "daedric claymore", "daedric dai-katana", "dwarven crossbow", "daedric long bow"}
brConfig.lootTables.projectiles[1] = {"corkbulb arrow", "chitin arrow", "iron arrow", "iron bolt", "bonemold arrow", "steel arrow", "steel bolt", "bonemold bolt", "silver arrow"}
brConfig.lootTables.projectiles[2] = {"iron throwing knife", "chitin throwing star", "steel throwing star", "orcish bolt", "steel throwing knife", "corkbulb bolt", "steel dart", "silver dart", "glass arrow"}
brConfig.lootTables.projectiles[3] = {"silver bolt", "ebony arrow", "silver throwing star", "glass throwing knife"}
brConfig.lootTables.projectiles[4] = {"glass throwing star", "daedric arrow", "ebony dart", "ebony throwing star", "daedric dart"}
brConfig.lootTables.potions[1] = {"p_restore_fatigue_c", "p_restore_health_c", "p_restore_intelligence_c", "p_restore_luck_c", "p_restore_magicka_c", "p_restore_personality_c", "p_restore_speed_c", "p_restore_strength_c", "p_restore_willpower_c", "p_levitation_c", "p_shock_resistance_c", "p_spell_absorption_c", "Potion_Local_Brew_01", "potion_comberry_wine_01", "p_drain_luck_q", "p_drain_strength_q", "p_drain willpower_q", "p_drain_magicka_q", "p_drain_speed_q", "p_drain_intelligence_q", "p_drain_personality_q", "p_drain_agility_q", "p_drain_endurance_q", "p_disease_resistance_b", "p_fire_resistance_b", "p_fortify_agility_b", "p_fortify_endurance_b", "p_fortify_fatigue_b", "p_fortify_health_b", "p_fortify_intelligence_b", "p_fortify_magicka_b", "p_fortify_personality_b", "p_fortify_strength_b", "p_fortify_willpower_b", "p_frost_resistance_b", "p_lightning shield_b", "p_magicka_resistance_b", "p_poison_resistance_b", "p_burden_b", "p_feather_b", "p_fire_shield_b", "p_fortify_luck_b", "p_fortify_speed_b", "p_frost_shield_b", "p_invisibility_b", "p_jump_b", "p_light_b", "p_night-eye_b", "p_paralyze_b", "p_reflection_b", "p_chameleon_b", "p_silence_b", "p_swift_swim_b", "p_restore_agility_b", "p_restore_endurance_b", "p_restore_fatigue_b", "p_restore_health_b", "p_restore_intelligence_b", "p_restore_luck_b", "p_restore_magicka_b", "p_restore_personality_b", "p_restore_speed_b", "p_restore_strength_b", "p_restore_willpower_b", "p_levitation_b", "p_shock_resistance_b", "p_spell_absorption_b"}
brConfig.lootTables.potions[2] = {"p_frost_shield_s", "p_invisibility_s", "p_jump_s", "p_light_s", "p_night-eye_s", "p_paralyze_s", "p_reflection_s", "p_restore_luck_s", "p_chameleon_s", "p_silence_s", "p_frost_resistance_s", "p_restore_agility_s", "p_restore_endurance_s", "p_restore_fatigue_s", "p_restore_health_s", "p_restore_intelligence_s", "p_restore_magicka_s", "p_restore_personality_s", "p_restore_speed_s", "p_restore_strength_s", "p_restore_willpower_s", "p_levitation_s", "p_shock_resistance_s", "p_spell_absorption_s", "potion_comberry_brandy_01", "p_cure_blight_s", "potion_local_liquor_01", "p_cure_common_s", "p_cure_paralyzation_s", "p_cure_poison_s", "p_disease_resistance_c", "p_fire_resistance_c", "p_fortify_agility_c", "p_fortify_endurance_c", "p_fortify_fatigue_c", "p_fortify_intelligence_c", "p_fortify_personality_c", "p_fortify_strength_c", "p_fortify_willpower_c", "p_frost_resistance_c", "p_lightning shield_c", "p_magicka_resistance_c", "p_poison_resistance_c", "p_burden_c", "p_feather_c", "p_fire_shield_c", "p_fortify_health_c", "p_fortify_luck_c", "p_fortify_magicka_c", "p_fortify_speed_c", "p_frost_shield_c", "p_invisibility_c", "p_jump_c", "p_light_c", "p_night-eye_c", "p_paralyze_c", "p_reflection_c", "p_chameleon_c", "p_silence_c", "p_swift_swim_c", "p_restore_agility_c", "p_restore_endurance_c"}
brConfig.lootTables.potions[3] = {"p_fortify_willpower_q", "p_frost_resistance_q", "p_frost_shield_q", "p_lightning shield_q", "p_magicka_resistance_q", "p_poison_resistance_q", "p_burden_q", "p_feather_q", "p_fire_shield_q", "p_fortify_luck_q", "p_fortify_speed_q", "p_invisibility_q", "p_jump_q", "p_light_q", "p_night-eye_q", "p_paralyze_q", "p_reflection_q", "p_chameleon_q", "p_silence_q", "p_swift_swim_q", "p_restore_agility_q", "p_restore_endurance_q", "p_restore_fatigue_q", "p_restore_health_q", "p_restore_intelligence_q", "p_restore_luck_q", "p_restore_magicka_q", "p_restore_personality_q", "p_restore_speed_q", "p_restore_strength_q", "p_restore_willpower_q", "P_Levitation_Q", "p_shock_resistance_q", "p_spell_absorption_q", "p_lovepotion_unique", "p_detect_creatures_s", "p_detect_enchantment_s", "p_detect_key_s", "p_dispel_s", "p_almsivi_intervention_s", "p_mark_s", "p_recall_s", "p_slowfall_s", "p_telekinesis_s", "p_water_breathing_s", "p_water_walking_s", "p_disease_resistance_s", "p_fire resistance_s", "p_fortify_agility_s", "p_fortify_endurance_s", "p_fortify_fatigue_s", "p_fortify_health_s", "p_fortify_intelligence_s", "p_fortify_luck_s", "p_fortify_magicka_s", "p_fortify_personality_s", "p_fortify_speed_s", "p_fortify_strength_s", "p_fortify_willpower_s", "p_lightning shield_s", "p_magicka_resistance_s", "p_poison_resistance_s", "p_burden_s", "p_fire_shield_s"}
brConfig.lootTables.potions[4] = {"p_heroism_s", "potion_skooma_01", "p_vintagecomberrybrandy1", "p_disease_resistance_e", "p_fire_resistance_e", "p_fortify_agility_e", "p_fortify_attack_e", "p_fortify_endurance_e", "p_fortify_fatigue_e", "p_fortify_health_e", "p_fortify_intelligence_e", "p_fortify_luck_e", "p_fortify_magicka_e", "p_fortify_personality_e", "p_fortify_speed_e", "p_fortify_strength_e", "p_fortify_willpower_e", "p_frost_resistance_e", "p_frost_shield_e", "p_invisibility_e", "p_lightning shield_e", "p_magicka_resistance_e", "p_poison_resistance_e", "p_burden_e", "p_feather_e", "p_fire_shield_e", "p_jump_e", "p_light_e", "p_night-eye_e", "p_paralyze_e", "p_reflection_e", "p_chameleon_e", "p_silence_e", "p_swift_swim_e", "p_restore_agility_e", "p_restore_endurance_e", "p_restore_fatigue_e", "p_restore_health_e", "p_restore_intelligence_e", "p_restore_luck_e", "p_restore_magicka_e", "p_restore_personality_e", "p_restore_speed_e", "p_restore_strength_e", "p_restore_willpower_e", "p_levitation_e", "p_shock_resistance_e", "p_spell_absorption_e", "potion_cyro_brandy_01", "Potion_Cyro_Whiskey_01", "potion_t_bug_musk_01", "p_cure_common_unique", "p_disease_resistance_q", "p_fire_resistance_q", "p_fortify_agility_q", "p_fortify_endurance_q", "p_fortify_fatigue_q", "p_fortify_health_q", "p_fortify_intelligence_q", "p_fortify_magicka_q", "p_fortify_personality_q", "p_fortify_strength_q"}
brConfig.lootTables.scrolls[1] = {"sc_savagemight", "sc_shockbane", "sc_summonskeletalservant", "sc_telvinscourage", "sc_tendilstrembling", "sc_tevilspeace", "sc_tevralshawkshaw", "sc_dawnsprite", "sc_gamblersprayer", "sc_mageseye", "sc_oathfast", "sc_thirdbarrier", "sc_tinurshoptoad", "sc_toususabidingbeast", "sc_ulmjuicedasfeather", "sc_vigor", "sc_vitality", "sc_healing", "sc_radrenesspellbreaker", "sc_salensvivication", "sc_cureblight_ranged", "sc_secondbarrier", "sc_inaschastening", "sc_leaguestep", "sc_mark", "sc_daerirsmiracle", "sc_drathiswinterguest", "sc_taldamsscorcher", "sc_FiercelyRoastThyEnemy_unique", "sc_ondusisunhinging", "sc_firstbarrier", "sc_almsiviintervention", "sc_divineintervention", "sc_galmsesseal", "sc_daydenespanacea"}
brConfig.lootTables.scrolls[2] = {"sc_daynarsairybubble", "sc_didalasknack", "sc_feldramstrepidation", "sc_flamebane", "sc_frostbane", "sc_gonarsgoad", "sc_greydeath", "sc_greydespair", "sc_greyfate", "sc_greymind", "sc_greyscorn", "sc_greysloth", "sc_greyweakness", "sc_heartwise", "sc_inasismysticfinger", "sc_insight", "sc_invisibility", "sc_llirosglowingeye", "sc_mageweal", "sc_manarape", "sc_mondensinstigator", "sc_nerusislockjaw", "sc_princeovsbrightball", "sc_reddeath", "sc_reddespair", "sc_redfate", "sc_redmind", "sc_redscorn", "sc_redsloth", "sc_redweakness", "sc_reynosbeastfinder"}
brConfig.lootTables.scrolls[3] = {"sc_restoration", "sc_warriorsblessing", "sc_hellfire", "sc_reynosfins", "sc_blackdeath", "sc_blackdespair", "sc_blackfate", "sc_blackmind", "sc_blackscorn", "sc_blacksloth", "sc_blackweakness", "sc_flameguard", "sc_frostguard", "sc_shockguard", "sc_blackstorm", "sc_fourthbarrier", "sc_alvusiaswarping", "sc_elevramssty", "sc_fadersleadenflesh", "sc_radiyasicymask", "sc_selisfieryward", "sc_stormward", "sc_vaerminaspromise", "sc_selynsmistslippers", "sc_sertisesporphyry", "sc_icarianflight", "sc_purityofbody", "sc_dedresmasterfuleye", "sc_bloodfire", "sc_brevasavertedeyes", "sc_celerity"}
brConfig.lootTables.scrolls[4] = {"sc_windwalker", "sc_supremedomination", "sc_greaterdomination", "sc_ninthbarrier", "sc_summongoldensaint", "sc_argentglow", "sc_ekashslocksplitter", "sc_lesserdomination", "sc_lordmhasvengeance", "sc_uthshandofheaven", "sc_windform", "sc_psychicprison", "sc_summonfrostatronach", "sc_balefulsuffering", "sc_bloodthief", "sc_mindfeeder", "sc_corruptarcanix", "sc_summonflameatronach", "sc_tranasasspellmire", "sc_tranasasspelltrap", "sc_tranasasspelltwist", "sc_fphyggisgemfeeder", "sc_elementalburstshock", "sc_sixthbarrier", "sc_drathissoulrot", "sc_elementalburstfire", "sc_elementalburstfrost", "sc_illneasbreath", "sc_golnaraseyemaze", "sc_fifthbarrier"}
brConfig.lootTables.ingredients[1] = {}
brConfig.lootTables.ingredients[2] = {}
brConfig.lootTables.ingredients[3] = {}
brConfig.lootTables.ingredients[4] = {}
brConfig.lootTables.alchemyTools[1] = {}
brConfig.lootTables.alchemyTools[2] = {}
brConfig.lootTables.alchemyTools[3] = {}
brConfig.lootTables.alchemyTools[4] = {}
brConfig.lootTables.clothing[1] = {}
brConfig.lootTables.clothing[2] = {}
brConfig.lootTables.clothing[3] = {}
brConfig.lootTables.clothing[4] = {}
-- Used to split all the loot positions into groups
-- this allows for more fine control over loot distribution
-- while "area" is priparily meant as "geographical part of map", it can also be used as "category"
-- meaning that you can have for example group named "alwaysHasUnique" where amount of unique items is equal to number of spawn locations
-- structure is the following:
-- area = {{number of crates by tiers}, {number of ground positions by tiers}, {number of unique items by tiers},
-- lootSpawnPositions = {tier1,tier2,tier3,tier4}}
-- could add a "randomOrder = boolean" if needed, that would indicate wheather lootSpawnPositions should be shuffled or not
brConfig.lootSpawnAreas = {
-- calderaTest - tier1 = 4, tier2 = 4, tier3 = 4, tier4 = 4
--calderaTest = {containerCount = {5,4,3,2}, groundLootCount = {1,2,3,4}, uniqueItemCount = {0,0,0,0}, lootSpawnPositions = {}},
-- uncategorised - tier1 = 439, tier2 = 363, tier3 = 283, tier4 = 148
uncategorised = {containerCount = {20,15,10,10}, groundLootCount = {250,200,180,90}, uniqueItemCount = {0,0,0,0}, lootSpawnPositions = {}}
}
-- x, z, y so spawning function has to be adjusted
-- brConfig.lootSpawnAreas.area.lootSpawnPositions[tier] ={
-- {cell, x, z, y, rot_z, type (optional)}
--}
--[[
brConfig.lootSpawnAreas.calderaTest.lootSpawnPositions[1] = {
{"-2, 2", -11095.79296875, 1344.9350585938, 19786.84765625, 1.5708},
{"-2, 2", -10872.071289062, 1337.501953125, 19796.1796875, 1.5708},
{"-2, 2", -11594.291992188, 1344.9350585938, 19777.515625, 1.5708},
{"-2, 2", -11337.069335938, 1344.9350585938, 19776.5703125, 1.5708}
}
brConfig.lootSpawnAreas.calderaTest.lootSpawnPositions[2] = {
{"-2, 2", -10873.672851562, 1337.39453125, 19485.53515625, 1.5708},
{"-2, 2", -11329.471679688, 1345.39453125, 19498.607421875, 1.5708},
{"-2, 2", -11097.1953125, 1342.9770507812, 19496.623046875, 1.5708},
{"-2, 2", -11607.515625, 1345.39453125, 19497.453125, 1.5708}
}
brConfig.lootSpawnAreas.calderaTest.lootSpawnPositions[3] = {
{"-2, 2", -12893.276367188, 1537.39453125, 20737.009765625, 0},
{"-2, 2", -12904.559570312, 1537.39453125, 20222.158203125, 0},
{"-2, 2", -12902.741210938, 1537.3946533203, 19984.95703125, 0},
{"-2, 2", -12920.780273438, 1537.39453125, 20481.48828125, 0}
}
brConfig.lootSpawnAreas.calderaTest.lootSpawnPositions[4] = {
{"-2, 2", -13099.45703125, 1537.3944091797, 19978.291015625, 0},
{"-2, 2", -13101.853515625, 1537.39453125, 20222.556640625, 0},
{"-2, 2", -13090.15625, 1537.3946533203, 20735.109375, 0},
{"-2, 2", -13098.310547, 1537.000000, 20463.625000, 0}
}
--]]
brConfig.lootSpawnAreas.uncategorised.lootSpawnPositions[1] = {
{"0, -10", 3615.4089355469, 238.39149475098, -75070.078125, 2.9659731388092},
{"0, -11", 1513.8773193359, 69.40788269043, -86654.7890625, 1.4516069889069},
{"0, 16", 6474.7709960938, 704.51873779297, 137236.46875, 2.783623456955},
{"0, -1", 6482.7319335938, 824.80108642578, -6509.6826171875, 3.0332148075104},
{"0, 24", 5596.1586914062, 75.414154052734, 200477.703125, 2.9684593677521},
{"0, 5", 7364.150390625, 6213.4638671875, 45330.921875, -0.89311146736145},
{"0, -6", 5884.2348632812, 159.97579956055, -46943.140625, -0.40541481971741},
{"0, 6", 6912.1416015625, 8936.7080078125, 52300.7890625, -0.07014012336731},
{"0, -7", 5546.0454101562, 1665.9368896484, -57136.6796875, -3.0879437923431},
{"0, -7", 2441.4118652344, 1497.0754394531, -56702.03515625, -1.7636897563934},
{"0, -7", 1376.4844970703, 869.22503662109, -54296.8984375, -1.4395062923431},
{"0, -7", 1130.1740722656, 1343.4400634766, -56610.34375, -1.4902522563934},
{"0, -7", 720.74505615234, 517.88098144531, -53085.74609375, -1.2676312923431},
{"0, -7", 3816.07421875, 1628.6131591797, -56198.6875, -1.6699397563934},
{"0, -7", 4050.9670410156, 1634.8619384766, -55469.44140625, -3.1289417743683},
{"0, -8", 6714.04296875, 163.96472167969, -64083.04296875, -0.35072731971741},
{"0, -8", 736.12463378906, 1377.5841064453, -57592.62109375, 0.14055418968201},
{"10, 0", 83518.703125, 760.02185058594, 6215.623046875, 2.7883741855621},
{"-10, 10", -76817.1171875, 82.982284545898, 85213.609375, -0.81154561042786},
{"10, -11", 86332.859375, 461.90856933594, -87471.046875, 2.9232652187347},
{"-10, 12", -80397.4375, 1210.6234130859, 99412.078125, -0.3828125},
{"10, -12", 85771.5703125, 197.02565002441, -94771.90625, -0.4375},
{"-10, 13", -77564.546875, 1016.0218505859, 111226.03125, 2.1975386142731},
{"10, 14", 88119.6875, 3436.8298339844, 119875.6953125, 2.560494184494},
{"10, 14", 84240.46875, 3190.4484863281, 117222.828125, 3.0625002384186},
{"10, 14", 87554.828125, 3402.8195800781, 117982.546875, -1.2265622615814},
{"10, 16", 86915.8828125, 749.30358886719, 133720.390625, 2.6153299808502},
{"10, 19", 83334.875, 216.37341308594, 157950.75, 2.2104995250702},
{"10, 3", 86418.421875, 727.43835449219, 27652.54296875, -0.56249976158142},
{"10, 4", 83988.53125, 885.31579589844, 37002.91015625, 0.9655020236969},
{"10, 7", 88493.515625, 1009.6236572266, 59481.8359375, -0.48852276802063},
{"10, 8", 86543.625, 744.43005371094, 70637.109375, -1.4742977619171},
{"1, 0", 9668.22265625, 1732.4459228516, 4624.0268554688, 0.74425673484802},
{"-11, 10", -86706.90625, 1029.181640625, 89504.2109375, -0.040997743606567},
{"11, -10", 94097.5546875, 297.81912231445, -74696.9140625, 2.5927278995514},
{"-11, 11", -86230.9375, 1592.3040771484, 96829.7421875, 1.8633167743683},
{"-11, 11", -85722.0703125, 1002.4945068359, 92199.5625, -1.6894352436066},
{"-11, 11", -87901.859375, 977.14636230469, 92201.7265625, 0.80275225639343},
{"-11, 11", -83674.953125, 1035.6571044922, 93461.1171875, -0.60349774360657},
{"-11, 11", -86858.671875, 987.37634277344, 92800.34375, 2.1230647563934},
{"-11, 11", -87723.328125, 1032.0726318359, 94378.15625, 2.3965022563934},
{"11, 11", 94313.1171875, 1327.8260498047, 97316.84375, 2.5819180011749},
{"11, -12", 91033.921875, 27.15075302124, -93184.171875, 2.7595264911652},
{"-11, 13", -86336.84375, 1978.6241455078, 112655, -1.7903788089752},
{"11, 13", 97809.125, 159.06237792969, 112974.3984375, 2.8593046665192},
{"11, 13", 94119.6796875, 680.02185058594, 110254.109375, -2.7184746265411},
{"11, 14", 95232.65625, 1708.6723632812, 115677.125, 1.615181684494},
{"11, 14", 96453.78125, 1474.2056884766, 115449.296875, -1.5273787975311},
{"11, 14", 94162.140625, 1674.2894287109, 116724.421875, 2.396431684494},
{"11, 14", 94200.421875, 1713.8671875, 117992.03125, -0.99612879753113},
{"-11, 15", -88128.046875, 175.24792480469, 127133.828125, 3.1211287975311},
{"-11, 15", -87638.046875, 433.7373046875, 127210.234375, -0.035121202468872},
{"-11, 15", -86869.921875, 69.161781311035, 128875.015625, 1.5468747615814},
{"-11, 15", -85823.4453125, 172.05651855469, 127918.4765625, 2.0624997615814},
{"-11, 15", -88622.0078125, 52.068607330322, 128025.7578125, -1.4003732204437},
{"-11, 15", -85752.6796875, 384.90417480469, 126901.28125, 0.41800379753113},
{"11, 16", 94445.53125, 900.90563964844, 135692.921875, 3.0429332256317},
{"11, 16", 94924.796875, 815.01794433594, 133571.265625, 2.1132457256317},
{"11, 1", 95524.1484375, 1644.9632568359, 11666.431640625, -0.43437504768372},
{"11, 2", 90862.7890625, 760.02185058594, 18536.125, 0.87500023841858},
{"1, -13", 13125.40625, 728.02185058594, -101688.671875, 1.6406252384186},
{"1, -13", 13922.228515625, 728.02185058594, -100794.890625, 0.062500238418579},
{"1, -13", 15330.1875, 658.333984375, -102556.625, -3.0937497615814},
{"11, -3", 97510.9375, 1181.0684814453, -19184.673828125, 1.5140626430511},
{"11, -5", 95774.2265625, 6489.3676757812, -35658.765625, -0.22856736183167},
{"11, -5", 93713.46875, 6315.5444335938, -39312.609375, 1.0900857448578},
{"11, 5", 92090.3984375, 7.39422082901, 47453.11328125, 1.5325663089752},
{"-11, 8", -87100.71875, 76.799194335938, 69683.5625, 0.57279801368713},
{"11, -8", 96578.609375, 722.64276123047, -59229.12890625, -1.781733751297},
{"1, -1", 15608.047851562, 1108.5186767578, -5210.6323242188, -3.1074345111847},
{"-1, 20", -7553.544921875, 305.09106445312, 171120.4375, -1.577029466629},
{"12, -12", 101173.296875, 119.16984558105, -93554.078125, 1.5815937519073},
{"-12, 13", -95648.59375, 719.74011230469, 112933.1015625, -0.28443026542664},
{"12, 13", 99356.6484375, 216.25109863281, 113733.71875, 1.0624296665192},
{"-12, 14", -95366.3203125, 2188.9270019531, 116929.84375, 2.0202572345734},
{"12, 14", 98802.171875, 276.71667480469, 116399.4609375, 1.6718046665192},
{"12, -1", 102073.1484375, 716.53668212891, -5637.3071289062, 1.1721451282501},
{"12, 1", 102590.7890625, 1307.3646240234, 8308.2734375, -2.1204607486725},
{"12, 1", 102648.703125, 691.52893066406, 11921.111328125, -1.475466966629},
{"12, 2", 103417.4375, 658.22448730469, 21212.7578125, -1.8829596042633},
{"12, -7", 105234.921875, 1454.8392333984, -56765.33203125, 2.4042437076569},
{"12, 7", 104283.609375, 1103.4261474609, 64200.70703125, -2.7596228122711},
{"12, -8", 104386.328125, 645.00354003906, -61330.03515625, 1.9491832256317},
{"12, -8", 106445.296875, 768.02185058594, -61853.203125, -1.5371272563934},
{"12, 9", 102818.2421875, 724.23669433594, 78362.3203125, 2.87388920784},
{"-1, 2", -198.21475219727, 567.24499511719, 22921.568359375, 0.85046696662903},
{"-13, 11", -103115.9453125, 1361.5150146484, 93873.1796875, 2.1888902187347},
{"13, -11", 110795.6484375, 750.67761230469, -85296.578125, -1.6281244754791},
{"13, 11", 110187.5625, 362.71618652344, 91035.7734375, 0.4030020236969},
{"-13, 13", -99375.3984375, 1108.2502441406, 110560.65625, -1.2994349002838},
{"13, -13", 108189.09375, 72.003692626953, -100896.1328125, -0.81664776802063},
{"13, 14", 106930.2109375, 125.21160888672, 120486.59375, -0.39843773841858},
{"13, 14", 107012.109375, 165.74125671387, 117267.703125, -2.5409982204437},
{"13, 14", 110265.765625, 380.72497558594, 119258.375, -2.0566232204437},
{"13, 14", 108183.125, 521.27136230469, 118182.7265625, -3.1034982204437},
{"13, 14", 109408.953125, 114.49450683594, 122217.46875, -2.2694962024689},
{"13, -1", 108882.2421875, 552.02185058594, -3923.5798339844, 1.6171872615814},
{"13, -1", 110127.625, 552.02185058594, -3418.2971191406, -2.5019357204437},
{"13, -1", 110644.328125, 552.02185058594, -4669.322265625, 0.14062476158142},
{"13, 1", 107935.9140625, 1010.1520996094, 12020.638671875, 0.18542122840881},
{"13, -4", 108918.859375, 737.61267089844, -24844.7265625, -0.15243744850159},
{"13, 7", 113574.5, 714.45581054688, 58763.45703125, -1.7336132526398},
{"13, 7", 107661.1640625, 253.64294433594, 62603.2421875, 2.2023537158966},
{"13, -8", 107711.3671875, 576.02185058594, -64228, -0.42775225639343},
{"13, -8", 110674.84375, 576.02185058594, -64344.22265625, -1.5683772563934},
{"13, -8", 112116.9375, 2048.0205078125, -61918.171875, 1.2578122615814},
{"13, -8", 107879.1953125, 576.02185058594, -59350.5859375, 0.69724774360657},
{"13, -8", 109305.828125, 2048.0207519531, -61897.1015625, -0.84375023841858},
{"13, -8", 108036.6328125, 1792.021484375, -63818.73828125, -0.34375023841858},
{"13, -8", 108179.984375, 1792.021484375, -59747.37109375, 1.1796872615814},
{"13, -8", 108010.59375, 1792.021484375, -61782.7890625, 0.007812261581421},
{"13, -8", 113610.3125, 576.02178955078, -59462.24609375, -0.72656273841858},
{"13, -8", 113579.6796875, 576.02185058594, -64238.2734375, -2.2793147563934},
{"13, -8", 110980.6328125, 576.02185058594, -59352.52734375, 1.5722477436066},
{"13, -8", 113311.9375, 1792.0213623047, -61827.2890625, -0.039062738418579},
{"13, -8", 113181.25, 1792.0216064453, -63894.25, -1.9453127384186},
{"13, -9", 111472, 685.71697998047, -71264, -1.6604549884796},
{"-1, -3", -3888.9348144531, 1135.3371582031, -18651.48828125, -0.10156273841858},
{"-1, -3", -5982.8920898438, 1019.8833618164, -18444.177734375, 0.046874761581421},
{"-1, -3", -5064.443359375, 1002.8549194336, -18212.388671875, -1.5937502384186},
{"-1, 3", -6886.5009765625, 1506.79296875, 26535.166015625, -2.7366750240326},
{"1, -3", 14581.23046875, 905.388671875, -17301.869140625, 2.6592819690704},
{"14, -10", 115418.0703125, 310.55184936523, -75080.53125, 0.85378861427307},
{"14, -11", 118050.171875, 572.64001464844, -88984.84375, 0.080626249313354},
{"-14, 13", -111337.4609375, 328.89392089844, 107634.046875, -2.0704596042633},
{"14, -13", 119540.9296875, 289.11828613281, -102483.34375, -1.9961287975311},
{"14, -13", 122588.1015625, 594.24743652344, -102548.59375, -1.1055037975311},
{"14, -13", 119621.40625, 300.72888183594, -104181.53125, 0.13861918449402},
{"14, -13", 118642.6328125, 289.11828613281, -102848.0625, 1.2226212024689},
{"14, -13", 119280.078125, 289.11782836914, -103483.3671875, -0.37112879753113},
{"14, 5", 122729.25, 715.80285644531, 44988.49609375, -2.6573688983917},
{"14, -7", 116707.078125, 1024.7478027344, -52220.00390625, 2.9399268627167},
{"1, -4", 14814.47265625, 794.42340087891, -28305.33984375, 1.5181844234467},
{"15, -10", 129967.9140625, 19.01647567749, -77847.4765625, -2.9449484348297},
{"15, -11", 128882.3984375, 61.54040145874, -88434.765625, -0.64311146736145},
{"15, -13", 125248.8515625, 607.91540527344, -105175.640625, 0.92574620246887},
{"15, -13", 125766.640625, 797.04760742188, -102299.6484375, 2.7616837024689},
{"15, -13", 124388.2890625, 625.75378417969, -105400.2109375, -0.025443315505981},
{"15, -14", 130162.03125, 57.307033538818, -111837.890625, 2.992671251297},
{"15, -15", 123558.09375, 225.71240234375, -114766.28125, -2.4931552410126},
{"15, -1", 126744, 728.02185058594, -4506.9052734375, -1.2669413089752},
{"15, -4", 123794.171875, 4281.0986328125, -27214.9609375, -1.0724651813507},
{"15, 5", 123633.578125, 474.24719238281, 44010.81640625, 2.7117540836334},
{"15, 5", 123790.84375, 767.09411621094, 48329.8671875, 1.6843750476837},
{"15, 5", 125193.578125, 1465.6156005859, 45148.921875, 0.12775206565857},
{"15, 5", 125279.4296875, 1054.4984130859, 46748.47265625, 1.2078125476837},
{"15, 5", 126780.671875, 648.43786621094, 47485.5, 1.5965020656586},
{"15, 6", 125603.234375, 1012.6180419922, 49260.7734375, 1.6296875476837},
{"16, 0", 136463.59375, 353.59573364258, 3765.08984375, -0.94556307792664},
{"16, -2", 132879.71875, 1133.7606201172, -12146.65234375, 1.328608751297},
{"16, 2", 136887.484375, 71.829223632812, 21507.08203125, -0.23021817207336},
{"16, -4", 133036.640625, 1219.5423583984, -28657.04296875, 1.5135366916656},
{"16, 7", 132284.578125, 319.85595703125, 61047.8125, -2.4961407184601},
{"16, -8", 133433.9375, 327.97125244141, -62176.140625, -0.78373646736145},
{"-1, 6", -8056.240234375, 2344.0217285156, 52934.5, 1.5625002384186},
{"17, -4", 142753.703125, 480.62585449219, -30858.841796875, 0.0390625},
{"17, 4", 142181.859375, 238.0961151123, 37691.578125, 0.31443572044373},
{"17, 4", 143213.75, 454.40051269531, 35920.69140625, -1.5683767795563},
{"17, 4", 146516.515625, 504.80041503906, 34847.02734375, -0.88675379753113},
{"17, 6", 144517.15625, 273.32214355469, 52271.8828125, -0.030007123947144},
{"1, -7", 12749.615234375, 79.756866455078, -53541.37890625, 0.097071647644043},
{"18, -2", 150829.875, 244.50854492188, -13156.620117188, 1.5054004192352},
{"18, 3", 150190.265625, 626.31066894531, 29827.658203125, -1.5664412975311},
{"18, 3", 148807.75, 541.39562988281, 32229.48046875, 1.990181684494},
{"18, 3", 149477, 648.02185058594, 28380.685546875, 3.1093046665192},
{"18, 3", 152211.109375, 536.02185058594, 30063.654296875, -2.0430037975311},
{"18, 3", 152186.328125, 531.9814453125, 30784.646484375, -3.119193315506},
{"18, 4", 152408.875, 923.98229980469, 37213.4140625, 2.943306684494},
{"18, 4", 147860.578125, 704.02185058594, 39471.125, 0.042933702468872},
{"18, 4", 149719.703125, 936.83898925781, 40036.77734375, -2.1601912975311},
{"18, 4", 151406.578125, 588.99426269531, 38704.44140625, 1.958931684494},
{"18, -5", 150097.140625, 1208.4046630859, -38610.96484375, -0.056766271591187},
{"1, 8", 8524.1162109375, 10993.634765625, 66277.2734375, 0.026468515396118},
{"19, 0", 157436.171875, 153.29203796387, 1382.8149414062, 1.5028960704803},
{"19, -3", 157016.953125, 351.94958496094, -20481.513671875, 2.8989918231964},
{"19, -5", 160251.53125, 81.737289428711, -35414.953125, 0.01071572303772},
{"19, -5", 160253.140625, 80.080459594727, -36124.02734375, 3.1200907230377},
{"19, -5", 156123.5, 31.37389755249, -34656.68359375, 2.9638407230377},
{"19, -6", 157756.84375, 2224.4631347656, -44525.8359375, -1.8068401813507},
{"19, -7", 158864.453125, 1512.7977294922, -54156.4140625, -1.5587809085846},
{"19, 7", 161539.53125, 451.17205810547, 61718.9453125, 2.0510232448578},
{"19, -8", 160191.96875, 149.33042907715, -64783.6328125, -1.448707818985},
{"-1, -9", -6743.3940429688, 216.04452514648, -67115.515625, -2.9401333332062},
{"-1, -9", -735.08770751953, 598.611328125, -66117.171875, 0.78107786178589},
{"20, 4", 166683.453125, 193.29777526855, 38020.734375, -0.40017342567444},
{"-2, -10", -11197.302734375, 130.60217285156, -74092.9140625, -0.53906226158142},
{"2, -13", 17999.296875, 322.31063842773, -101930.734375, -3.1328122615814},
{"2, -13", 20353.208984375, 72.803153991699, -101471.421875, -1.6640622615814},
{"2, -13", 16416.6953125, 447.11099243164, -101943.703125, -1.5937497615814},
{"2, -13", 20427.556640625, 72.803153991699, -102393.375, -1.5175602436066},
{"2, 13", 20500.232421875, 4760.6215820312, 107649.34375, -1.1698706150055},
{"2, 14", 21024.08203125, 2849.9333496094, 118197.75, 0.56823372840881},
{"2, 15", 19326.767578125, 870.30834960938, 127232.5859375, 0.78332877159119},
{"-2, 16", -11298.5546875, 641.54675292969, 135295.9375, 1.5968754291534},
{"-2, 17", -13172.815429688, 386.45428466797, 142875.734375, 0.24335646629333},
{"2, 19", 18392.654296875, 888.02185058594, 157839.546875, 2.7173054218292},
{"2, 1", 18470.439453125, 1504.8752441406, 13574.827148438, 2.3875005245209},
{"2, 20", 22845.826171875, 488.41293334961, 168624.046875, 0.10861277580261},
{"-2, 21", -14236.171875, 82.100952148438, 175070.734375, 0.22480797767639},
{"2, 22", 21865.396484375, 68.888061523438, 182758.046875, -0.26321339607239},
{"-2, 2", -10378.20703125, 1259.6284179688, 16966.294921875, 3.0976207256317},
{"-2, 2", -12868.166992188, 1536.0218505859, 20151.8828125, 3.0800602436066},
{"-2, 2", -13097.435546875, 1535.5062255859, 21726.814453125, -0.92968773841858},
{"-2, 2", -10484.055664062, 1344.7684326172, 19416.23828125, 2.1034977436066},
{"-2, 2", -8739.5224609375, 1120.0218505859, 19654.4140625, -0.20900225639343},
{"2, 4", 20244.7109375, 1236.0487060547, 38741.859375, 1.3984377384186},
{"2, 4", 21263.009765625, 1229.5979003906, 38760.2265625, 2.7656252384186},
{"-2, -5", -11825.721679688, 242.21337890625, -35833.4921875, 2.0860846042633},
{"-2, 5", -12056.150390625, 2490.0832519531, 41955.43359375, 0.87105870246887},
{"-2, 5", -11981.879882812, 2524.9870605469, 43855.4453125, 2.0273087024689},
{"-2, 5", -13751.704101562, 2492.615234375, 41838.20703125, 1.5781252384186},
{"-2, 5", -13548.930664062, 2543.1557617188, 44026.7890625, 1.6562502384186},
{"-2, 5", -13094.663085938, 2484.9831542969, 42633.95703125, -0.009747743606567},
{"2, 5", 20312.98046875, 1271.6397705078, 41059.94921875, -2.1855642795563},
{"2, 5", 21132.6484375, 1276.6541748047, 41095.234375, 2.2929337024689},
{"-2, -6", -11128.098632812, 744.81665039062, -48259.0859375, 1.7891361713409},
{"-2, 6", -14290.052734375, 2053.3728027344, 50855.66796875, 0.96681475639343},
{"-2, 6", -11460.185546875, 2368.0217285156, 54259.8515625, -1.5644352436066},
{"-2, 6", -12453.3203125, 2573.8227539062, 56540.81640625, -1.6659977436066},
{"2, -6", 20797.248046875, 710.01110839844, -42951.1875, 1.5488107204437},
{"-2, 7", -8795.5986328125, 2570.296875, 58432.4375, -0.90037274360657},
{"2, -7", 18827.4375, 520.73669433594, -56061.3984375, -3.0508167743683},
{"2, -7", 19800.033203125, 744.02185058594, -54569.7578125, 0.042933225631714},
{"2, -7", 22385.017578125, 844.27624511719, -54189.375, -0.019566774368286},
{"2, -7", 17611.30078125, 632.02185058594, -53640.57421875, 1.5741832256317},
{"2, -7", 21139.734375, 646.01428222656, -57332.484375, -0.011754274368286},
{"2, -7", 20046.95703125, 648.02185058594, -53602.02734375, 1.5976207256317},
{"2, -7", 20162.1875, 673.76989746094, -55148.890625, -1.5351917743683},
{"-2, -9", -14315.844726562, 31.916316986084, -71957.84375, 2.0956857204437},
{"-2, -9", -11163.412109375, 234.67517089844, -70741.546875, -0.16406226158142},
{"-2, -9", -13216.071289062, 67.783142089844, -70798.0546875, -0.26562476158142},
{"-2, -9", -11527.0234375, 286.10925292969, -67787.1328125, -0.42187476158142},
{"-2, -9", -11389.610351562, -94.413688659668, -69179.828125, 0.007812738418579},
{"-2, -9", -12438.030273438, -12.68524646759, -66017.34375, 0.023437738418579},
{"2, -9", 18271.126953125, 49.405513763428, -70403.578125, -2.7672121524811},
{"3, -10", 27254.587890625, 1792.0213623047, -77799.75, 0.27544331550598},
{"3, -10", 29915.3046875, 1792.9320068359, -81510.390625, 0.10550379753113},
{"3, -10", 27434.890625, 1792.021484375, -81826.453125, 0.011753797531128},
{"3, -10", 32431.8515625, 1792.0213623047, -81759.7421875, 0.009818315505981},
{"3, -10", 26960.5546875, 576.02178955078, -77463.328125, -0.011683702468872},
{"3, -10", 32410.12109375, 1792.0213623047, -77698.5, -0.021431684494019},
{"3, -11", 26863.78125, 576.02178955078, -82091.765625, 0.011753797531128},
{"3, -11", 26078.28515625, 576.02178955078, -89323.453125, 0.011753797531128},
{"3, -11", 26077.703125, 576.02178955078, -84517.609375, 0.035191297531128},
{"3, -11", 29856.453125, 768.02197265625, -83470.3046875, 0.058628797531128},
{"3, -11", 32116.904296875, 576.02178955078, -89088.8515625, -0.003871202468872},
{"3, -11", 31376.4296875, 766.70861816406, -90040.734375, -0.017560720443726},
{"-3, 12", -20442.890625, 1976.0218505859, 103075.8046875, -1.6581852436066},
{"-3, 12", -22598.572265625, 1968.0218505859, 102292.625, 2.3828127384186},
{"-3, 12", -21650.6640625, 1976.0218505859, 103216.8359375, -2.6034977436066},
{"3, -12", 32177.154296875, 576.02178955078, -90923.8515625, -0.080060720443726},
{"3, -12", 26163.0234375, 576.02185058594, -92806.5859375, 0.005876779556274},
{"3, -12", 32133.376953125, 576.02185058594, -95048.5703125, 0.013689279556274},
{"3, -12", 26179.265625, 576.02178955078, -95594.6953125, -0.009748220443726},
{"3, -12", 30698.70703125, 576.02191162109, -97826.390625, -0.013689756393433},
{"3, -12", 28867.275390625, 576.02185058594, -95876.7421875, -1.5722482204437},
{"3, -12", 32131.240234375, 576.02178955078, -93556.0546875, -3.1054337024689},
{"3, -12", 31675.9765625, 768.02185058594, -96577.375, 0.005876779556274},
{"3, -12", 26205.80078125, 576.02185058594, -90797.7734375, -0.017560720443726},
{"3, -12", 29414.33203125, 576.02185058594, -90780.4375, 1.5371267795563},
{"3, -13", 30785.78515625, 576.02185058594, -103066.8828125, -0.015625238418579},
{"3, -13", 30710.1875, 576.02185058594, -100293.3984375, 0.023437261581421},
{"3, 15", 25567.427734375, 805.46154785156, 128821.0546875, 0.58510160446167},
{"-3, 1", -22009.462890625, 1849.4287109375, 15337.490234375, 0.44516539573669},
{"-3, 20", -18465.94140625, 454.23376464844, 168779.796875, 2.4310777187347},
{"3, 21", 27847.439453125, 1202.8011474609, 176851.53125, 2.8472492694855},
{"-3, -2", -23725.560546875, 504.02185058594, -14946.23046875, 1.4472477436066},
{"-3, -2", -18908.25, 182.02178955078, -10603.853515625, 3.0429332256317},
{"-3, -2", -22397.912109375, 498.34735107422, -15834.791992188, -0.068377256393433},
{"-3, -2", -21011.1875, 248.06042480469, -12114.87890625, -3.0840022563934},
{"-3, -2", -19321.158203125, 274.62182617188, -12961.598632812, -1.5840022563934},
{"-3, -2", -20026.14453125, 182.02178955078, -13959.083007812, 0.056622743606567},
{"-3, -2", -22153.91796875, 488.02185058594, -11311.749023438, 1.3378727436066},
{"-3, -2", -19340.109375, 272.02188110352, -14891.3828125, 1.5819957256317},
{"-3, -2", -17648.845703125, 182.02178955078, -10769.390625, 0.048810243606567},
{"-3, -2", -20212.15234375, 152.76232910156, -12610.263671875, 0.64256024360657},
{"-3, -2", -18724.2734375, 182.02178955078, -13842.021484375, 0.056622743606567},
{"-3, -2", -24418.65234375, 504.02185058594, -16015.329101562, -0.20900225639343},
{"-3, 2", -22899.20703125, 2377.0693359375, 17114.38671875, 2.3082392215729},
{"3, 2", 28331.39453125, 1025.3461914062, 20994.373046875, 2.3015868663788},
{"-3, -3", -19773.115234375, 182.02178955078, -17136.892578125, 3.0878727436066},
{"-3, -3", -18432.541015625, 182.02178955078, -17172.5625, 3.1113102436066},
{"-3, -3", -19148.001953125, 275.18218994141, -16519.892578125, 1.5273082256317},
{"3, 4", 27508.58984375, 2352.1408691406, 39281.421875, 2.9474499225616},
{"-3, -5", -19253.607421875, 236.25573730469, -38481.04296875, -2.917605638504},
{"-3, -7", -19689.587890625, 305.9733581543, -50112.39453125, -0.13398170471191},
{"3, -9", 29268.462890625, 616.49572753906, -69552.5078125, 1.4618513584137},
{"-4, 0", -26134.880859375, 872.32092285156, 6877.66015625, 1.425270318985},
{"4, -10", 32876.30859375, 576.02178955078, -77411.125, -0.027308702468872},
{"4, -11", 32909.74609375, 576.02185058594, -82257.5703125, -0.050746202468872},
{"4, -12", 32914.22265625, 796.77398681641, -92264.546875, 1.5605642795563},
{"4, -12", 32844.67578125, 576.02203369141, -97510.015625, 0.007812261581421},
{"4, -12", 34865.4609375, 576.02197265625, -97490.546875, -0.007812738418579},
{"4, -12", 33970.34375, 768.02185058594, -96541.25, -0.015625238418579},
{"4, -13", 34901.68359375, 576.02178955078, -102995.21875, -0.031250238418579},
{"4, -13", 32846.125, 765.86749267578, -103843.390625, -0.007812738418579},
{"4, -13", 34885.51953125, 576.02197265625, -100055.109375, -0.007812738418579},
{"-4, 16", -28378.1953125, 875.40856933594, 134756.90625, 2.1435081958771},
{"4, 16", 37345.18359375, 759.42028808594, 135177.96875, 2.830748796463},
{"4, 16", 37475.703125, 680.02185058594, 131287.734375, -1.1093747615814},
{"-4, 18", -28431.560546875, 704.02185058594, 150263, -2.4159977436066},
{"-4, 18", -27170.541015625, 703.98022460938, 151201.875, 2.4590022563934},
{"-4, 18", -26523.751953125, 704.02185058594, 150597.015625, 1.4218752384186},
{"4, 22", 36344.60546875, 884.96813964844, 184527.140625, -2.3932583332062},
{"4, 23", 38614.23046875, 579.92474365234, 189548.4375, 2.2838032245636},
{"-4, 2", -28226.658203125, 1539.7744140625, 19604.880859375, -0.26686787605286},
{"4, -2", 35574.54296875, 1219.6396484375, -8519.142578125, -0.74251198768616},
{"-4, -3", -27276.41796875, 1024.6373291016, -20008.818359375, -2.9157769680023},
{"-4, -4", -31490.10546875, 719.00012207031, -27754.51171875, 2.0374677181244},
{"-4, -5", -29368.234375, 947.01501464844, -40124.40625, 1.2695133686066},
{"4, -5", 37609.36328125, 949.02856445312, -35473.05078125, -3.0906498432159},
{"-4, -7", -28682.21875, 1069.6995849609, -51531.84375, -2.4812748432159},
{"-4, -8", -25792.265625, 222.4038848877, -60792.359375, -2.6509907245636},
{"-4, -9", -25882.361328125, 120.88330078125, -71780.8984375, 1.7969486713409},
{"-5, 0", -37503.85546875, 37.287395477295, 1464.9427490234, 2.025506734848},
{"5, 11", 42602.29296875, 10117.541992188, 93773.4921875, 3.0408565998077},
{"-5, 12", -35987.62890625, 2218.224609375, 101979.296875, 1.4856913089752},
{"5, -12", 43405.84765625, 569.91027832031, -95593.96875, -2.7728226184845},
{"5, 12", 47061.6953125, 3072.0217285156, 103314.296875, 2.185937166214},
{"-5, 13", -37442.0703125, 732.97644042969, 110508.5859375, 0.98727107048035},
{"5, 16", 46090.453125, 98.631790161133, 135879.90625, 2.9347498416901},
{"-5, 17", -35161.78125, 923.93298339844, 142793.96875, -1.4280803203583},
{"5, 19", 47170.5234375, 389.91302490234, 161201.078125, -0.64409422874451},
{"5, 1", 44394.92578125, 1562.9249267578, 10919.40234375, -0.37167835235596},
{"5, 20", 42473.53125, 659.88806152344, 164135.390625, 1.3944962024689},
{"5, 23", 45499.15625, 198.72564697266, 192710.390625, 1.1454594135284},
{"-5, -2", -36517.30859375, 13.50320148468, -11486.805664062, -0.81333565711975},
{"-5, 2", -35886.16796875, 1168.7598876953, 21014.3125, -1.9902565479279},
{"5, 5", 43903.7734375, 2408.8049316406, 44549.22265625, -2.4401333332062},
{"-5, 6", -33005.20703125, 1075.2290039062, 50318.19921875, 0.58593773841858},
{"-5, 7", -40612.8984375, 3148.5556640625, 61330.33984375, -1.9175317287445},
{"-5, 8", -40318.015625, 1805.2933349609, 67856.8671875, 1.3425810337067},
{"-5, -9", -37088.8125, 80.021850585938, -68664.7734375, -0.17031216621399},
{"-5, -9", -37778.5703125, 226.95500183105, -70011.6796875, -1.0546877384186},
{"-6, 0", -47885.78125, 8.9844007492065, 3961.8735351562, 0.96508574485779},
{"6, -10", 54209.640625, 792.35827636719, -80330.3046875, -0.14394688606262},
{"6, 12", 52891.29296875, 2419.4482421875, 101555.84375, 2.9007370471954},
{"6, -14", 54431.66796875, 536.02185058594, -106753.7421875, 1.5154283046722},
{"6, 14", 55520.60546875, 3682.0368652344, 115925.03125, -0.35072731971741},
{"-6, 15", -43420.91015625, 920.02185058594, 126956.28125, -0.57819867134094},
{"-6, 16", -43996.75, 1246.9984130859, 134473.875, 2.037966966629},
{"-6, 18", -42806.3828125, 179.11120605469, 148475.046875, -0.50580811500549},
{"6, 19", 55153.453125, 787.65856933594, 158908.546875, 1.8303511142731},
{"6, 19", 56889.3828125, 691.60827636719, 163784.140625, -1.5117537975311},
{"6, 20", 49611.75, 552.02185058594, 165187.671875, -1.9180037975311},
{"6, 20", 55601.234375, 64.021850585938, 170446.125, -2.9852697849274},
{"-6, -2", -44182.2734375, 18.202297210693, -13866.51171875, -3.0945456027985},
{"6, -3", 49947.1796875, 550.95837402344, -21519.15625, -0.57455849647522},
{"-6, -5", -48098.41015625, -194.12854003906, -39641.80859375, -1.7538707256317},
{"-6, -5", -46966.921875, 208.08093261719, -39667.17578125, 2.6230647563934},
{"-6, -5", -48362.65625, 209.73728942871, -38952.0390625, 1.7773792743683},
{"-6, -5", -47891.8515625, 208.84146118164, -38753.09375, 0.17581677436829},
{"-6, -5", -48467.828125, 80.080932617188, -40099.5078125, 2.9121272563934},
{"-6, -5", -46794.5390625, 226.83898925781, -37714.92578125, 2.2090022563934},
{"-6, -5", -46744.875, 207.24797058105, -39136.3125, -2.0663707256317},
{"-6, -6", -42753.64453125, 62.731777191162, -47260.8359375, -1.0187704563141},
{"6, -7", 56222.83984375, 509.27551269531, -50650.609375, -3.1230647563934},
{"6, -7", 53911.95703125, 160.02185058594, -51192.234375, 1.5585582256317},
{"6, -7", 54685.828125, 1215.4788818359, -56387.8828125, -2.8808772563934},
{"6, -7", 56454.875, 1199.5921630859, -54728.7734375, 0.54881024360657},
{"6, -7", 54337.890625, 880.02185058594, -53805.76171875, -2.3261897563934},
{"6, -7", 54805.23046875, 1163.7552490234, -55334.50390625, 1.4101207256317},
{"6, -7", 52885.6796875, 530.73181152344, -49183.453125, 1.6132457256317},
{"6, -7", 55547.14453125, 879.71838378906, -52917.82421875, -2.5605647563934},
{"-6, 8", -47716.30078125, 2315.6557617188, 67967.125, -2.2795689105988},
{"6, -9", 53648.6328125, 861.04675292969, -70286.3359375, 2.3682081699371},
{"7, 0", 62455.65625, 1797.9219970703, 6768.08984375, -2.7627213001251},
{"-7, 12", -52920.0859375, 1191.4832763672, 104260.5, 0.28249287605286},
{"7, 12", 58589.9296875, 984.24401855469, 99433.40625, -2.8617136478424},
{"7, 14", 61132.60546875, 841.15905761719, 119074.6484375, -3.077029466629},
{"-7, 15", -53740.83203125, 1886.9200439453, 125613.6015625, -2.2952568531036},
{"7, 19", 59060.9765625, 155.92272949219, 162500.71875, 2.6933810710907},
{"7, -1", 63593.828125, 947.02661132812, -7898.171875, 0.7539746761322},
{"7, 22", 60230.3515625, 241.04235839844, 183440.328125, 1.4921872615814},
{"7, 22", 62732.49609375, 208.08045959473, 183212, 1.5390622615814},
{"7, 22", 58998.14453125, 326.06579589844, 181919.296875, -0.085937738418579},
{"7, 22", 62346.359375, 177.10778808594, 182308.875, -0.033185720443726},
{"7, 22", 60326.046875, 473.66052246094, 181848.9375, 1.6015622615814},
{"-7, 2", -52411.55859375, -44.786991119385, 23108.25, 0.036650419235229},
{"-7, -3", -55633.3359375, 24.714427947998, -24256.390625, 2.4452726840973},
{"-7, 4", -50629.94140625, 935.40466308594, 36028.06640625, -2.2925317287445},
{"-7, 5", -51629.30078125, 1371.0515136719, 41220.01171875, 1.4977352619171},
{"-7, -6", -50149.3046875, 221.34342956543, -46335.921875, -1.4019067287445},
{"7, -6", 63644.5703125, 1018.3529052734, -45919.06640625, 1.8681108951569},
{"7, 6", 60025.578125, 1311.1177978516, 52612.80078125, -1.1115276813507},
{"-7, 7", -52160, 1330.0272216797, 64176, 2.3156244754791},
{"7, 7", 60335.046875, 1267.7893066406, 64280.96875, -1.9354956150055},
{"7, -8", 63701.62890625, 1030.6973876953, -57365.1796875, 2.8753168582916},
{"7, 8", 60929.72265625, 1336.1295166016, 67921.9609375, -0.45527768135071},
{"7, -9", 64423.140625, 16.02184677124, -72614.5390625, -0.53437447547913},
{"-8, 10", -58312.85546875, 1066.3122558594, 87550.2578125, -3.0194981098175},
{"8, -11", 66530.203125, 497.55993652344, -83480.609375, -0.088016271591187},
{"8, 14", 72490.859375, 777.60882568359, 117504.90625, -2.148921251297},
{"8, 15", 67362.5078125, 1219.5155029297, 128266.6953125, 3.1267139911652},
{"-8, 16", -63059.875, 707.31091308594, 136229.6875, 0.45644664764404},
{"8, 16", 67930.3828125, 806.0595703125, 132841.640625, 1.8170645236969},
{"-8, 17", -61916.1328125, 628.50524902344, 142690.96875, -2.5659692287445},
{"8, 18", 67866.1015625, 69.996475219727, 154357.8125, -2.5317952632904},
{"8, 19", 67971.4921875, 20.936849594116, 157768.71875, 2.6241638660431},
{"8, 1", 69370.3359375, 1024.9564208984, 13208.165039062, 2.6970264911652},
{"8, 20", 66974.9453125, 154.21960449219, 170724.359375, 1.4648087024689},
{"8, 20", 67196.2109375, 151.15162658691, 164550.640625, 2.0091288089752},
{"8, 21", 67499, 724.51867675781, 175256, -2.404687166214},
{"8, 2", 68958.4140625, 1194.0394287109, 19549.109375, 1.9432981014252},
{"-8, 3", -60186.0546875, 208.21615600586, 26282.841796875, -1.6289417743683},
{"-8, 3", -59942.30078125, 209.73728942871, 27045.744140625, -1.5840022563934},
{"-8, 3", -58687.75, 80.080924987793, 26291.09375, -0.011754274368286},
{"-8, 3", -58667.0078125, 81.737281799316, 26977.2734375, -3.1230647563934},
{"-8, 3", -61938.0234375, 525.31799316406, 27746.71484375, 2.3769352436066},
{"8, -3", 67674.4375, 1020.1293945312, -20579.841796875, 2.4220221042633},
{"8, -6", 73149.1796875, 1997.3787841797, -47399, 2.9188530445099},
{"8, -7", 69736.484375, 770.82946777344, -53308.8671875, -0.58869767189026},
{"-8, 8", -59586.6328125, 1584.4422607422, 72930.046875, 1.6947729587555},
{"8, -8", 73166.8515625, 865.13232421875, -59533.484375, 2.0846741199493},
{"-8, 9", -58140.57421875, 1689.2037353516, 80026.5546875, 0.93507838249207},
{"8, -9", 73215.6015625, 241.90905761719, -66784.609375, -1.5996315479279},
{"9, 10", 77054.203125, 816.02673339844, 85758.125, -3.0937502384186},
{"9, 10", 78200.609375, 776.48376464844, 85220.7265625, 0.72849774360657},
{"9, 10", 77914.125, 792.02185058594, 84513.8515625, -0.39062523841858},
{"-9, 11", -70991.0703125, 48.50524520874, 95544.6640625, 1.1468751430511},
{"9, 11", 76953.046875, 1171.8714599609, 94998.3515625, -3.0202572345734},
{"-9, 13", -69189.3984375, 678.46691894531, 107451.3046875, 2.4903299808502},
{"9, 14", 77907.1328125, 721.82507324219, 118390.5859375, -3.0692908763885},
{"-9, 15", -67222.6953125, 1574.7200927734, 128555.5234375, 1.9133002758026},
{"-9, 16", -69613.3203125, 731.25964355469, 132697.859375, 0.50788617134094},
{"-9, 17", -69766.453125, 80.080917358398, 139954.453125, -1.7460582256317},
{"-9, 17", -69189.140625, -168.29748535156, 141543.421875, 0.044939756393433},
{"-9, 17", -69819.4453125, -202.48107910156, 140766.3125, -3.1132457256317},
{"-9, 17", -68786.75, 80.080924987793, 140134.1875, -1.7226207256317},
{"-9, 17", -68489.6953125, 209.73728942871, 141091.90625, 1.5683772563934},
{"-9, 17", -69481.8125, 208.84146118164, 141103.75, 1.6230647563934},
{"-9, 17", -67823.5078125, 87.561889648438, 139911.359375, -0.25781226158142},
{"-9, 2", -65661.171875, 30.30895614624, 21977.28125, 2.8075816631317},
{"9, 3", 77305.109375, 1353.4609375, 31970.46484375, 1.3374993801117},
{"-9, 7", -67318.1328125, 1658.9869384766, 58576.55859375, -0.2890625},
{"-9, 8", -70949.8046875, 1334.2518310547, 67868.3203125, -0.033662080764771},
{"9, 8", 80643.390625, 1312.8060302734, 70508.671875, 0.9108145236969},
{"9, -9", 79102.8984375, 154.19024658203, -71926.2890625, -3.0281498432159},
{"9, 9", 78268.6171875, 989.96557617188, 80328.296875, 2.4096391201019}
}
brConfig.lootSpawnAreas.uncategorised.lootSpawnPositions[2] = {
{"0, 0", 966.74615478516, 680.34161376953, 5428.1376953125, 2.6688358783722},
{"0, 0", 974.76428222656, 391.35412597656, 2613.1235351562, 0.53408789634705},
{"0, 14", 4366.2358398438, 1408.0219726562, 118772.9375, -1.5781247615814},
{"0, 14", 5511.3500976562, 1408.0218505859, 118768.109375, -1.1015622615814},
{"0, 17", 3023.21484375, 748.01190185547, 144466.25, -0.81458401679993},
{"0, 21", 1866.9387207031, 420.3288269043, 174232.65625, -2.1738102436066},
{"0, 21", 687.21533203125, 739.74584960938, 172874.203125, -2.8066227436066},
{"0, 22", 7908.7797851562, 574.89331054688, 186550.59375, -1.7284977436066},
{"0, 4", 1921.4436035156, 2765.3820800781, 38103.2109375, 2.7871220111847},
{"0, -7", 3806.3403320312, 1560.2735595703, -57211.97265625, 1.6210582256317},
{"0, -7", 4514.2055664062, 2193.9665527344, -55710.90234375, 1.4863102436066},
{"0, -7", 5692.3129882812, 1680.0218505859, -56101.14453125, -1.6386897563934},
{"0, -7", 6682.3022460938, 2194.3383789062, -55269.73046875, 0.031249761581421},
{"0, -7", 2081.1083984375, 1464.0218505859, -56316.890625, -1.6738812923431},
{"0, -7", 2475.7458496094, 1474.7559814453, -56078.69140625, 3.0038707256317},
{"0, -8", 2259.8762207031, 1239.5385742188, -58622.27734375, -1.6601917743683},
{"0, -8", 4832.556640625, 1611.9827880859, -57578.875, -3.0020062923431},
{"0, 9", 1766.2015380859, 4462.4267578125, 80760.765625, -1.3179743289948},
{"-10, 11", -79876.3515625, 1024.0218505859, 90181.0546875, -1.5644352436066},
{"-10, 11", -81059.984375, 2207.1838378906, 93289.421875, -0.24612879753113},
{"10, 12", 87115.96875, 577.04821777344, 101596.390625, -1.0046875476837},
{"10, 14", 84874.6953125, 3497.5671386719, 119715.6171875, 0.017560720443726},
{"10, 14", 85979.1796875, 3449.5373535156, 117808.03125, 0.85937523841858},
{"10, 14", 84432.390625, 3497.5661621094, 118648.875, -1.5996267795563},
{"10, 14", 85312.6875, 2883.9787597656, 118948.890625, 1.3163712024689},
{"-10, 15", -78759.484375, 1868.4448242188, 124738.859375, 2.0080335140228},
{"10, -1", 85080.1796875, 624.02185058594, -3475.7822265625, -1.230060338974},
{"10, -3", 86181.6875, 940.45904541016, -17751.16015625, -0.87306427955627},
{"10, 7", 86123.8984375, 998.08337402344, 63647.015625, 2.959748506546},
{"-10, 9", -76530.7421875, 2267.4064941406, 77402.4453125, -2.7246272563934},
{"-10, 9", -77749.0234375, 2258.2885742188, 76118.5390625, -2.8886897563934},
{"-11, 11", -86579.1953125, 1020.8221435547, 93670.1328125, -2.9745562076569},
{"-11, 11", -87765.59375, 1316.9705810547, 95481.7109375, -2.3651812076569},
{"-11, 11", -84351.1484375, 968.02185058594, 90761.5859375, -2.1894352436066},
{"-11, 11", -87048.9375, 1016.0218505859, 90837.921875, 2.2246272563934},
{"-11, 11", -84919.8671875, 1567.6384277344, 96499.375, -1.4882457256317},
{"-11, 11", -82358.8515625, 2104.5251464844, 96151.1171875, 2.0781252384186},
{"-11, 11", -88621.0234375, 1884.0926513672, 96885.9453125, 1.6523792743683},
{"-11, 14", -88191.484375, 1601.9925537109, 118879.953125, 0.26912426948547},
{"-11, 15", -88454.078125, 465.1923828125, 127563.953125, -0.009748220443726},
{"-11, 15", -88793.3828125, 177.73728942871, 126119.3125, -2.966744184494},
{"-11, 15", -88451.234375, 466.35491943359, 127092.640625, -0.064435720443726},
{"-11, 15", -87540.96875, 56.657554626465, 129307.828125, 3.0937497615814},
{"-11, 15", -84709.3984375, 1275.5262451172, 124519.3671875, -0.56443572044373},
{"-11, 15", -89438.734375, 106.90599060059, 128933.40625, 0.12112879753113},
{"-11, 15", -86965.8046875, 1004.0946044922, 124376.34375, 1.7031247615814},
{"11, 16", 93882.4140625, 800.72009277344, 133813.09375, 1.0839312076569},
{"11, 16", 94426.90625, 901.70349121094, 135601.234375, 2.9120562076569},
{"11, 16", 95641.3828125, 825.60827636719, 133587.5, -2.312570810318},
{"11, 16", 94278.0078125, 864.02185058594, 134788.140625, 1.1835582256317},
{"11, 20", 94704.78125, 1150.4405517578, 168982.171875, 0.19200015068054},
{"11, 20", 94171.0625, 1053.9699707031, 166733.671875, -0.050187349319458},
{"1, -12", 10774.32421875, -395.08508300781, -97695.453125, -0.4921875},
{"1, -13", 12348.555664062, 1330.3106689453, -100630.390625, -1.5859372615814},
{"1, -13", 10521.633789062, 1330.3106689453, -100647.7890625, -1.5234372615814},
{"1, -13", 13378.122070312, 910.34130859375, -101252.1875, -1.5468747615814},
{"1, -13", 14516.553710938, 694.16802978516, -101372.2734375, 0.050746202468872},
{"1, -13", 14012.768554688, 1170.3309326172, -100376.234375, -1.6093747615814},
{"1, -13", 13772.249023438, 1170.3411865234, -103903.546875, -3.1171872615814},
{"1, -13", 12734.990234375, 697.12670898438, -103213.3125, 0.69531273841858},
{"1, 14", 13836.801757812, 704.02185058594, 120968.609375, -1.6636893749237},
{"11, -5", 92050.921875, 7738.6157226562, -40074.8125, -0.00981879234314},
{"11, -5", 92308.953125, 7266.7836914062, -38015.046875, 3.1308062076569},
{"11, -6", 93448.71875, 7848.79296875, -41570.23046875, 1.437429189682},
{"-1, 18", -2942.421875, 2328.0217285156, 154094.421875, -1.4188439846039},
{"-1, 18", -4630.6455078125, 2315.5402832031, 153912.296875, 1.7315289974213},
{"-1, 18", -6679.6381835938, 2328.0217285156, 153175.25, 2.9346539974213},
{"12, -10", 105857.9765625, 1051.1369628906, -74196.8203125, -2.1812489032745},
{"-12, 11", -91006.9140625, 1223.2620849609, 93448.25, 0.11131072044373},
{"-12, 11", -92957.5546875, 1005.9857177734, 91749.46875, -2.1230642795563},
{"12, 11", 104245.921875, 680.02185058594, 92334.8828125, 2.2656252384186},
{"12, 11", 103744.7109375, 680.02185058594, 92318.25, 0.92187523841858},
{"12, 13", 101416.5, 206.39292907715, 114178.46875, -0.070382833480835},
{"12, 13", 99369.578125, 397.67282104492, 113131.2265625, 0.29680466651917},
{"-12, 14", -98196.640625, 2158.7316894531, 116793.0078125, 2.6843197345734},
{"12, 14", 105587.8125, 22.901580810547, 115061.703125, 1.4374997615814},
{"12, 14", 101281.5078125, 156.46141052246, 114982.203125, 3.0643651485443},
{"12, 14", 100385.703125, 14.361015319824, 115554.625, -1.5313203334808},
{"-1, 22", -4647.4672851562, 427.65496826172, 182491.96875, 1.9765627384186},
{"-1, 22", -4175.740234375, 154.2548828125, 181491.46875, 2.7500002384186},
{"12, 4", 103715.6484375, 643.82696533203, 39220.171875, -0.87755465507507},
{"12, 5", 103164.546875, 680.02185058594, 41204.95703125, -2.8521816730499},
{"12, -8", 103541.34375, 1452.7833251953, -58390.46484375, 1.1366832256317},
{"12, -8", 104804.140625, 1439.0562744141, -57487.44921875, 2.7538707256317},
{"13, 14", 106726.6484375, 44.171028137207, 116249.015625, -1.0566232204437},
{"13, 14", 110436.3359375, 8.8543100357056, 121016.140625, 3.0996267795563},
{"13, 14", 106508.640625, 9.2800941467285, 115857.7890625, -1.1269357204437},
{"13, -1", 109799.171875, 552.02185058594, -5116.220703125, 0.39256024360657},
{"13, 3", 108475.8984375, 221.11853027344, 25875.125, -1.9109375476837},
{"13, 5", 111171.3828125, 179.81042480469, 47186.6640625, -0.19568514823914},
{"13, -8", 107721.84375, 576.02185058594, -61793.9609375, 0.048810243606567},
{"13, -8", 110233.4140625, 2048.0207519531, -62725.2109375, 2.0781247615814},
{"13, -8", 110738.625, 1793.0106201172, -60043.21484375, -0.093750238418579},
{"13, -8", 110634.171875, 1793.0064697266, -63648.671875, 3.0331852436066},
{"13, 8", 109096.6328125, 1223.6395263672, 70009.8828125, 1.909373998642},
{"13, -9", 110336.890625, 964.88415527344, -72921.9921875, 2.3364822864532},
{"13, 9", 112631.7265625, 703.76434326172, 78639.8828125, 2.2822716236115},
{"-1, -3", -3175.3967285156, 1874.3388671875, -17470.017578125, -3.1406252384186},
{"-1, -3", -5271.5083007812, 1617.8929443359, -19640.833984375, 0.070312261581421},
{"-1, -3", -3578.7553710938, 1618.3319091797, -19054.822265625, -1.5390627384186},
{"-1, -3", -6292.0600585938, 1618.3409423828, -18182.353515625, 0.062499761581421},
{"-1, 3", -391.54998779297, 1336.9655761719, 29092.83984375, 1.4231913089752},
{"14, -13", 118743.8828125, 48.522747039795, -101668.0625, 2.8398087024689},
{"14, -13", 119145.8125, 4.8938407897949, -101532.15625, 2.7226212024689},
{"14, -13", 118820.9375, 0.38147604465485, -102051.6875, 3.068306684494},
{"14, -13", 119408.171875, -0.21766874194145, -101902.7265625, 2.896431684494},
{"-14, 14", -113341.453125, 440.02185058594, 117130.734375, 1.5596497058868},
{"-14, 14", -113681.71875, 496.02185058594, 115696.4296875, -3.0047857761383},
{"14, 1", 115996.0546875, 301.4638671875, 9954.4912109375, -0.5252993106842},
{"14, -2", 116855.1796875, 944.5556640625, -11520.139648438, 2.3648130893707},
{"14, -4", 120712.484375, 4659.40625, -31688.939453125, -3.1328127384186},
{"14, -4", 116381.546875, 6513.8686523438, -31042.99609375, -1.1406252384186},
{"14, 5", 122632.953125, 18.303009033203, 41417.32421875, 1.4695665836334},
{"15, -10", 127703.109375, 30.211910247803, -81162.8671875, -0.070312261581421},
{"15, -13", 126490.875, 619.70031738281, -103336.265625, 1.2382462024689},
{"15, -13", 127993.375, 1608.8276367188, -101954.453125, -0.91406226158142},
{"15, -13", 129535.7109375, 63.31628036499, -101387.578125, 0.037056684494019},
{"-15, 14", -115372.46875, 98.467651367188, 115901.0703125, 1.8330872058868},
{"15, 1", 125714.6171875, 102.54431152344, 15202.109375, 2.4472477436066},
{"15, 2", 125513.625, 9.4202566146851, 16762.96484375, -1.8359377384186},
{"15, -5", 128320.5, 2201.5319824219, -39257.25390625, 0.57708287239075},
{"15, 5", 126699.234375, 1921.7850341797, 46585.6796875, 2.3621270656586},
{"15, 5", 124643.859375, 2.9257581233978, 40961.2578125, 2.2195665836334},
{"15, 5", 124598.3671875, 137.78546142578, 41690.65234375, 2.7117540836334},
{"1, -5", 14396.587890625, 716.07580566406, -33329.921875, 0.61912274360657},
{"17, 4", 144900.625, 320.02185058594, 35919.5546875, -1.6230642795563},
{"17, 4", 143625.84375, 99.687446594238, 38889.46484375, 0.33787322044373},
{"17, 4", 146390.921875, 624.02185058594, 39288.44921875, 2.4335587024689},
{"17, 4", 144084.90625, 797.42108154297, 35909.359375, -3.0996267795563},
{"17, 4", 140750.703125, 46.755977630615, 35563.74609375, -1.6699392795563},
{"17, 4", 141394.0625, 211.24000549316, 39821.17578125, 0.46287322044373},
{"17, -5", 143892.765625, 1246.4910888672, -36044.24609375, 1.0564014911652},
{"17, 5", 144806.78125, 820.62701416016, 42266.7421875, 0.86324620246887},
{"17, -6", 143217.90625, 2492.8229980469, -44484.2734375, -1.6406252384186},
{"17, -8", 145035.1875, 882.8046875, -58737.359375, 2.2603118419647},
{"18, 0", 151683.28125, 55.921199798584, 6920.2333984375, 2.8955137729645},
{"18, 3", 151781.03125, 1221.4650878906, 31240.017578125, -2.314505815506},
{"18, 3", 153177.46875, 536.02185058594, 29696.82421875, -0.17975783348083},
{"18, 3", 148364.359375, 655.24938964844, 29773.912109375, -0.019566297531128},
{"18, 3", 148247.328125, 1106.3377685547, 28498.5625, -3.134818315506},
{"18, 4", 151817.421875, 1578.6724853516, 38137.0078125, 0.65424418449402},
{"18, 4", 152810.015625, 1419.6121826172, 38342.0625, -2.002005815506},
{"18, 4", 147838.109375, 1248.1400146484, 36079.1640625, -1.5605642795563},
{"19, -5", 158338.0625, 570.4140625, -34544.0859375, 1.8310282230377},
{"19, -5", 161057.015625, 42.632888793945, -36270.9296875, -0.48147177696228},
{"-2, -10", -12070.056640625, 271.15393066406, -74671.765625, 2.5937502384186},
{"-2, 10", -14122.412109375, 2652.1481933594, 85053.2109375, 0.20339560508728},
{"2, 11", 18798.513671875, 9661.671875, 97298.796875, -2.1567265987396},
{"2, -13", 20350.138671875, 107.22793579102, -103125.9375, -0.10156226158142},
{"2, -13", 20833.369140625, 105.05265808105, -102907.546875, -1.7812497615814},
{"2, -13", 20258.609375, 8.1201858520508, -100940.546875, -3.0468747615814},
{"2, -13", 17543.7890625, 322.18853759766, -101419.234375, -3.1093747615814},
{"2, -13", 18485.7890625, 450.31060791016, -103699.7109375, -3.1171872615814},
{"2, -13", 18543.265625, 466.31060791016, -100358.734375, 0.017560720443726},
{"-2, 15", -13591.73046875, 1367.3439941406, 127935.953125, 1.8925602436066},
{"-2, 15", -11189.370117188, 1367.3438720703, 124958.203125, 0.32031226158142},
{"-2, -2", -15556.033203125, 395.76977539062, -12961.125976562, -1.6718752384186},
{"-2, -2", -15157.986328125, 696.72662353516, -14271.017578125, -3.0859377384186},
{"-2, 2", -13494.501953125, 1547.4282226562, 20409.265625, 1.5937497615814},
{"-2, 2", -11456.66015625, 1240.0218505859, 18007.96484375, 0.025372743606567},
{"-2, 2", -11304.927734375, 1680.0218505859, 21279.826171875, 1.7128727436066},
{"-2, 2", -10084.416992188, 2048.5673828125, 22301.677734375, 2.3691227436066},
{"2, 4", 21711.8671875, 1917.0164794922, 35231.6875, -3.0605642795563},
{"-2, 5", -13310.732421875, 3088.7485351562, 41207.75390625, -1.5331852436066},
{"-2, 5", -12592.807617188, 3088.7580566406, 44839.84375, -1.5585582256317},
{"-2, 5", -14876.6875, 2832.7614746094, 41515.484375, -0.007812261581421},
{"-2, 5", -15115.983398438, 3088.7495117188, 43145.9609375, -3.1288707256317},
{"-2, 5", -14071.07421875, 3088.58203125, 43745.2265625, -3.1132457256317},
{"2, -5", 17284.5234375, 257.06237792969, -36289.05859375, -3.1328127384186},
{"2, -5", 17341.84375, 499.88708496094, -34238.14453125, -3.0000002384186},
{"-2, 6", -8571.7041015625, 2768.0217285156, 55193.125, -2.9941227436066},
{"-2, 6", -14765.966796875, 2359.8317871094, 55683.0390625, 1.8515627384186},
{"-2, 6", -14693.79296875, 2064.0217285156, 52211.84375, -1.6425602436066},
{"-2, 6", -11168.116210938, 2587.2976074219, 56596.296875, 1.9433772563934},
{"-2, 6", -9786.8349609375, 2631.5285644531, 54931.62109375, 2.7578127384186},
{"2, -6", 20848.15234375, 870.55877685547, -45588.36328125, -0.64256024360657},
{"2, -6", 19588.66015625, 183.03910827637, -42378.9296875, 3.1113107204437},
{"2, -6", 21551.55078125, 760.02185058594, -46503.3125, 0.28712725639343},
{"2, -6", 20125.5703125, 438.00869750977, -42972.23828125, -0.031249761581421},
{"2, -6", 21954.83984375, 1139.6593017578, -41430.93359375, -2.1465017795563},
{"2, 6", 21228.205078125, 6506.7216796875, 51390.59375, -2.1867382526398},
{"-2, 7", -12341.166015625, 2587.5417480469, 57528.3203125, -1.7031247615814},
{"2, -7", 17877.763671875, 613.87524414062, -56892.0546875, -0.019566774368286},
{"2, -7", 20917.4609375, 1076.5036621094, -56225.375, -3.1308772563934},
{"2, -7", 23635.87890625, 936.79797363281, -54320.1484375, -0.035191774368286},
{"2, -7", 18232.39453125, 648.02185058594, -52781.2890625, 1.7069957256317},
{"2, -7", 19729.435546875, 673.11157226562, -56046.81640625, -0.003941774368286},
{"2, -8", 20312.9921875, 118.00751495361, -58467.71875, 1.5507457256317},
{"2, -8", 20962.53125, 374.02178955078, -58024.48828125, -1.5136897563934},
{"-2, -9", -10105.255859375, 122.32275390625, -72611.4765625, 1.1015627384186},
{"-2, -9", -9012.0556640625, -256.75866699219, -73044.859375, 2.1972482204437},
{"-2, -9", -13632.830078125, -96.081909179688, -69305.3515625, -0.31837677955627},
{"-2, -9", -8857.986328125, -48.115482330322, -70480.15625, 2.0078127384186},
{"-2, -9", -12944.08203125, -46.973026275635, -72584.890625, 2.7284982204437},
{"-2, -9", -12220.302734375, 330.60217285156, -70407.828125, 1.5546877384186},
{"-2, -9", -11377.29296875, 19.35534286499, -68958.125, -1.4843747615814},
{"3, -10", 27636.7421875, 3008.0212402344, -78046.6875, 0.63087677955627},
{"3, -10", 29927.19140625, 768.02185058594, -76148.8515625, 0.019566297531128},
{"3, -10", 28331.9296875, 3264.021484375, -79777.9140625, -0.009748220443726},
{"3, -10", 29899.9453125, 3008.021484375, -78169.0859375, -0.033185720443726},
{"3, -10", 28812.33984375, 19.381313323975, -76734.3046875, 1.5586287975311},
{"3, -10", 32136.2421875, 3008.0212402344, -81487.0546875, 0.019566297531128},
{"3, -10", 31448.1015625, 3264.0212402344, -79744.6328125, 0.15237879753113},
{"3, -10", 32230.044921875, 3008.0209960938, -78176.125, -0.025373220443726},
{"3, -10", 29900.69921875, 3008.9504394531, -81199.1171875, 0.050816297531128},
{"3, -10", 27590.517578125, 3008.0212402344, -81468.8515625, 2.2793142795563},
{"-3, 12", -21893.916015625, 2200.9645996094, 103942.890625, 1.4218752384186},
{"-3, 12", -18958, 2318.2717285156, 102993.5, -0.39256024360657},
{"-3, 12", -22210.03515625, 2160.0217285156, 105134.8125, 2.8515627384186},
{"-3, 12", -22355.58203125, 2410.4829101562, 99996.5078125, -0.039062261581421},
{"-3, 12", -24176.296875, 1556.0062255859, 101088.125, 1.4511897563934},
{"3, -12", 29087.21875, 1792.9616699219, -91531.53125, 0.082066297531128},
{"3, -12", 27238.658203125, 2048.021484375, -93306.4453125, -0.025373220443726},
{"3, -12", 29101.1015625, 1793.0482177734, -95133.578125, -0.007812738418579},
{"3, -12", 30998.1015625, 2048.021484375, -93293.8671875, -0.023437738418579},
{"3, -12", 26458.849609375, 1792.0213623047, -91393.1171875, 0.019566297531128},
{"3, -12", 31775.53125, 1792.0213623047, -95173.84375, -0.015625238418579},
{"3, -12", 26567.322265625, 1792.021484375, -95383.46875, -0.054687738418579},
{"3, -13", 31514.90625, 1054.0218505859, -101431.234375, 0.046874761581421},
{"3, -13", 31643.33984375, 1054.0218505859, -99096.9296875, 0.039062261581421},
{"3, -13", 30154.37109375, 20.633754730225, -98388.0625, -0.031250238418579},
{"-3, 1", -23212.1796875, 1342.0949707031, 11883.80859375, 2.1111633777618},
{"-3, 1", -22770.259765625, 938.11352539062, 9694.533203125, -0.82045960426331},
{"3, 1", 27581.794921875, 691.66461181641, 11897.24609375, 0.084841966629028},
{"3, 20", 25104.41015625, 562.59680175781, 170018.796875, -1.4390623569489},
{"-3, -2", -17219.365234375, 160.02185058594, -11468.404296875, -2.3652522563934},
{"-3, -2", -22187.71875, 776.02185058594, -8507.646484375, 1.7284977436066},
{"-3, -2", -19826.2265625, 182.25036621094, -10908.34375, 2.0722477436066},
{"-3, -2", -21384.244140625, 353.21057128906, -16009.509765625, 3.0976207256317},
{"-3, -2", -21207.4375, 273.52612304688, -13323.443359375, -0.005877256393433},
{"-3, -3", -19192.3359375, 212.92834472656, -19874.16796875, -0.054687738418579},
{"-3, -3", -21275.146484375, 240.38891601562, -18698.63671875, -0.98243975639343},
{"3, -3", 25606.689453125, 880.29602050781, -19467.076171875, 0.21535468101501},
{"3, -3", 25758.7578125, 895.73645019531, -18838.02734375, 2.4126026630402},
{"-3, -5", -21740.33984375, 642.59606933594, -33750.63671875, -1.1028788089752},
{"-3, 6", -17662.302734375, 2774.5871582031, 54694.3828125, -1.5878727436066},
{"3, 8", 25198.93359375, 14207.430664062, 67192.3828125, 2.1113102436066},
{"3, 8", 28048.79296875, 13686.97265625, 65818.0703125, 1.9394352436066},
{"4, -11", 33912.68359375, 1792.0213623047, -88914.328125, 0.015624761581421},
{"4, -11", 38428.90234375, 2048.021484375, -86889.828125, -0.033185720443726},
{"4, -11", 33951.890625, 1792.021484375, -84838.3671875, -2.38E-07},
{"4, -11", 35014.19921875, 2048.0219726562, -89989.5859375, -0.023437738418579},
{"4, -11", 40278.0625, 2048.0219726562, -85889.828125, 1.5234372615814},
{"4, -11", 39181.61328125, 1792.0213623047, -84987.984375, 0.039062261581421},
{"4, -11", 34681.046875, 2048.021484375, -86871.15625, -0.039062738418579},
{"4, -11", 39174.5078125, 1792.0213623047, -88996.078125, -0.033185720443726},
{"4, -11", 36576.8671875, 1792.9456787109, -85139.109375, -0.031250238418579},
{"4, -12", 36505.45703125, 1792.9580078125, -91533.2421875, 0.046874761581421},
{"4, -12", 38413.58984375, 2048.021484375, -93290.1796875, 0.023437261581421},
{"4, -12", 33871.51953125, 1792.0213623047, -93284.0859375, 0.052751779556274},
{"4, -12", 33960.58984375, 1792.0213623047, -91234.65625, 0.054687261581421},
{"4, -12", 36548.37890625, 1792.9090576172, -95067.484375, -0.039062738418579},
{"4, -12", 39108.7421875, 1792.021484375, -91259.4609375, 0.007812261581421},
{"4, -12", 39165.1484375, 1792.0216064453, -93306.0703125, -0.062500238418579},
{"4, -12", 39170.4375, 1792.0216064453, -95229.484375, -0.062500238418579},
{"4, -12", 34683, 2048.021484375, -93350.96875, -0.017560720443726},
{"4, -12", 32878.7265625, 2048.0219726562, -92292.234375, -1.6250002384186},
{"4, -13", 33848.2890625, 1054.0219726562, -102042.390625, 0.015624761581421},
{"4, -13", 34059.8984375, 1054.0218505859, -99439.6875, -0.037127256393433},
{"-4, 15", -28291.2265625, 825.10522460938, 123845.1328125, 0.82882285118103},
{"4, 19", 35430.22265625, 138.64880371094, 160938.03125, 0.64843821525574},
{"4, -1", 39479.2265625, 1251.9937744141, -3750.2846679688, 0.36733460426331},
{"-4, -2", -26303.90234375, 960.02185058594, -10502.004882812, 1.6562497615814},
{"-4, -2", -25343.2734375, 960.02185058594, -10513.224609375, -1.5546877384186},
{"-4, -2", -24852.3828125, 960.02185058594, -12639.982421875, 3.1113102436066},
{"4, -3", 35839.8671875, 1374.0218505859, -19017.40625, 2.3378727436066},
{"4, -3", 37549.0234375, 1374.0218505859, -21315.203125, 0.81249976158142},
{"4, 3", 35695.8828125, 744.02185058594, 27867.458984375, 1.6185777187347},
{"4, 5", 40253.8515625, 2012.8973388672, 45671.00390625, 2.8378479480743},
{"4, 7", 34651.5, 9151.302734375, 62164.0546875, -1.8211863040924},
{"4, 9", 34842.75, 14351.0390625, 75933.3984375, -1.4687502384186},
{"5, -10", 41517.36328125, 1792.0213623047, -81752.53125, -1.5781252384186},
{"5, -10", 45560.2890625, 1792.021484375, -81836.046875, -3.1054337024689},
{"5, -11", 43441.96484375, 2048.021484375, -82495.9375, -1.4628732204437},
{"5, -11", 45371.12109375, 1792.0218505859, -84378.171875, 1.4980642795563},
{"5, -11", 45528.81640625, 1792.0213623047, -86963, -1.5273087024689},
{"5, -11", 41510.53515625, 1792.021484375, -86947.296875, 1.5390622615814},
{"5, -11", 41585.58203125, 1792.0218505859, -84320.359375, -1.6328127384186},
{"5, -11", 43478.62109375, 2048.021484375, -86219.421875, -1.5819962024689},
{"5, 15", 47095.40625, 1201.1282958984, 126162.84375, -3.0800654888153},
{"5, 15", 45208.3046875, 696.95544433594, 130552.53125, -1.0097529888153},
{"-5, 16", -33768.390625, 1082.1195068359, 135310.671875, 0.13087725639343},