forked from MaximumADHD/Roblox-FFlag-Tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPCDesktopClient.json
4258 lines (4258 loc) · 242 KB
/
PCDesktopClient.json
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
{
"AllowVideoPreRoll": true,
"AndroidApplicationExitReasonNumEntriesToFetch": 20,
"AndroidNotchScreenSupportIXPExperiment": true,
"AxisAdornmentGrabSize": 12,
"BuildVariantInBacktrace": true,
"CacheFlagCdn": true,
"CaptureCountersIntervalInMinutes": 5,
"CaptureQTStudioCountersEnabled": true,
"DFFlagAddDisplayNameToGetFriendsOnline": true,
"DFFlagAddDisplayNameToGetFriendsResult": true,
"DFFlagAddImpactChangesBasedOnTunableDeltasTelemetry": true,
"DFFlagAddImpactSlopeForEachTunableTelemetry": true,
"DFFlagAddPlaceSizeToTCSaveReporting": false,
"DFFlagAddPlaySessionIdTelemetry": true,
"DFFlagAdjustMixedPriorityFairlyMultiplicative": true,
"DFFlagAdServiceUseTeleportTrusted": true,
"DFFlagAESAddLimitToSearch": true,
"DFFlagAESAddNewSortFiltersToSearch": true,
"DFFlagAESMoreOutfitMethods2": true,
"DFFlagAESOutfitTypeEnabled": true,
"DFFlagAirControllerUpdate": true,
"DFFlagAllowHttpProxyForExternalRequests": true,
"DFFlagAllowInboundConnectionToSoap": true,
"DFFlagAnalyticsAvatarFaceChatFailurePoints": true,
"DFFlagAnalyticsDeferredEventIngestReportHttpRequestSuccess3": false,
"DFFlagAnalyticsUseEventStreamEndpointFlag": true,
"DFFlagAnchoredSendPositionUpdate2": false,
"DFFlagAndroidApplicationExitReasonMultipleTaggingEnabled": true,
"DFFlagAndroidGetMyNetworkAddress": true,
"DFFlagAnimationLodDisableAnchoredThrottling": true,
"DFFlagAnimationRigThrowAssertionErrors2": true,
"DFFlagAnimationStreamTrackStoppedSignal": true,
"DFFlagAnimationTrackRefactor": true,
"DFFlagAnimationTrackRefactor_PlaceFilter": "False;11094330176;11101668399",
"DFFlagAnimatorHideCoreScriptTracks": true,
"DFFlagAnimatorLodModelInstanceOwnershipFix": true,
"DFFlagAnimatorLodOptOutPhase": true,
"DFFlagAnimatorPreferLodEnabledPropertyActive": true,
"DFFlagAnimatorRetargetR15_4": true,
"DFFlagAnimatorRetargetR15_4_PlaceFilter": "False;11094330176;11101668399",
"DFFlagAnimInstanceAllocs": true,
"DFFlagAppendSourceIdToRequireLog": false,
"DFFlagApplyFlagRolloutSettings": true,
"DFFlagAssemblyBroadphaseExcludeCrashFix": true,
"DFFlagAsyncStreamingNoBlockGCVis": false,
"DFFlagAttachmentCrashReport": false,
"DFFlagAttachmentFrameCleanup": true,
"DFFlagAudioDeviceTelemetry": true,
"DFFlagAudioGraphLogging2": false,
"DFFlagAudioGraphThrottling": false,
"DFFlagAudioGraphUpload2": false,
"DFFlagAudioSeparateHttpCachePerUniverse3": true,
"DFFlagAudioSeparateHttpCachePerUniverse3_PlaceFilter": "False;8967359816;8430712643;8267821593;8430716410;8430720021;8691928149;698448212;8451491417;8893378293;8893376837;8893375234;706824758;7173247127;7176539553;9230434873;9230346239;9244015146;6704278765;8528736393;8257697092;9288568020;9279671395;9426082120;9470653946;9379021494;9432710689;9424457125",
"DFFlagAudioThrottleExpensiveDeletions": true,
"DFFlagAudioToggleVolumetricPanning": true,
"DFFlagAudioUseVolumetricPanning": false,
"DFFlagAudioUseVolumetricPanning_PlaceFilter": "True;7902465046;7902470429",
"DFFlagAvatarEditorServiceDisableForSpecificExperiences": true,
"DFFlagAvatarEditorServiceEnabled2": true,
"DFFlagAvatarEditorServiceSearchIgnoreZeroId": true,
"DFFlagAvoidDivisionByZeroForZeroComponentSize": true,
"DFFlagAvoidRestrictDistanceWrap": true,
"DFFlagBetterPlatform": true,
"DFFlagBlockOldPdk": true,
"DFFlagBoxMappedMeshLODFix_v2": true,
"DFFlagBroadphaseParallelAutoOpt": true,
"DFFlagBrowserTrackerIdTelemetryEnabled": true,
"DFFlagCaptureSafetyContext": true,
"DFFlagCFramePropertyFix": true,
"DFFlagChatBotFloodCheck2": true,
"DFFlagChatFloodCheckEnableEventCounters": true,
"DFFlagChatFloodCheckEnableEventIngest": true,
"DFFlagChattedLimitsEnabled": true,
"DFFlagCheckCoreLocalizationLoading": true,
"DFFlagCheckCurrentCapacityInStreamingObserverReplicatorDisconnect": true,
"DFFlagCheckForExpiringPrefetchRequests": true,
"DFFlagCheckForExpiringPrefetchRequestsNoBudget": true,
"DFFlagCheckIfBundleIdIsNilForProcessCount": true,
"DFFlagCheckTeamCreateReplicatorQueue": true,
"DFFlagCleanupSomeHttpTelem": true,
"DFFlagClearLocalGamepassCache": true,
"DFFlagCLI120342": false,
"DFFlagCLI46794SendToTelemetry": false,
"DFFlagCLI46794SendToTelemetry_PlaceFilter": "True;1537690962",
"DFFlagCLI50798": true,
"DFFlagCLI56775": false,
"DFFlagCLI57133": false,
"DFFlagCLI57261v1": false,
"DFFlagCLI57261v2": true,
"DFFlagCLI59911": true,
"DFFlagCLI59911Enforce": true,
"DFFlagCLI59911Return": true,
"DFFlagCLI64234Metrics": false,
"DFFlagCLI64534": true,
"DFFlagCLI65252": true,
"DFFlagCLI65285": true,
"DFFlagCLI65570": true,
"DFFlagCLI66862LocalServerRandomPort2": false,
"DFFlagCLI66862LocalServerRandomPort2_DataCenterFilter": "False;333;372;374",
"DFFlagClientReportJoinInstanceTypeBreakdown2": true,
"DFFlagCloudLocalizationTableCallbackAllCases": true,
"DFFlagCOLLAB2182RedirectTeamTestRunningGames": true,
"DFFlagCOLLAB2385TranslatedErrorMessagingNonTCEnabled": true,
"DFFlagCOLLAB2387PlaceUploadTeamCreateMessagingEnabled": false,
"DFFlagCOLLAB2397PlaceLauncherErrorStatusRetriesEnabled": true,
"DFFlagCOLLAB2397PlaceLauncherGameEndedStatusRetriesEnabled": true,
"DFFlagCOLLAB2397PlaceLauncherRccConstraintsVerificationFailedStatusRetriesEnabled": true,
"DFFlagCOLLAB2397PlaceLauncherUnknownStatusRetriesEnabled": true,
"DFFlagCOLLAB2618DirectlySerializeInDatamodelEnabled": true,
"DFFlagCOLLAB2632UpdatePlaceLauncherRequestStatusEnum": true,
"DFFlagCOLLAB2767UseUntranslatedErr": false,
"DFFlagCOLLAB3148AddRetriesPlaceLauncherHttpRequest": true,
"DFFlagCollectionServiceAPIAnalytics2": true,
"DFFlagCompareFilterResults": false,
"DFFlagCompareFilterResults_DataCenterFilter": "True;232;353",
"DFFlagConsumePlatformNameOverAlternateName": false,
"DFFlagContentProviderFontFamilyNotInWaitingQueue": true,
"DFFlagControllerManagetBetterMovementSignals": true,
"DFFlagCoordinateFrameRemoveYPR": true,
"DFFlagCorrectControllerManagerInWorld": true,
"DFFlagCorrectCreationOfConnections": true,
"DFFlagCountOldChatAPIUsage": true,
"DFFlagCrashpadReportGfx": true,
"DFFlagCSGOperationStatisticsGA": false,
"DFFlagCSGv2StatisticsFix": true,
"DFFlagCSGv2UseMegaAssetFetcher": true,
"DFFlagCSGv2UseMegaAssetFetcher_PlaceFilter": "False;8793627382;8793618616",
"DFFlagCyclicExecutiveThrottlingCancelWorldStepAccum": false,
"DFFlagDatabankMultiFilter": true,
"DFFlagDataModelPatcherLoadRetryTelemetry": true,
"DFFlagDataStore1OnUpdateCounter": true,
"DFFlagDataStore2IfNoneMatchHeaderFix": true,
"DFFlagDataStore2NewVersionHeader": false,
"DFFlagDataStoreAutoHttpRetry": false,
"DFFlagDebugEnableCloseFmodLogs": true,
"DFFlagDebugEnableInstanceUniqueIdCrashOnCollision": true,
"DFFlagDebugEnableRemoteProfiling2": true,
"DFFlagDebugFmodEnableAsyncThreadCallback": true,
"DFFlagDebugForceDefaultTimestepMultiplier": false,
"DFFlagDebugGAReportThrottledSessions": true,
"DFFlagDebugHlsSetDefaultVariantByDevice": true,
"DFFlagDebugIosUseSoftwareEchoCancellation": true,
"DFFlagDebugLaunchTimeByCountryPlaceSpecific_PlaceFilter": "true;189707",
"DFFlagDebugLogAvatarLoadTimeStatsByPlace": false,
"DFFlagDebugLogAvatarLoadTimeStatsByPlace_PlaceFilter": "True;189707",
"DFFlagDebugRakPeerReceive": true,
"DFFlagDebugRakPeerReceiveCountDistributedPackets": true,
"DFFlagDebugRealityCheck3": true,
"DFFlagDebugReportFlagRollout": false,
"DFFlagDebugReportSoundAssetsFromList": false,
"DFFlagDebugSimTurnOnAdaptivePhysicsSteppingWithFlag2": false,
"DFFlagDebugStudioReportSerializationTime_PlaceFilter": "True;9551928577",
"DFFlagDebugVideoEnableAudioOnlyFiles": false,
"DFFlagDebugVideoEnableAudioOnlyFiles_PlaceFilter": "True;4898980405",
"DFFlagDebugVisualizerTrackRotationPredictions": true,
"DFFlagDeprecatableBroadcasts2": true,
"DFFlagDeserializeTrackerDataOnRCC": true,
"DFFlagDisableSingleTraceIdPerPlace": true,
"DFFlagDisableSoundAssetMutex": true,
"DFFlagDisableTeleportsOnModeration": true,
"DFFlagDisplayAdMajorityCriteriaEnabled": false,
"DFFlagDisplayAdOnscreenCheckEnabled": false,
"DFFlagDisplayAdRandomizedRaycastEnabled": false,
"DFFlagDisplayAdRaycastToSurfaceEnabled": true,
"DFFlagDoNotRenderMeshLODByDefault": true,
"DFFlagDontReplicateModelLodNonStreaming": true,
"DFFlagDropPacketFromInvalidPort2": true,
"DFFlagDummyAdRequest": true,
"DFFlagDynamicFastVariableReloaderTest1": false,
"DFFlagDynamicFastVariableReloaderTest1_Rollout": "True;15;2023-03-09T20:43:21",
"DFFlagDynamicHeadsLoading2": true,
"DFFlagEarlyExitIfHang": false,
"DFFlagEarlyExitIfHang_DataCenterFilter": "True;235;265",
"DFFlagEarlyPrefetchRequestChecks": true,
"DFFlagEnableAdUnitName": true,
"DFFlagEnableAnimatorRetargetingMode": true,
"DFFlagEnableClientAnimatorThrottlingMode": true,
"DFFlagEnableContentIdLengthCheck": true,
"DFFlagEnableCoordinatorMemoryPrioritization": true,
"DFFlagEnableDynamicHeadByDefault": true,
"DFFlagEnableExcludeDeletedForListKeys": true,
"DFFlagEnableFlagCrashDataAndroid": true,
"DFFlagEnableFmodErrorsTelemetry": true,
"DFFlagEnableGCapsHardwareTelemetry": true,
"DFFlagEnableHardwareTelemetry": true,
"DFFlagEnableImmersiveServingEvents": false,
"DFFlagEnableImmersiveServingEvents2": true,
"DFFlagEnableInfluxKeyValidate": true,
"DFFlagEnableIOSGPUFriendlyName": true,
"DFFlagEnableLightstepReporting2": true,
"DFFlagEnableLuaApiToRegisterEncryptedAssets": false,
"DFFlagEnableLuaApiToRegisterEncryptedAssets_PlaceFilter": "True;5646917919;5535247402;5650743011;5732185084;5796554295;5796546949;5796518985;5792232897;5790039516;5938526032;5180703112;5036207802;5947859215;5976554489;5967514178;5762783081;4927429832;5271804927;6225076142;6037119605;6313620339;5064251723;6409082143;6366043734;6366019895;5853107391;6303851272;6525184819;6462090760;6536060882;6656109940;6651400444;6833753645;6714103515;4640354700;537413528;6072880991;5388509011;6842406841;6763975907;6810569772;6836529297;5162124741;6242296404;893973440;6555759299;3272174207;2817429547;455327877;6923264315;6876683880;7085107422;6985067462;6994744290;6994747143;6994748760;6994750558;6999960212;7172485708;7085418723;7085416132;7085412189;7198250439;7236522784;7245550076;7234259327;7234162497;6679274937;3101667897;2913303231;364802243;815405518;277751860;6888253864;3457390032;4947425425;3689690770;756247480;285063827;5097010345;5111071793;7331970543;7277505766;7277502454;7277500013;7277498004;7277488595;6073366803;6764786757;5063122755;5579439108;698448212;706824758;447452406;5802642341;5233782396;7317639465;3475397644;4390337206;629119226;7489842410;5542348564;6774662981;7252283618;7021822357;7352428641;6782499449;7665856814;7665858439;7484857336;7429189755;7427268133;7619937171;7427270590;7280776979;7852580088;7711545622;7682549746;8519873016;8600776606;8430712643;8267821593;8523408215;8656125900;8656131552;8323392614;8209480473;8649501395;8526353932;8190625873;8451491417;8967359816;8430716410;8430720021;8691928149;8893378293;8893376837;8893375234;9230434873;9230346239;9244015146;6704278765;8528736393;8257697092;9288568020;9279671395;9426082120;9470653946;9379021494;9432710689;9424457125;4672922401;8583038000;4448566543;4543144283;4042427666;253431746;5974747216;6594198779;2533391464;8020984414;680750021;8778105026;5552313358;9297923091;6933439918;3956818381;4209071254;3623096087;3947737541;8983893891;9272701767;5074204685;5113678354;5089420081;5113680396;5101838579;5445525505;5237652005;6479720355;6152695332;9386500519;8988878415;5205771996;844441865;9449357539;9449346312;9449322773;9449312253;9449300051;5578992252;2056597445;9604473769;9666345834;9670497620;6536120621;9724177376;9769345912;4850718823;9300407930;6639766;6737970321;6599438732;9800475426;9291030453;9411975514;9648880560;9542881071;9552022794;9648883891;9648888455;9660279665;9708947809;9809534920;9463737803;9862870352;9862849972;9862789592;9894900344;9479367099;9486506804;9922817401;10002051672;10001920797;9982801024;9709393094;9659989778;9563367175;9997709290;10054526037;9465859374;9938883474;10113002281;10096544537;6445973668;6447798030;6996694685;8847312489;10190394336;10191408952;9423318797;10272293170;9314466589;10285554184;10057963710;10435224215;10146432319;10465853247;10465873968;9129288160;9134839143;9803810042;10201978992;10381578920;9717701801;9134941656;6837934317;9495369236;10217794885;10692093600;10695302524;10445615061;9524757503;10919330567;10895555747;10768305459;10912060909;11088788925;11110464593;11002897309;11116169215;11116168996;11116167810;11116167943;11109117989;10928399479;10966838056;10928411159;5289509545;4640368528;6023903686;11008022191;11138479969;11138508272;11115477432;11189492685;11189163544;11237748076;11237759266;11237755090;11237755215;11237755035;10894180429;10957579790;11315351400;11278516344;11286999367;11309534295;11287011130;11309714627;10695312682;11436221007;11444932478;11450899603;11497622549;11504321677;11498022323;11508738359;11508738629;11509888388;10720270804;9249776514;9049840490;9442460702;9280212924;8633070661;8472419479;11638764033;10126768872;11110455694;5326576507;5913722875;6386911572;8979173396;9125662619;9125667996;9916502094;11658541192;11105064323;10956766913;6737935903;9356050413;10900725936;11566389687;11566385150;11707114324;11697170413;11707130433;11707134020;11707136082;9616411936;11268121492;12113006580;12128024661;11504594758;12204626493;11946824905;3512481881;10752876846;9667175956;5938036553;11716079088;12331642939;11432287153;12268627706;12146837523;11302971424;12357661992;6766156863;12494616651;12202678406;4398851468;12670139300;12498843001;12519296046;12734535169;12734143030;12206689536;10762579692",
"DFFlagEnableMemProfilingOutsideClient": true,
"DFFlagEnableMemProfilingStorePlaceId": true,
"DFFlagEnableModerationDisconnectReason": true,
"DFFlagEnableNewAnimationRuntimeProperty": false,
"DFFlagEnableNoFillReasonEnum": true,
"DFFlagEnablePerfAudioCollection": false,
"DFFlagEnablePerfAudioCollection_PlaceFilter": "True;5064251723",
"DFFlagEnablePerfDataCoreCategoryTimersCollection2": true,
"DFFlagEnablePerfDataCoreTimersCollection2": true,
"DFFlagEnablePerfDataGatherTelemetry2": true,
"DFFlagEnablePerfDataMemoryCategoriesCollection2": true,
"DFFlagEnablePerfDataMemoryCollection": true,
"DFFlagEnablePerfDataMemoryPressureCollection": true,
"DFFlagEnablePerfDataSubsystemTimersCollection2": true,
"DFFlagEnablePerfDataSummaryMode": true,
"DFFlagEnablePerfRenderStatsCollection2": true,
"DFFlagEnablePerfStatsCollection3": true,
"DFFlagEnablePlacementInformation": true,
"DFFlagEnablePlayerNetworkPing2": true,
"DFFlagEnablePointsPlaceVersionNumber2": true,
"DFFlagEnableRefactorGetRenderingTarget": true,
"DFFlagEnableRemoteProfiling": true,
"DFFlagEnableRolloutFlagCrashDataRcc": true,
"DFFlagEnableSetExperienceSettingsLocaleIdLua2": true,
"DFFlagEnableSetTransactionStatusMigration": true,
"DFFlagEnableSocketPortSharding": true,
"DFFlagEnableUniverseIdInServingRequest": true,
"DFFlagEngineStabilityResetInvalidCumulativeMetrics": false,
"DFFlagEphemeralCounterInfluxReportingEnabled": true,
"DFFlagESGamePerfMonitorEnabled": true,
"DFFlagEventIngestInstrument": true,
"DFFlagExposeCFramePVInstanceFix": true,
"DFFlagExposeSessionToContentProvider": true,
"DFFlagExtraExperienceSettingsLocaleValidation": true,
"DFFlagExtraReadInstanceChecks": true,
"DFFlagFacialAnimationStreaming": false,
"DFFlagFacialAnimationStreaming_PlaceFilter": "True;9299262749;9793123004;9799263270;9872815406;10001271232;10001514317;10724942847;10057672346;10358747927;10442917528;10548862903;10713392009;10787386927;11453377229;11452116982;11444707414;11116995134;11253464533;11386744897;11393894962;11402255591;11444068120;11460402982;11597947993;11599481611;12019849317;12117075688;12117237410;12412879092;12339044345;12500012844;11822559022;10404927539;11444556552;11701806268;11766336272",
"DFFlagFacsTagInRepAndServStats_PlaceFilter": "True;11597947993",
"DFFlagFastVisuallyMovingCounters4": true,
"DFFlagFFlagRolloutDuplicateRobloxTelemetryCountersEnabled": true,
"DFFlagFFlagRolloutDuplicateTelemetryCountersEnabled": true,
"DFFlagFinalizeDeformerImplNonUnitFix": true,
"DFFlagFix67576": true,
"DFFlagFixAccoutrementWeldCreationForCloudEdit4": true,
"DFFlagFixAddAppSessionCommonPoints": true,
"DFFlagFixAdPortalTeleportDataError": true,
"DFFlagFixAdRequestResponseMismatch": true,
"DFFlagFixAndroidGetAddrinfoHintFlags": true,
"DFFlagFixAttachmentCrashCleanUpConstraint1": false,
"DFFlagFixAudioAssetMemoryReporting2": true,
"DFFlagFixCGNCrash": true,
"DFFlagFixControlBufferLen": true,
"DFFlagFixControllerManagerSwap": true,
"DFFlagFixCutAndUndoAfterSavingCSGUnionToNewFile": true,
"DFFlagFixEmptyFolderContributesToTrackweight": true,
"DFFlagFixErrorSessionThrottling": true,
"DFFlagFixForOutOfBoundsFrameBufferAccess": true,
"DFFlagFixItemInQueueTimeMetric": true,
"DFFlagFixJointHierarchyCrash": true,
"DFFlagFixJointHierarchyCrash_DataCenterFilter": "True;322",
"DFFlagFixNPCStreamOut": true,
"DFFlagFixPlaceSizeReporting": true,
"DFFlagFixReplicatedFirstMetrics": true,
"DFFlagFixRobloxTelemetryEphemeralCountersAndStatsCategory": true,
"DFFlagFixSessionResultOverride": true,
"DFFlagFixSpatialFilterCrash": true,
"DFFlagFixUsingGameIdInsteadOfJobId": true,
"DFFlagFixVector3Slerp": true,
"DFFlagFlagDeferredTrackerDataHandling": true,
"DFFlagFriendsV2BadAccessFix": true,
"DFFlagGameNetDisableVelocityLodWhenSendingAll": true,
"DFFlagGameNetExtraPhysicsPacketStats": true,
"DFFlagGameStartInfoOffApiProxy": true,
"DFFlagGenerateMeshLOD_Fix1": true,
"DFFlagGetAccessoryTypeEnabled": true,
"DFFlagGetInventoryShorterQueryParams": true,
"DFFlagGlobalToggle17sApis": false,
"DFFlagGoodbyeChoiceActiveProperty": true,
"DFFlagGranularDeserializeTestingFixture": true,
"DFFlagGuardFmodManagerStartupShutdown": true,
"DFFlagGuiLayerCollectorAllocs": true,
"DFFlagHandleImmersiveAdSetImageFailure": true,
"DFFlagHasVerifiedBadgeOnPlayerObject": true,
"DFFlagHaveToBeSure": true,
"DFFlagHideDestroySetting": true,
"DFFlagHideDestroySetting_PlaceFilter": "False;2753915549;7449423635;4442272183;7205641391;8571687919;9503245376;2746687316;8954262994;10379662529;10676281527;10734933421;2218671952;8165174590;10562769589;10807350651;10865468352;10909307903;104716347;758601306;3275089863;4220865742;4663480962;5597122238;6351924732;6362318115;6816418175;6925925820;8219996444;8661730058;9264872568;9938145680;10789754271;10842089756;10865531559;10905003484;10909309419;10914127905;4058502097;4733293091;10463659236;4562517313;10790881402;5390300927;8917641854;7371801772;8090420118;1034082235;9381162676;10825345072;3099893649;3619342762;8240500522;10733604175;2118896573;5774689625;7446783555;9678216286",
"DFFlagHidePartSurfaceProperties": true,
"DFFlagHideProxySettings": true,
"DFFlagHlsAbrFixedVariantCompatible": true,
"DFFlagHSRForceClearOtherData": true,
"DFFlagHSRPublishBestEffort": true,
"DFFlagHSRPublishBestEffortAllErrors": true,
"DFFlagHttpCacheMissingRedirects": true,
"DFFlagHttpCacheReduceStatic2": true,
"DFFlagHttpClientOptimizeReqQueuing": false,
"DFFlagHttpClientRequestMetrics": true,
"DFFlagHttpDynamicSuccessStatusCode": true,
"DFFlagHttpEnableTracing": true,
"DFFlagHttpLogRedirects": true,
"DFFlagHttpNetworkType": false,
"DFFlagHttpPointsErrorMetrics": true,
"DFFlagHttpPointsReporterUseCompression": true,
"DFFlagHttpPointsResponseMetrics": true,
"DFFlagHttpRbxApiEnable17sApis": false,
"DFFlagHttpRbxApiServiceReportStatusToDiag": false,
"DFFlagHttpReqTrackIsCompressed": true,
"DFFlagHttpServiceErrorLogEnabled": true,
"DFFlagHttpServiceUniverseBlacklistEnabled": true,
"DFFlagHttpTraceErrorCurrentUrl": true,
"DFFlagHttpTraceErrorProxy": true,
"DFFlagHttpTrackResponseProcessTime": true,
"DFFlagHttpTrackSyncWriteCachePhase": true,
"DFFlagHttpUsePerMillionThrottle": true,
"DFFlagHumanoidOnlyStepInWorkspace": false,
"DFFlagHumanoidRequiresNeckEnabled": true,
"DFFlagHumanoidUseFloorWorld": true,
"DFFlagHumanoidWithPGSConstraintsUsePhysicsState": true,
"DFFlagIgnoreCustomEventReceiverSource": true,
"DFFlagIgnoreCustomEventReceiverSource_PlaceFilter": "False;8357261047;5002210114;1107356201;5672467276;2897155393;5180811071;253431746;11122108967;2998650659",
"DFFlagIkControlEnabled": true,
"DFFlagIkControlEnableSmoothTime": true,
"DFFlagIkControlLookAtSmoothFix": true,
"DFFlagIkControlTelemetryEnabled": true,
"DFFlagIkControlTypeFix": true,
"DFFlagImprovedGuiFilter": true,
"DFFlagIncludeAndroidFreeOsMemForComparisonForSessionTracking": true,
"DFFlagIncludeAndroidFreeOsMemForForPerformanceControl": true,
"DFFlagIncludeFreeOsMemAndOtherTelemetryForHarmony": true,
"DFFlagIncludeRotationalVelocityInPriority": true,
"DFFlagInferredCrashMemReportingV2": true,
"DFFlagInferredCrashSystemSuccessReportMove": true,
"DFFlagInferredFlushSuspendBackground": true,
"DFFlagInferredMarkReportedTeardown": true,
"DFFlagInferredMobileSuccess": true,
"DFFlagInferredSplitWinShutdown": true,
"DFFlagInfluxReportLastVisitedUrlHost": true,
"DFFlagInfoDefaults": true,
"DFFlagInstanceCensusByExactType": true,
"DFFlagInstanceSanitizationCheckCreatorPtr": true,
"DFFlagIntegrateSendInPeer": false,
"DFFlagIntegrityCheckedProcessorUC3927": true,
"DFFlagJSONDecodeRework": true,
"DFFlagJSONEncodeRework": true,
"DFFlagJumpHeightConsistency": true,
"DFFlagJumpScaresP2": true,
"DFFlagKeyRingMoreReporting": true,
"DFFlagKeyRingVersioning": true,
"DFFlagLegacyRedundantPlayerCheckAnalytics": true,
"DFFlagLessStreamLodCaching": true,
"DFFlagLimitToolActions": true,
"DFFlagLoadCharacterLayeredClothingProperty2": true,
"DFFlagLoadStreamAnimationForceUpdateHumanoidUserId_PlaceFilter": "True;10787386927;12117075688;12117237410;11822559022;10404927539;11444556552;11701806268;11766336272",
"DFFlagLocalizationServiceCorescriptLocalizationFallbackLocales": true,
"DFFlagLocalizationTableAnalyticsSenderRemovePlayerJobBeforeDestruct": true,
"DFFlagLocalizationTableAnalyticsSenderRequeueFailedEntries": false,
"DFFlagLocalizationTableCreationImprovement": true,
"DFFlagLocalPlayerMembershipTypeXbox": true,
"DFFlagLockTheftInstanceCrash": true,
"DFFlagLockViolationInstanceCrash": false,
"DFFlagLockViolationScriptCrash": false,
"DFFlagLodEntityScale": true,
"DFFlagLodQuotaFix": true,
"DFFlagLogTotalPlayersOnJoinFix": true,
"DFFlagLTAnalyticsDontMoveName": true,
"DFFlagLTAnalyticsIgnoreCoreGui": true,
"DFFlagLuaReportParseIntegerIssues": false,
"DFFlagMatrixToEulerFixSingularity": true,
"DFFlagMegaReplicatorSimplifyRecursion": true,
"DFFlagMissingAllocs": true,
"DFFlagModelLodOnlyResetWhenNotInDMServer": true,
"DFFlagModelScaleHumanoidFixes": true,
"DFFlagMoreSanitizationCoverage": true,
"DFFlagMoreVerboseStreamingInfo": false,
"DFFlagMoreVerboseStreamingInfo_PlaceFilter": "True;7027922660;9133022367;6510504476",
"DFFlagMovingAssemblyStageTrimOpt": true,
"DFFlagMovingAssemblyStageVecOptPool": true,
"DFFlagMovingAssemblyStageVecOptRef": true,
"DFFlagMPServiceBundleUrlV2": false,
"DFFlagMPServiceBundleUrlV2_PlaceFilter": "True;11120164813",
"DFFlagMPServiceDevProductUrlV2": false,
"DFFlagMPServiceDevProductUrlV2_PlaceFilter": "True;11120164813",
"DFFlagMPServiceGamepassUrlV3": false,
"DFFlagMPServiceGamepassUrlV3_PlaceFilter": "True;11120164813",
"DFFlagMutexWaitInstrumentationInfra": true,
"DFFlagNamedMutexFix2": true,
"DFFlagNamedMutexPathFix": true,
"DFFlagNetworkReportContentIdLimit": true,
"DFFlagNewBlockBlockContact": true,
"DFFlagNewInferredCrashSystem": false,
"DFFlagNewInferredCrashSystemV2": true,
"DFFlagNewInferredCrashTelemetrySystem": true,
"DFFlagNewPaBlob2": true,
"DFFlagNewPackageAnalytics": true,
"DFFlagNewRunServiceSignals2": true,
"DFFlagNfAddReport": true,
"DFFlagNoCompletenessForNeverReplicateParent": true,
"DFFlagNoInfiniteLoopOnChatInfoLoadFailure": true,
"DFFlagNonBlockingAnalyticsExit": false,
"DFFlagNonuniformUnionsRelease2": true,
"DFFlagNonuniformUnionsReleaseRollout2": true,
"DFFlagNoOpWhisperAPI": true,
"DFFlagOneHeartbeatForUGC2": true,
"DFFlagOnlyReportPauseMetricsToKibanaWhenPauseIsEnabled": true,
"DFFlagOrder66": false,
"DFFlagPackageAutoUpdateInStudio": true,
"DFFlagPackageHashCacheQuatSunset": true,
"DFFlagPackageModCheckUseTreeDiff": true,
"DFFlagParallelInterpolationDeadlockFix": true,
"DFFlagPatchTeleportExploit": false,
"DFFlagPathfindingLinkAnalytics2": true,
"DFFlagPathfindingStatsPerRequestThrottlePerRequest": true,
"DFFlagPauseSurfaceControllerOnLuaAppDestroy": false,
"DFFlagPerformanceControlUseTunableIdContext": true,
"DFFlagPersistentJoinNoCharacter": true,
"DFFlagPhysicsReceiveReportPerfData2_PlaceFilter": "True;11597947993",
"DFFlagPlayerConfigurerDoCDNProbe2": true,
"DFFlagPlayerConfigurerFallbackLocales": true,
"DFFlagPlayerPolicyUserAgentOverrideEnabled": true,
"DFFlagPoolAudioBuffers": true,
"DFFlagPredictedOOMAbs": true,
"DFFlagPredictedOOMMessageExitContinue": true,
"DFFlagPredictedOOMMessageKeepPlayingExit": false,
"DFFlagPredictedOOMMessageKeepPlayingLeave": true,
"DFFlagPredictedOOMSubset": true,
"DFFlagPredictedOOMTelemetryFix": true,
"DFFlagPreloadWithClipProvider": true,
"DFFlagPreventReturnOfElevatedPhysicsFPS": true,
"DFFlagPreventRewriteApiToAssetDelivery": true,
"DFFlagProperlyIgnoreStalePrefetchTerrain": true,
"DFFlagPropertySQIMemScope": true,
"DFFlagProtectLuaPushValues": true,
"DFFlagQuatDeprecatedSunset": true,
"DFFlagQuaternionFromDirections": true,
"DFFlagQuaternionToAxisAnglePrecision": true,
"DFFlagQueuePersistenceChange": true,
"DFFlagRakNetCleanUpLegacyReport": true,
"DFFlagRakNetDetectNetUnreachable": true,
"DFFlagRaknetNewSocketBind": true,
"DFFlagRbxtempForBuffer": true,
"DFFlagRccDumpMemMapOnProfilingCheckpoints": false,
"DFFlagRCCIncludeHTTPErrorInitTelmetry": true,
"DFFlagRccReadChannelFromGameServerMetadata": true,
"DFFlagRCCThumbnailReportErrorInflux": true,
"DFFlagRccUpdateChannelInCrashHandler2": true,
"DFFlagReduceUnneededIteration": true,
"DFFlagRegionSubscriptionAdjustment": true,
"DFFlagReluctantlyFixInnerBox": true,
"DFFlagReluctantlyImproveInnerBox9Slice": true,
"DFFlagRemoteEarlyNope": true,
"DFFlagRemoveBrokenBlockListHttpRbxApi": true,
"DFFlagRemoveGANetwork": true,
"DFFlagRemoveGetContainingSegmentForFunctionCurve": true,
"DFFlagRemoveInvalidPlacementRequest": true,
"DFFlagRemoveMd5": true,
"DFFlagRemovePerfInfluxProfileDataTypeEnum": true,
"DFFlagRemoveReportAbuseIfCheck": true,
"DFFlagRemoveWhitelistForReturnPortals2": true,
"DFFlagRenderTC2_6": true,
"DFFlagRenderTC2_6_PlaceFilter": "False;11781792372",
"DFFlagRenderTC2_DiscardGeometryData2": false,
"DFFlagRenderTC2DebugAtlasVisualize": false,
"DFFlagRenderTC2DebugAtlasVisualize_PlaceFilter": "True;2431195974;7263004204;6959329418;189707",
"DFFlagReplaceAllFixOverflow": true,
"DFFlagReplaceSpacesInDebugNamesWithUnderscores": true,
"DFFlagReplicatorKickReadEventStringDataAndVariantLimit": false,
"DFFlagReportAsyncHttpQueueFailedErase": true,
"DFFlagReportClientAnimatorThrottlingStats": true,
"DFFlagReportClientMemoryCat": true,
"DFFlagReportCollisionDetectionTime": true,
"DFFlagReportCSGMeshVersionOnce": false,
"DFFlagReportDeadKickCodeUsage": true,
"DFFlagReportDefaultLoadingGuiRemovalTimeWithChildrenCheck": true,
"DFFlagReportGamepadUsageAnalytics2": true,
"DFFlagReportHotkeysInActionBindings": true,
"DFFlagReportHttpBatchApiRejectedUrl": false,
"DFFlagReportHttpBatchApiRejectedUrl_PlaceFilter": "True;10491243930;10637625620;189707;11087296732",
"DFFlagReportHttpServiceUsagetoEventStream": true,
"DFFlagReportHumanoidRigAndModelTypeIfDifferent": true,
"DFFlagReportHumanoidRigUpdate": true,
"DFFlagReportIncorrectlyPausedReplicationStat3": true,
"DFFlagReportInfluxFastLog": false,
"DFFlagReportJoinBytesTimeWithInstanceCounts": true,
"DFFlagReportJoinStructureMismatch": true,
"DFFlagReportJoinStructureMismatchOnly": true,
"DFFlagReportLargePacketQueueSizeStats": true,
"DFFlagReportLuaKicks": true,
"DFFlagReportNetworkFilterPlayerParentFilterException2": true,
"DFFlagReportNewAnimationRuntimeStats": true,
"DFFlagReportNewInstanceCoalescingCount2": true,
"DFFlagReportNoWorkspaceStreamingErrors": true,
"DFFlagReportNumChildrenAtNIIProcess": true,
"DFFlagReportPackageModCheckAnalytics": true,
"DFFlagReportPacketQueueSizeStats": true,
"DFFlagReportPhysicsFPSStatsForInflux": true,
"DFFlagReportPhysicsFPSStatsPlaceSpecific_PlaceFilter": "True;606849621;171391948;189707",
"DFFlagReportPhysicsSolverStatsPlaceSpecific_PlaceFilter": "True;606849621;171391948;189707",
"DFFlagReportPlayerType": true,
"DFFlagReportPrefetchRequestAbandon": true,
"DFFlagReportQueueStatsCanSend": true,
"DFFlagReportQueueStatsCanSend_DataCenterFilter": "True;254;333;302",
"DFFlagReportReplicateDestroySetting": true,
"DFFlagReportRetargetingStats": true,
"DFFlagReportSharedStringBreakdown": true,
"DFFlagReportSolverUsageStats": true,
"DFFlagReportStreamingPauseStatsWhenPauseIsDisabled": false,
"DFFlagReportStreamingSetCount": true,
"DFFlagReportStreamJobStopReasons2": false,
"DFFlagReportStreamJobStopReasons2_DataCenterFilter": "True;353;265;246",
"DFFlagReportTeleportEarlyReturn": true,
"DFFlagReportTopReplicationContainerAndAvatarStats": true,
"DFFlagRequireRequireToRequireAllOrNone": true,
"DFFlagRequireScriptLog": true,
"DFFlagResetCallbackThreadTop": true,
"DFFlagResetChildrenOnNIIProcess2": true,
"DFFlagResetLevitationVelocityCache": true,
"DFFlagResetPlaceIdInAppSession": true,
"DFFlagResolvePackageHistoryIdCollisions": true,
"DFFlagRetargetingSeparateFromFacsWeight": true,
"DFFlagRevealToolIsModel": true,
"DFFlagRevertMacOSFreeMemoryCalculation": true,
"DFFlagRolloutUpdateTask": true,
"DFFlagRomarkAdjustCharacterReportThrottle": true,
"DFFlagRuppHeaderFromClientEnabled3": true,
"DFFlagRuppTokEnAnyOpt": true,
"DFFlagSafetyServiceScreenshot": true,
"DFFlagSampleAccurateSoundSeeking": true,
"DFFlagSendGameServerDataLimits": true,
"DFFlagSendRCCShutdownAndStartupEvents": false,
"DFFlagSendTrackerDataIfRelevantToNetworkOwner": true,
"DFFlagSendUniverseIdHeaderOnClient": true,
"DFFlagServerConfigurerDoCDNProbe": true,
"DFFlagServerConfigurerRunLMSTest": true,
"DFFlagServerCopiesPlayerGui3": true,
"DFFlagServerCopiesPlayerGui3_PlaceFilter": "false;142823291",
"DFFlagSessionTelemetryLayeredClothing": true,
"DFFlagSessionTelemetryTeleport": true,
"DFFlagSessionTrackingFlushAtImportantCheckpoints": true,
"DFFlagSessionTrackingRecordUserClickMinRadiusTime": true,
"DFFlagSetAbsoluteRotationPerfOpt": true,
"DFFlagSetStreamingEnabledTag": true,
"DFFlagSharedNIIUsesTargetSet": true,
"DFFlagShorelines_FixWriteVoxels_Rollout": "False;30;2023-03-13T23:17:37",
"DFFlagShouldCheckAndMarkVisibleEnabled": true,
"DFFlagSignalDisconnectAllUpdateState": true,
"DFFlagSignalFixDestruction": true,
"DFFlagSignalRAbortUnconditionally": true,
"DFFlagSignalRHubConnectionConnectTimeoutCounter": true,
"DFFlagSignalRReconnectionFailureMetrics": true,
"DFFlagSimAdaptiveBodyMoverBugfix": true,
"DFFlagSimAdaptiveFuzzyExtentFix": true,
"DFFlagSimAdaptiveIntegrationErrorModel": true,
"DFFlagSimAdaptiveTimesteppingUpdate": true,
"DFFlagSimBasePartUIUpdateFix": true,
"DFFlagSimCollectConstraintInfo2": true,
"DFFlagSimCollectConstraintInfo3": true,
"DFFlagSimConsolidationMultiplierFix": true,
"DFFlagSimConstraintTelementryEventDoNotSendTwice": true,
"DFFlagSimDontReportHumanoidFloorTouchDuringStep": true,
"DFFlagSimDontReportHumanoidFloorTouchDuringStep2": true,
"DFFlagSimDontResetImpulseAccumulator": true,
"DFFlagSimDrawNoCollisionConstraintToolTip": true,
"DFFlagSimFixAlignOrientationSelection": true,
"DFFlagSimFixConstraintSelectionBoxCrash": true,
"DFFlagSIMForceCSGv2Once": false,
"DFFlagSimHumanoidControllerBalancingFix": true,
"DFFlagSimHumanoidMoveApiFix": true,
"DFFlagSimHumanoidNewStopOverlap_PlaceFilter": "False;2573981315;6317172524;4999654929",
"DFFlagSimHumanoidPhysics": false,
"DFFlagSimHumanoidPhysics_PlaceFilter": "True;9863470458;11453377229;11452116982;11571326476;11379562275;11599481611;12117075688;12117237410",
"DFFlagSimInlineIsTerrain": true,
"DFFlagSimLDLPGSStatsBufferBreakdownReporting": true,
"DFFlagSimNewMaterialProperties": true,
"DFFlagSimPatchUninitializedCollisionGeometryType": true,
"DFFlagSimPhysicsReportingStuff": true,
"DFFlagSimRecordCFramesAfterDrag": false,
"DFFlagSimRemoveBroadphaseCollisionWake": true,
"DFFlagSimReportAveWorldstepTime": true,
"DFFlagSimSolverBufferPurgeEnabled": true,
"DFFlagSimSolverConstraintServoMotorLimitFix4": true,
"DFFlagSimSolverLargeWorkloadReporting": true,
"DFFlagSimSolverOptimizedIslandizerIKBugFix": true,
"DFFlagSimTimestepArbiterUpdates": true,
"DFFlagSIMTrackCSGSettingChange": false,
"DFFlagSkipReadDiskCacheRedirects": true,
"DFFlagSkipSingePartAssemblyUpdate": true,
"DFFlagSmoothDampImprovements": true,
"DFFlagSmoothDampQuaternionAngularVelocity": true,
"DFFlagSortingChildrenAllocs": true,
"DFFlagSortTypeRecentlyCreated": true,
"DFFlagSpatialHashAllocs": true,
"DFFlagSpecialCaseSupportRbxCdnInAppDataModel2": true,
"DFFlagSpecificGravityDummyFunctionGA": true,
"DFFlagStopCallingRegisterAbsence": true,
"DFFlagStopCallingRegisterPresence": true,
"DFFlagStreamDataItemsStreamBySet": true,
"DFFlagStreamingClearDescendantsOnInstanceGC": true,
"DFFlagStreamingObserverAvoidClusterEmplace": true,
"DFFlagStreamingObserverCatchInvalidPlayers": true,
"DFFlagStreamingRegionRemovalStats": true,
"DFFlagStreamingReportPerformanceStatsAddDeferredGCCount": true,
"DFFlagStreamingReportPerformanceStatsAddInstanceQuota": true,
"DFFlagStreamingReportPerformanceStatsAddRadii": true,
"DFFlagStreamingSolverBetterNOUChangedTracking": true,
"DFFlagStreamingSolverCollectFixedRespectsCollectDependencies": true,
"DFFlagStreamingSolverHandleOutOfOrderChangedEvents2": true,
"DFFlagStreamingSolverProperlyRefCountAncestorModels": true,
"DFFlagStreamJobClampToWorldExtents4": true,
"DFFlagStreamJobInvalidateJoinCacheOnWholeSet": true,
"DFFlagStreamTimingUpdate": true,
"DFFlagStudioNoOptAssert": true,
"DFFlagStudioPackageHashRelativeEpsilon": false,
"DFFlagStudioPackageHashRelativeEpsilon_PlaceFilter": "True;5751165605;6685536819;6685530069;5552313358;7735743619",
"DFFlagStudioUploadVideoDetailedErrorMessage": true,
"DFFlagStudioVideoErrorIfParsingFail": true,
"DFFlagStudioVideoFixChunkerCrash": true,
"DFFlagStudioVideoFixParserCrash": true,
"DFFlagStudioVideoUploadUseSuperSet": true,
"DFFlagSubsystemScopedHandleCorrectMove": true,
"DFFlagSupportEncryptedAssets": false,
"DFFlagSupportEncryptedAssets_PlaceFilter": "True;4587054145;4521759066;4589144917;1921623329;4710199611;4739075775;4786133739;4749336296;4819751684;4898701067;4898177642;4911320968;4927429832;1856333096;5301306769;5312976759;5312984096;5312987616;5312990840;5509581543;5505132318;5271804927;5535247402;5180703112;5036207802",
"DFFlagSupportFontFamilyInBatchThumbnailFetcher": true,
"DFFlagSupportMeshLOD": true,
"DFFlagSupportMeshLOD_PlaceFilter": "True;2900823006",
"DFFlagSupportYouTubeInAppDataModelIfRbxCdnAllowed": true,
"DFFlagSwitchToSignedIntegerForValidateOsMemDelta": true,
"DFFlagSymmetricTrackerDataReplication": true,
"DFFlagTaskLibReportNonSuspended": true,
"DFFlagTaskSchedulerAvoidSleep": true,
"DFFlagTaskSchedulerBlockingShutdownInClients": false,
"DFFlagTattletaleUseNewWordListFeatures": false,
"DFFlagTBSHandleOrphan": true,
"DFFlagTelemetryScopeOverhead": true,
"DFFlagTeleportAbuseDashboard": true,
"DFFlagTeleportAllErrorsLogging": true,
"DFFlagTeleportEnableTrustedTeleportFlow": true,
"DFFlagTeleportMenuOpenTelemetry2": true,
"DFFlagTeleportPerUniverseErrorRateEnabled": true,
"DFFlagTeleportServiceTeleportTookTooLongMetricEnabled": true,
"DFFlagTeleportTimeClient": true,
"DFFlagTeleportTimeClientLoaded": true,
"DFFlagTeleportTimeClientTeleportType": true,
"DFFlagTeleportWebErrorLogUserId2": true,
"DFFlagTemporaryInstanceSuperStrength": true,
"DFFlagTerrain_UnpackOnDemand_FastLoad": true,
"DFFlagTextBoxServiceAnalyticsEnabledV2": true,
"DFFlagTextBoxServiceFilterEnabledV2": true,
"DFFlagTextBoxServiceMasterV2": true,
"DFFlagTextBoxServiceMasterV3": true,
"DFFlagTextBoxServiceMasterV4": true,
"DFFlagTextBoxServiceMasterV4AnalyticsEnabled": true,
"DFFlagTextBoxServiceMasterV4FilterEnabled": true,
"DFFlagTextBoxServiceNormalizeMessages": true,
"DFFlagTextScraperAlwaysSendParameterInfoIfPresent": true,
"DFFlagThrottleDebuggerMetrics": true,
"DFFlagThumbnailAvatarFetchOffApiProxy": true,
"DFFlagThumbnailCharacterFetchLogErrors": true,
"DFFlagThumbnailerFixGuiRendering": true,
"DFFlagThumbnailingUseAssetIds": true,
"DFFlagThumbnaiRenderImportantPerformUpdatesOnly": true,
"DFFlagTopGamesPhysicsReportingEnabled2": true,
"DFFlagTPoserBlockyAdjustment2": true,
"DFFlagTrackerDataRecvCheckReplicationContainer": true,
"DFFlagTrackFacsRepInPhy_PlaceFilter": "True;11597947993",
"DFFlagTrackNOUInformationWithNoPhys": true,
"DFFlagTrackRunUpdateCycleTime": false,
"DFFlagTrackTotalNOUCountOnServer": true,
"DFFlagTransferOwnershipToServerOnJointBreak": true,
"DFFlagTransformCtorDispatch": true,
"DFFlagTransformNullptrChecks": true,
"DFFlagTreeDiffModCheckShadow": true,
"DFFlagTreeDiffWorldCFrameEpsilonFastInt": true,
"DFFlagTweenServiceFixPathologicalCase": false,
"DFFlagTweenServiceTweak": true,
"DFFlagTypesetterAllocs": true,
"DFFlagUCSTags": true,
"DFFlagUIAllocsCategory": true,
"DFFlagUIPerfTelemetry": true,
"DFFlagUIQuadTreeAllocs": true,
"DFFlagUpdateBroadphaseForClearTerrainWelds": true,
"DFFlagUpdateDisplayNameforStudioClientServerTest": true,
"DFFlagUpdateHumanoidCachedPlayerIdInPlayerSetCharacter": true,
"DFFlagUpdateLatestTimeForNoPhys": true,
"DFFlagUpdateOverriddenTracksFix": true,
"DFFlagUseAppBridgeAfterFlagInit": true,
"DFFlagUseNewGuidGenerator": true,
"DFFlagUseStudioLocaleForDatamodel": true,
"DFFlagUWPAutoLoginTelemetryEnabled": true,
"DFFlagValidateFreeOsMemAndUsedOsMemAllocationValues": false,
"DFFlagVBInUsersServiceResponse": true,
"DFFlagVideoCaptureServiceEnabled": false,
"DFFlagVideoCaptureServiceEnabled_PlaceFilter": "True;9299262749;9793123004;9799263270;9872815406;10001271232;10001514317;10057672346;10358747927;10548862903;10713392009;10787386927;11453377229;11452116982;11444707414;11116995134;11253464533;11386744897;11393894962;11402255591;11444068120;11460402982;11597947993;11599481611;12019849317;12117075688;12117237410;12412879092;12339044345;12500012844;11822559022;10404927539;11444556552;11701806268;11766336272",
"DFFlagVideoDropFramesInDecoding": true,
"DFFlagVideoFixNegativeBufferLevel": true,
"DFFlagVideoMetricsReportBandwidthAndPerformanceMetrics": true,
"DFFlagVideoMetricsReportZero": true,
"DFFlagVideoMetricsSwitch2Telemetry": true,
"DFFlagVideoStreamPortraitModeResolutionCheck": true,
"DFFlagVideoUseDynamicAVSyncParams": true,
"DFFlagVideoUseMemoryAndCpuMetrics": true,
"DFFlagViewportFrameEnableMirroring": false,
"DFFlagViewportFrameEnableMirroring_PlaceFilter": "True;10787386927;11453377229;11597947993;11599481611;12117075688;12117237410;12412879092;11822559022;10404927539;11444556552;11701806268;11766336272",
"DFFlagVirtualCursorReportEnabledFromAPI3": true,
"DFFlagVirtualCursorReportManuallyEnabled2": true,
"DFFlagVirtualCursorReportPlatform": true,
"DFFlagVirtualCursorReportUserCount3": true,
"DFFlagVisualEngineTrackHeadless": true,
"DFFlagVisuallyMovingSleepOnRemove": true,
"DFFlagVoiceChat4": true,
"DFFlagVoiceChatDisableOriginalMuteSignal": false,
"DFFlagVoiceChatDisableOriginalMuteSignal_PlaceFilter": "True;11116930529",
"DFFlagVoiceChatEnableApiSecurityCheck": true,
"DFFlagVoiceChatEnableApiSecurityCheck_PlaceFilter": "False;5064251723;5465723678;7017799672;7097215816;6985028626;7241827834;6937477528;7277614429;6873361605",
"DFFlagVoiceChatEnableDTX": true,
"DFFlagVoiceChatEnableEventCounters3": true,
"DFFlagVoiceChatEnableEventLogging5": true,
"DFFlagVoiceChatEnablePeerConnectionFailureHandling": true,
"DFFlagVoiceChatEnablePlayerModeratedSignal": true,
"DFFlagVoiceChatFixWorkerThreadName": true,
"DFFlagVoiceChatHttpResultBodyEmptyTelemetry": true,
"DFFlagVoiceChatIsVoiceEnabledForUser": true,
"DFFlagVoiceChatJoinSubsCompleteEvent": true,
"DFFlagVoiceChatLatencyStatsRccMute": true,
"DFFlagVoiceChatMultistreamCheckConnectionMgr": true,
"DFFlagVoiceChatMultistreamCloseSubsOnLeave": true,
"DFFlagVoiceChatMultistreamSignalRFormatUpdate": true,
"DFFlagVoiceChatMultistreamSubscriptionRemoveInitiatedSignalRFormatUpdate": true,
"DFFlagVoiceChatMultistreamSubscriptionsV2": false,
"DFFlagVoiceChatMultistreamSubscriptionsV2_PlaceFilter": "True;189707;6884319169",
"DFFlagVoiceChatMuteMicrophoneOnPause": true,
"DFFlagVoiceChatRccMute": false,
"DFFlagVoiceChatRccMute_PlaceFilter": "True;11116930529;9872472334;6284583030;142823291;8737602449;2788229376;6884319169",
"DFFlagVoiceChatRefactorWorkerThread": true,
"DFFlagVoiceChatReflectionVisible": true,
"DFFlagVoiceChatStatsCleanup2": true,
"DFFlagVoiceChatStatsEmptyInitialBatch": true,
"DFFlagVoiceChatStatsMultistreamSubscriptions": false,
"DFFlagVoiceChatStatsMultistreamSubscriptions_PlaceFilter": "True;189707;6884319169",
"DFFlagVoiceChatStatsRccMute": true,
"DFFlagVoiceChatStreamingFix": true,
"DFFlagVoiceChatV3BlockingForAll": true,
"DFFlagVoiceChatVerifyUserUpdatesByMatchingV2": true,
"DFFlagWindowsWebViewTelemetryEnabled": true,
"DFFlagWorkspaceAnimatorRetargetingEnabledDefault": true,
"DFFlagWorldModelCrashFaster": true,
"DFFlagWorldModelCrashOutsideOfDataModel": true,
"DFFlagXboxAppBridgeTelemetryFix": true,
"DFFlagXboxCrashCounterFixString": true,
"DFFlagZoomToExtentsFix": true,
"DFIntAbuseReportMaxChatMessages": 25,
"DFIntAbuseReportScreenshotPercentage": 50,
"DFIntAbuseReportV1Percentage": 0,
"DFIntAbuseReportV2Percentage": 100,
"DFIntAdGuiRandomizedRaycastLaunchPercentage": 0,
"DFIntAdjustMixedPriorityFairlyMultiplicativeStepLowerBound": 5,
"DFIntAdPortalTeleportEventThrottleHundrethsPercent": 10000,
"DFIntAdsApiClientErrorEventThrottleHundrethsPercent": 10000,
"DFIntAdsApiClientResponseEventThrottleHundrethsPercent": 10000,
"DFIntAECRingBufferSizeTenthsMs": 520,
"DFIntAnalyticsCDNProbeInfluxPermyriad": 100,
"DFIntAnalyticsForXBoxCrash_JoinInfluxHundredthsPercentage": 1,
"DFIntAnalyticsMaxSendWaitTimeMs": 1500,
"DFIntAnalyticsMaxShutdownWaitTimeMs": 600,
"DFIntAnalyticsNS1CDNProbeChancePercent": 5,
"DFIntAnalyticsServiceFiredEventsBudgetMax": 10000,
"DFIntAnalyticsServiceFiredEventsBudgetRefreshInSeconds": 1,
"DFIntAnimationFromVideoCreatorStudioServiceSecondsPerRequest": 2,
"DFIntAnimationLodConfigVersion": 1,
"DFIntAnimationLodThrottlerOutOfFrustumLodPercentage": 0,
"DFIntAnimationRateLimiterAssertAmount": 20,
"DFIntAnimationRateLimiterMaxAmount": 21,
"DFIntAnimationRateLimiterSeconds": 20,
"DFIntAnimationScaleDampeningPercent": 40,
"DFIntAnimatorThrottleMaxFramesToSkip": 4,
"DFIntApiRateLimit": 200,
"DFIntAppLaunchFlowThrottlingRate": 500,
"DFIntAtlasOverflowReportHundredthsPercent2": 1,
"DFIntAudioGraphLoggingRateLimitCapacity": 2,
"DFIntAudioGraphLoggingRateLimitDuration": 5,
"DFIntAudioSplitCacheRolloutHundredthsPercent3": 10000,
"DFIntAutomaticCanvasSizeUsageReportHundredthsPercent": 2,
"DFIntAutomaticSizeUsageReportHundredthsPercent": 2,
"DFIntAutoSkinTransferUsedEventThrottleHundrethsPercent": 1000,
"DFIntAutoSkinTransferUsedEventThrottleHundrethsPercent_PlaceFilter": "10000;9597802131",
"DFIntAvatarEditorServiceCountersPercent": 100,
"DFIntAvatarFaceChatSDKFailedCreateContextThrottleHundrethsPercent": 10000,
"DFIntAvatarFaceChatSDKFailedSetLodThrottleHundrethsPercent": 1000,
"DFIntAvatarFaceChatSDKFailedThrottleHundrethsPercent": 10000,
"DFIntBatchThumbnailLimit": 100,
"DFIntBatchThumbnailMaxRetries": 5,
"DFIntBgUpdateRedirectsHttpErrInfluxHundredthsPercentage": 100,
"DFIntBouncingScriptPermyriad": 10000,
"DFIntBroadPhaseIslandBufferZoneMinPartLimit": 0,
"DFIntBroadPhaseIslandBufferZoneMinPartLimit_PlaceFilter": "5;1105449649",
"DFIntBrowserTrackerApiDeviceInitializeRolloutPercentage": 25,
"DFIntBrowserTrackerIdTelemetryThrottleHundredthsPercent": 1000,
"DFIntBulletContactBreakOrthogonalThresholdPercent": 200,
"DFIntBulletContactBreakThresholdPercent": 200,
"DFIntCanHideGuiGroupId": 4358041,
"DFIntCaptureSafetyContextHundredthsPercentage": 10000,
"DFIntChatCap": 100,
"DFIntChatFloodCheckExpirySeconds": 180,
"DFIntChatFloodCheckLimit": 5,
"DFIntChattedMessageMaxLength": 1000,
"DFIntChatTime": 10,
"DFIntCLI46794SendInputTelemetryHundredthsPercentage": 0,
"DFIntCLI46794SendInputTelemetryHundredthsPercentage_PlaceFilter": "1000;1537690962",
"DFIntCLI50798HundredthsPercentage": 1,
"DFIntCLI50798HundredthsPercentage_DataCenterFilter": "1;246",
"DFIntCLI50798I": 5,
"DFIntCLI52064InfluxHundredthsPercentage": 10,
"DFIntCLI56775_HundredthsPercentage": 0,
"DFIntCLI56775MS": 0,
"DFIntCLI57261v3": 0,
"DFIntCLI59911MaxNum": 175000,
"DFIntCLI59911MaxTimeMicro": 750000,
"DFIntCLI59911ReportHundredths": 10000,
"DFIntCLI64234Hundredths": 100,
"DFIntCLI64234Max": 0,
"DFIntClientJoinProcessPositiveSamplesThousandths": 10,
"DFIntClientJoinProcessPositiveSamplesThousandths_PlaceFilter": "1000;3027055174;3917136599;2291717546",
"DFIntClientNetworkInfluxHundredthsPercentage": 500,
"DFIntClientNetworkInfluxHundredthsPercentage_PlaceFilter": "1000;9281971995;7665856814",
"DFIntClientReportInitExpJobStatsHundredthPercent": 10,
"DFIntClientReportLuaConnectionSignalsInfluxHundrethsPercentage": 10000,
"DFIntClientSendEventStringDataLimitBytes": 100000000,
"DFIntClientSendEventVariantCountLimit": 5000000,
"DFIntClientStatsWithFacsBWPerHundPercent_PlaceFilter": "10000;11597947993",
"DFIntClientVisualEffectCycle": 10,
"DFIntCloseReplicationDataAliveForAllHundredthsPercentage": 1000,
"DFIntCloudLocalizationTableUnexpectedLoadingErrorHundrethsPercentage": 10000,
"DFIntCOLLAB2182RedirectTeamTestRunningGamesHundredthPercent": 10000,
"DFIntCOLLAB2397PlaceLauncherErrorStatusRetriesEnabledHundredthPercent": 10000,
"DFIntCOLLAB2397PlaceLauncherGameEndedStatusRetriesEnabledHundredthPercent": 10000,
"DFIntCOLLAB2397PlaceLauncherRccConstraintsVerificationFailedStatusRetriesEnabledHundredthPercent": 10000,
"DFIntCOLLAB2397PlaceLauncherUnknownStatusRetriesEnabledHundredthPercent": 10000,
"DFIntCOLLAB2632UpdatePlaceLauncherRequestStatusEnumHundredthPercent": 10000,
"DFIntCOLLAB2767UseUntranslatedErrHundredthPercent": 0,
"DFIntCollectNumOfPrimitivesRate": 1,
"DFIntCompareFilterResultsHundredths": 0,
"DFIntCompareFilterResultsHundredths_DataCenterFilter": "1000;232;353",
"DFIntContentIdMaxLength": 256,
"DFIntCookieProtocolAnalyticsHundredthsPercentage": 100,
"DFIntCookieProtocolAnalyticsPriorityHundredthsPercentage": 10000,
"DFIntCoreGuiRenderOverflowKicksReportHundredthsPercent": 10000,
"DFIntCountOldChatAPIUsageHundrethsPercent": 10000,
"DFIntCrashpadUploadToBacktracePercentage_PlaceFilter": "100;6036870533",
"DFIntCrashReportingHundredthsPercentage": 10000,
"DFIntCrashUploadHttpResponseDefaultTimeoutMillis": 80000,
"DFIntCrashUploadToBacktracePercentage": 10,
"DFIntCrashUploadToBacktracePercentage_PlaceFilter": "100;6036870533",
"DFIntCSGInPlaceMigrationDataHundredthsPercent": 100,
"DFIntCSGLevelOfDetailSwitchingDistance": 250,
"DFIntCSGLevelOfDetailSwitchingDistance_PlaceFilter": "250;2434889832;2568147212",
"DFIntCSGLevelOfDetailSwitchingDistanceL12": 500,
"DFIntCSGLevelOfDetailSwitchingDistanceL12_PlaceFilter": "500;2434889832;2568147212",
"DFIntCSGPendingMigrationDataHundredthsPercent": 10,
"DFIntCSGv2LodMinTriangleCount": 100,
"DFIntCSGv2LodsToGenerate": 3,
"DFIntCSGv2OperationInfluxHundredthsPercentage": 100,
"DFIntCSGV3OperationMetricsHundredthsPercentage": 500,
"DFIntCSGV3OperationMetricsHundredthsPercentage_PlaceFilter": "10000;9185091595",
"DFIntDataModelPatcherErrorInfluxHundredthsPercentage": 10000,
"DFIntDataModelPatcherFunnelInfluxHundredthsPercentage": 25,
"DFIntDataModelPatcherLoadRetry": 10,
"DFIntDataSenderMaxBandwidthBps_DataCenterFilter": "3876000;374",
"DFIntDataSenderMaxBandwidthBps_PlaceFilter": "9600000;12332313307;12591169207;12598647593",
"DFIntDataStoreCachedKeysMemSize": 16777216,
"DFIntDataStoreCachedKeysMemSize_PlaceFilter": "16777216;2910792538;69184822",
"DFIntDataStoreInfluxReportNonParsableDataPerMyriad": 10000,
"DFIntDataStoreInfluxReportNonParsableDataPerMyriadWithKey": 10000,
"DFIntDataStoreInfluxValueSubstringSize": 4194304,
"DFIntDataStoreMaxValueSize": 4194304,
"DFIntDataStoreMaxValueSize_PlaceFilter": "4194304;2910792538;69184822",
"DFIntDataStorePerPlayerRequestLimit": 40,
"DFIntDataStorePerPlayerRequestLimit_PlaceFilter": "10;920587237",
"DFIntDebugDefaultTargetWorldStepsPerFrame": 0,
"DFIntDebugDefaultTargetWorldStepsPerFrame_PlaceFilter": "1;4306999063",
"DFIntDebuggerEventsThrottleHundredthPercent": 2000,
"DFIntDebugRakPeerReceiveAfterSeconds": 10,
"DFIntDebugSimForceWorldStepCount": 0,
"DFIntDebugSimPhysicsSteppingMethodOverride": 0,
"DFIntDefaultBalanceD": 100,
"DFIntDefaultBalanceP": 7000,
"DFIntDefaultHeadFallbackEventThrottleHundrethsPercent": 10000,
"DFIntDesiredStreamJobTimeMSPerThread": 6,
"DFIntDesiredStreamJobTimeMSPerThread2": 6,
"DFIntDetailedBandwidthStatsInfluxHundrethsPercentage": 10000,
"DFIntDeveloperEventIngestEnd2EndLogPercetage_PlaceFilter": "100;3182856628",
"DFIntDeveloperEventIngestMaxEventsPerBatch": 5000,
"DFIntDevProductsDetailsRollout": 100,
"DFIntDisconnectReasonDiagThrottlePercent": 75,
"DFIntDisconnectReasonElasticThrottleHundredPercent": 100,
"DFIntDMControllerCloseHundredthsPercentage": 1000,
"DFIntDownloadBandwidthNetworkIdFailInfluxHundredthsPercentage": 500,
"DFIntDraggerMaxMovePercent": 60,
"DFIntDraggerMaxMoveSteps": 512,
"DFIntDynamicHeadRenderedEventThrottleHundrethsPercent": 100,
"DFIntDynamicHeadRenderedNpcEventThrottleHundrethsPercent": 100,
"DFIntDynamicHeadRenderedPlayerEventThrottleHundrethsPercent": 10000,
"DFIntDynamicHeadsEnablingChoiceEventThrottleHundrethsPercent": 10000,
"DFIntDynamicReloaderFailureInfluxHundrethsPercentage": 10000,
"DFIntDynamicReloaderFileFailureInfluxHundrethsPercentage": 10000,
"DFIntEagerTrackingReportMissingMRDPerMyriad": 100,
"DFIntEagerTrackingReportStopOnMissingMRDPerMyriad": 100,
"DFIntElevatedPhysicsFPSReportThresholdTenths": 585,
"DFIntEngineStabilityReportThrottleHundredthsPercent": 10000,
"DFIntEngineStabilityTrackingWindowInSeconds": 86400,
"DFIntEphemeralCounterInfluxReportingPriorityHundredthsPercent": 10000,
"DFIntEphemeralCounterInfluxReportingThrottleHundredthsPercent": 10000,
"DFIntEphemeralStatsInfluxReportingPriorityHundredthsPercent": 10000,
"DFIntEphemeralStatsInfluxReportingThrottleHundredthsPercent": 5,
"DFIntErrorEstimationArbiterC1": 52362,
"DFIntErrorEstimationArbiterC2": 79608,
"DFIntErrorEstimationArbiterC3": 41227,
"DFIntErrorEstimationArbiterC4": -13336,
"DFIntErrorEstimationArbiterC5": -15343,
"DFIntErrorEstimationArbiterC6": -16297,
"DFIntESGamePerfMonitorDelayBeforeFirstReportInSeconds": 60,
"DFIntESGamePerfMonitorHundredthsPercentage": 200,
"DFIntESGamePerfMonitorReportTimerInSeconds": 30,
"DFIntEventIngestInstrumentThrottleHundrethsPercent": 10,
"DFIntEventMetaDataReportingDepthThreshold": 295,
"DFIntEventMetaDataReportingStringSizeThreshold": 20000000,
"DFIntEventMetaDataReportingTotalStreamSizeThreshold": 20000000,
"DFIntEventMetaDataReportingVariantCountThreshold": 10000,
"DFIntExternalHttpRequestSizeLimitKB_PlaceFilter": "2048;735030788;1067560271;1067660288;1081740066;1085557867;1187101243;1765700510;2033617470;2033617613;4686746335;4702658078;4709927839;4728133914;4728134592;4728135073;4728136238;4728136475;4728136681;4728136927;4728137133;4728137352;4728137581;5589762041;5589764122;5589764519;5589764717;5589765300;5589765897;5589771631;5589771737;5589772268;5589772900;5589774728;5589774806;5589776496;5589776598;5589777303;5589778444;5589778760;5589780318;5589780399;5589781740;5589781924;5589789107;5589789252;5589799152;5589799218;5589803701;5589803777;5589804697;5589805621;5589808044;5589808122;5589810227;5589810303;5589818394;5589818512;5589819950;5589831112;5589831193",
"DFIntFaceTrackingLod": -1,
"DFIntFFlagRolloutDuplicateRobloxTelemetryCountersThrottleHundredthsPercent": 1000,
"DFIntFFlagRolloutDuplicateTelemetryCountersThrottleHundredthsPercent": 1000,
"DFIntFlagRolloutTestDynamicInt1_Rollout": "42;60;2023-03-15T22:19:33",
"DFIntFlagRolloutTestDynamicInt2_Rollout": "123;60;2023-03-15T22:09:39",
"DFIntFmodStealingBehavior": 1,
"DFIntFontFamilySelectFontSelected_ReportHundredthsPercent": 10000,
"DFIntFontProvider_FaceLoadFailed_HundredthsPercent": 1000,
"DFIntFontProvider_FamilyLoadFailed_HundredthsPercent": 1000,
"DFIntFontProvider_FamilyLoadSucceeded_HundredthsPercent": 1,
"DFIntFriendshipEndpointMigrationRolloutPercentageV2": 100,
"DFIntFriendsListCacheOptimizationRolloutPercentage": 0,
"DFIntGameJoinFlowTelemetryThrottle": 100,
"DFIntGameMenuFlowTelemetryThrottle": 100,
"DFIntGameNetPVHeaderRotationalVelocityZeroCutoffExponent": -2,
"DFIntGameNetPVHeaderRotationOrientIdToleranceExponent": -6,
"DFIntGamePassOwnershipCacheSeconds": 30,
"DFIntGamePhysicsMetricsReportingHundredthsPercentage": 100,
"DFIntGamePhysicsMetricsReportingSendEveryXSeconds": 300,
"DFIntGameServerInitializationSuccessHundredths": 100,
"DFIntGameStartInfoOffApiProxyRolloutPercent": 100,
"DFIntGameTransactionsMigrationRolloutPercentage": 100,
"DFIntGeometricStiffnessAlpha": 50,
"DFIntGeometricStiffnessAlpha_PlaceFilter": "100;8130047126",
"DFIntGetPlayerPlaceInstanceMigrationRollout": 100,
"DFIntGoogleAnalyticsLoadPlayerHundredth": 0,
"DFIntGoogleAnalyticsLoadRCCHundredth": 0,
"DFIntGroupServiceRolesApiV2": 0,
"DFIntGuiClassUsageAnalytics_ReportHundredthsPercent": 1,
"DFIntGuiServiceSafeAreaInsetsAnalytics_ReportHundredthsPercent": 5,
"DFIntHardwareTelemetryHundredthsPercent": 50,
"DFIntHttpBatchApi_bgDelayMs": 400,
"DFIntHttpBatchApi_bgRefreshMaxDelayMs": 60,
"DFIntHttpBatchApi_maxReqs": 2,
"DFIntHttpBatchApiRejectedUrlHundredthsPercentage": 0,
"DFIntHttpBatchApiRejectedUrlHundredthsPercentage_PlaceFilter": "100;10491243930;10637625620;189707;11087296732;3851622790;4620170611;2124159380",
"DFIntHttpBatchApiShutdownInfluxHundrethsPercentage": 100,
"DFIntHttpBatchLimit": 128,
"DFIntHttpCacheAsyncWriterMaxPendingSize": 300000000,
"DFIntHttpCacheCheckVersion": 3,
"DFIntHttpCacheCleanMaxFilesToKeep": 7500,
"DFIntHttpCacheCleanMinFilesRequired": 10000,
"DFIntHttpCacheRefreshHundredthsPercent": 10000,
"DFIntHttpChatThrottleHundredthsPercentage": 1,
"DFIntHttpClientExternalTlsPeerVerificationFailHundrethsPercentage": 10000,
"DFIntHttpConnectDefaultTimeoutMillis": 60000,
"DFIntHttpConnMaxAge": 600000,
"DFIntHttpCurlConnectionCacheSize": -1,
"DFIntHttpCurlMaxConnectionsPerHost": 4,
"DFIntHttpDownloadBandwidthInfluxHundredthsPercentage": 500,
"DFIntHttpExponetialRetryBaseInterval": 3,
"DFIntHttpInfluxHundredthsPercentage": 1,
"DFIntHttpInfluxHundredthsPercentage_PlaceFilter": "10000;5064251723",
"DFIntHttpInfluxReportsPerMillion": 100,
"DFIntHttpMaxRetries": 1,
"DFIntHttpParallelLimit_RequestContentProvider": 0,
"DFIntHttpRbxApiMaxRetryBudgetPerMinute": 10,
"DFIntHttpRbxApiMaxRetryCount": 3,
"DFIntHttpSendStatsEveryXSeconds": 300,
"DFIntHttpSendStatsEveryXSeconds_PlaceFilter": "30;2727067538",
"DFIntHttpServiceTlsProbeInfluxHundrethsPercentage": 1000,
"DFIntHttpServiceTransportFailureInfluxHundrethsPercentage": 10000,
"DFIntHumanoidSimWorldReportPercentageHundredths": 1,
"DFIntHungScriptPermyriad": 10000,
"DFIntIgnoreCustomEventReceiverSourceReportPermyriad2": 10000,
"DFIntIkControlTelemetryEventsThrottleHundrethsPercent": 10000,
"DFIntImmersiveAdBackendErrorEventThrottleHundrethsPercent": 10000,
"DFIntImmersiveAdBackendRequestEventThrottleHundrethsPercent": 10000,
"DFIntImmersiveAdBackendResponseEventThrottleHundrethsPercent": 10000,
"DFIntImmersiveAdImpressionEventThrottleHundrethsPercent": 10000,
"DFIntImmersiveAdRenderEventThrottleHundrethsPercent": 10000,
"DFIntImmersiveAdServingEventThrottleHundrethsPercent": 10000,
"DFIntImmersiveAdServingRequestEventThrottleHundrethsPercent": 10000,
"DFIntImmersiveAdTeleportEventThrottleHundrethsPercent": 10000,
"DFIntImmersiveAdTeleportMilestoneEventThrottleHundrethsPercent": 10000,
"DFIntIncorrectlyPausedReplicationHundredthsPercentage": 10,
"DFIntInferredOOMFreeMemThresholdMB": 130,
"DFIntInferredTelemetryReportThrottleHundredthsPercent": 10,
"DFIntInfluxDynInitErrorHundredthsPercent": 10000,
"DFIntInfluxPointReporterShutdownTimeoutMs": 100,
"DFIntInfluxReportingPackageAnalyticsHundrethsPercent": 10000,