-
Notifications
You must be signed in to change notification settings - Fork 49
/
FVariables.txt
19512 lines (19512 loc) · 825 KB
/
FVariables.txt
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
[C++] AllowVideoPreRoll
[C++] AndroidANRChannels
[C++] AndroidAppChatMigrationEnabled
[C++] AndroidAppChatPushSupportsGuid
[C++] AndroidApplicationExitReasonNumEntriesToFetch
[C++] AndroidAudioManagerFixSpeakerBTLeak
[C++] AndroidEnableBatteryPowerMetrics
[C++] AndroidEnableBinaryChannels
[C++] AndroidEnableRelativeMouseMovement
[C++] AndroidFixSingleSurfaceAppNotchScreenSupportDisabled
[C++] AndroidImplementPanVelocity
[C++] AndroidNotchExperimentAddGameBlockList
[C++] AndroidNotchExperimentGameBlockList
[C++] AndroidNotchScreenSupportIXPExperiment
[C++] AndroidOverrideChannelPlatformName
[C++] AndroidReconnectGlobalLayoutListenerOnResume
[C++] AndroidUDLEnable
[C++] AndroidUseUpdatedFunction
[C++] AppRatingsNumberOfFriendsForLaunch
[C++] AxisAdornmentGrabSize
[C++] BacktraceLogSize
[C++] BacktraceSendActiveShaders
[C++] BacktraceSendRobloxChannelAttr
[C++] CaptureCountersIntervalInMinutes
[C++] CaptureQTStudioCountersEnabled
[C++] CleanupHttpAgentOnRestart
[C++] CrashWhenAssetMissing
[C++] DeregisterDisabledDeviceWhenNotificationReceived
[C++] DFFlagAbuseReportInExperienceStateCaptureMode
[C++] DFFlagAcceleratorUpdateOnPropsAndValueTimeChange
[C++] DFFlagAccessCookiesWithUrlEnabled
[C++] DFFlagActionStationDebounceInitialization
[C++] DFFlagActiveCallAmpCanUseInExperienceChat
[C++] DFFlagAddAbilityToConfigureTheStreamingGCTimeForTunable
[C++] DFFlagAddAnimationToAssetTypeTarget
[C++] DFFlagAddAppVersionIntoV2POCStat
[C++] DFFlagAddContextNamesToDurationLoggerEvents
[C++] DFFlagAddControllerPDMembers
[C++] DFFlagAddDynamicHeadTelemetryToSessionTracking2
[C++] DFFlagAddFieldsToServerReplicator
[C++] DFFlagAdditionalPrePauseStats
[C++] DFFlagAddLastOsWarningTimeAsSessionTrackingField
[C++] DFFlagAddMultToEventIngest
[C++] DFFlagAddNewToleranceFunctions
[C++] DFFlagAddNoPathMetrics
[C++] DFFlagAddOverlapParamsTolerance
[C++] DFFlagAddPartyVoiceActiveToPerfdata
[C++] DFFlagAddPlaceSizeToTCSaveReporting
[C++] DFFlagAddPlaceStats
[C++] DFFlagAddPlaySessionIdTelemetry
[C++] DFFlagAddPlaySessionIdToAdRequestBody
[C++] DFFlagAddPlaySessionIdToAutoSelectGuiInvoked
[C++] DFFlagAddProfilerScopesForPerformanceControlStreaming
[C++] DFFlagAddProfilerTelemetryScopeForRakNet
[C++] DFFlagAddRomarkPhasenameToEventIngest
[C++] DFFlagAddServerInfoToDiscoEvent
[C++] DFFlagAddSessionIdToCrashPad
[C++] DFFlagAddSessionIdToDisconnectEvent
[C++] DFFlagAddStreamingEnabledTagEventIngest
[C++] DFFlagAddStreamingTunableGCSecondaryMetrics2
[C++] DFFlagAddTeamCreateStatToTTStats
[C++] DFFlagAddTimeSinceLastPongToDisconnectEvent
[C++] DFFlagAddTimestampToLoadMetrics
[C++] DFFlagAddUniverseIDToTelemetryV2FRMStats
[C++] DFFlagAdGuiImpressionDisabled
[C++] DFFlagAdjustHipTranslation
[C++] DFFlagAdjustMaxSimRadiusClamp
[C++] DFFlagAdminRemoteMicroProfiler
[C++] DFFlagAdsPreloadInteractivityAssets
[C++] DFFlagAESAddCreatorIdToSearch
[C++] DFFlagAESAddCreatorIdToSearch3
[C++] DFFlagAESUseSupersetForATCSaveFailures
[C++] DFFlagAggBreakdownRCC
[C++] DFFlagAggCpuMemRCC
[C++] DFFlagAllocateSpaceForMappedFileUsingFallocate
[C++] DFFlagAllowDisablingSTFields
[C++] DFFlagAllowInboundConnectionToSoap
[C++] DFFlagAllowLuaAppFetchThumbnailsResizer
[C++] DFFlagAllowModuleScriptsToConnectParallel
[C++] DFFlagAllowOversizedLogToUser
[C++] DFFlagAllowPropertyDefaultSkip
[C++] DFFlagAllowRegistrationOfAnimationClipInCoreScripts
[C++] DFFlagAllowReverseEndpointTlv_DataCenterFilter
[C++] DFFlagAltHttpPointsReporterSplitData
[C++] DFFlagAlwaysRaiseTranslatorLocaleSignal
[C++] DFFlagAlwaysResetRakNetStatistics
[C++] DFFlagAnalyticsDeferredEventIngestEmptyQueueEveryInterval
[C++] DFFlagAnalyticsDeferredEventIngestReportUnsentEventsOnExit
[C++] DFFlagAnalyticsNewHttp2
[C++] DFFlagAnalyticsPointsDisallowNans
[C++] DFFlagAnalyticsPointsReportDebugInfo
[C++] DFFlagAnalyticsServiceCustomEventsEnabled
[C++] DFFlagAnalyticsServiceEnabled
[C++] DFFlagAnalyticsServiceEnabled_PlaceFilter
[C++] DFFlagAnalyticsServiceHydrationEnabled
[C++] DFFlagAnalyticsServiceRelaxedPlayerCheckEnabled
[C++] DFFlagAnalyticsServiceStudioEnabled
[C++] DFFlagAnalyticsServiceStudioEnabled_PlaceFilter
[C++] DFFlagAnalyticsSetUsableHttpBandwith
[C++] DFFlagAncestryDeferredStableStorageRefs
[C++] DFFlagAnchoredPlayerStateControlledByOwningClient
[C++] DFFlagAnchoredSendPositionUpdate2
[C++] DFFlagAndroidAdviceAPIForceRefresh
[C++] DFFlagAndroidDebugHeapTelemetry
[C++] DFFlagAndroidMajorFaultsRateTelemetry
[C++] DFFlagAndroidOnTrimMemoryLevelTelemetry
[C++] DFFlagAndroidOomScoreTelemetry
[C++] DFFlagAnimationLodDisableAnchoredThrottling
[C++] DFFlagAnimationRigThrowAssertionErrors2
[C++] DFFlagAnimationThrottlingInertialization
[C++] DFFlagAnimatorAnywhere
[C++] DFFlagAnimatorEnableNewAdornments
[C++] DFFlagAnimatorFixReplicationASANError
[C++] DFFlagAnimatorHideCoreScriptTracks
[C++] DFFlagAnimatorIsThrottledPropertyEnabled
[C++] DFFlagAnimatorIsThrottledPropertyEnabled_PlaceFilter
[C++] DFFlagAnimatorLodControllerDebugViewEnabled
[C++] DFFlagAnimatorLodModelInstanceOwnershipFix
[C++] DFFlagAnimatorLodOptOutPhase
[C++] DFFlagAnimatorNewModelSearch5
[C++] DFFlagAnimatorPostProcessIK
[C++] DFFlagAnimatorPreferLodEnabledPropertyActive
[C++] DFFlagAnimatorResetRigOnRemoved
[C++] DFFlagAnimatorRetargetInterpolateFKCorrection
[C++] DFFlagAnimatorThrottleRccEnabled
[C++] DFFlagApiProposal323
[C++] DFFlagAppendSourceIdToRequireLog
[C++] DFFlagApplyMeshInertia
[C++] DFFlagApplyMeshTextureContent
[C++] DFFlagApplyModelScaleToCageChecks
[C++] DFFlagAppUpdateCallbackOnError
[C++] DFFlagAPSNumFrames
[C++] DFFlagAssembleAllWorldModelsBeforeParallelExecution
[C++] DFFlagAssetAuthFallback
[C++] DFFlagAssetPreloadingUrlVersionEnabled
[C++] DFFlagAssetPreloadingUrlVersionEnabled2
[C++] DFFlagAssetRequestFixDiskMissing
[C++] DFFlagAssetRequestFixExpiredMetrics
[C++] DFFlagAssetRequestReportLastHost
[C++] DFFlagAssetRequestReportToCacheCountersV2
[C++] DFFlagAssetRequestV2Align
[C++] DFFlagAssetServiceUGCValidation
[C++] DFFlagAssetsUploadAddTeamCreateUploaderUserIdToRequest2
[C++] DFFlagAssetsUploadRefactorForSyncFlow
[C++] DFFlagAssetsUploadRetryStatusPollingError
[C++] DFFlagAsyncHttpQueueLuaContinuationFix
[C++] DFFlagAtomicEnumFieldCheck
[C++] DFFlagAtomicPlayerStarterGuiNoReset
[C++] DFFlagAttachmentCrashReport
[C++] DFFlagAttachmentPredeleteSetChildRootToNullptr
[C++] DFFlagAudioDeviceTelemetry
[C++] DFFlagAudioEnableVolumetricPanningForMeshes
[C++] DFFlagAudioEnableVolumetricPanningForPolys
[C++] DFFlagAudioGraphLogging3
[C++] DFFlagAudioGraphThrottling
[C++] DFFlagAudioGraphUpload2
[C++] DFFlagAudioMetadataReturnIsrcEnabled
[C++] DFFlagAudioToggleVolumetricPanning
[C++] DFFlagAudioUseVolumetricPanning
[C++] DFFlagAudioUseVolumetricPanning_PlaceFilter
[C++] DFFlagAudioVolumetricUtilsRefactor
[C++] DFFlagAudioWiringEventIngestTelemetry
[C++] DFFlagAudioWiringTelemetryFixPlaceIdOvercounting
[C++] DFFlagAUMPAnalytics
[C++] DFFlagAuthenticatedAssets
[C++] DFFlagAuthenticatedAssets3
[C++] DFFlagAuthenticatedAssetsLuobu
[C++] DFFlagAutoReconnectTeleport
[C++] DFFlagAutoReconnectTeleport_PlaceFilter
[C++] DFFlagAvatarChatServiceEnableVoiceEnabledV1
[C++] DFFlagAvatarChatServiceEnableVoiceEnabledV1_PlaceFilter
[C++] DFFlagAvatarChatServiceExposeUserVerifiedForVoiceMock
[C++] DFFlagAvatarChatServiceFixUserPermissionsBanned
[C++] DFFlagAvatarChatServiceRateLimit
[C++] DFFlagAvatarChatServiceStudioEditModeUniverseDefaults
[C++] DFFlagAvatarChatServiceTelemetryIncludeServerFeatures
[C++] DFFlagAvatarChatServiceUniverseSettingsEnableAudio
[C++] DFFlagAvatarChatServiceUniverseSettingsEnableVideo
[C++] DFFlagAvatarChatServiceUniverseSettingsMock
[C++] DFFlagAvatarChatServiceUserPermissionsAudioEligible
[C++] DFFlagAvatarChatServiceUserPermissionsAudioEligible_PlaceFilter
[C++] DFFlagAvatarChatServiceUserPermissionsAudioOptIn
[C++] DFFlagAvatarChatServiceUserPermissionsAudioOptIn_PlaceFilter
[C++] DFFlagAvatarChatServiceUserPermissionsBanned
[C++] DFFlagAvatarChatServiceUserPermissionsMock
[C++] DFFlagAvatarChatServiceUserPermissionsMock_PlaceFilter
[C++] DFFlagAvatarChatServiceUserPermissionsVideoEligible
[C++] DFFlagAvatarChatServiceUserPermissionsVideoOptIn
[C++] DFFlagAvatarChatTelemetryAddTrackingTimeToSessionTracking2
[C++] DFFlagAvatarMediaBatchHotrodAccessorMigration
[C++] DFFlagAvatarPlatformsDeletedPartFix
[C++] DFFlagAVBURST12153FixNullWelds
[C++] DFFlagAvoidCopyingMmappedAudioFiles
[C++] DFFlagAvoidEraseAddedInstancesUnderModels
[C++] DFFlagBacklogDetectorEnable
[C++] DFFlagBadgeServiceEnableCheckUserBadges429Check
[C++] DFFlagBadgeServiceEnableCheckUserBadgesAsync
[C++] DFFlagBadgeServiceEnableCheckUserBadgesAsync_PlaceFilter
[C++] DFFlagBadgeServiceEnableStats
[C++] DFFlagBadgeServiceUseSingularGetBadgeAwardDate
[C++] DFFlagBadgeServiceUseSingularGetBadgeAwardDate_PlaceFilter
[C++] DFFlagBadgeServiceUseUpdatedRequestChecker
[C++] DFFlagBadgesWriteEnabled
[C++] DFFlagBanAPINumberCheck
[C++] DFFlagBanAPIsConsts
[C++] DFFlagBandwidthManagerGetFeedbackInWindowAndReport2
[C++] DFFlagBanHistoryPagesFinish
[C++] DFFlagBanHistoryServerMessage
[C++] DFFlagBanningEnabledProp
[C++] DFFlagBaseWrapVerticesModified
[C++] DFFlagBaseWrapVerticesModifiedArgument
[C++] DFFlagBatch20HotrodMigration
[C++] DFFlagBatch21HotrodMigration
[C++] DFFlagBatch22HotrodMigration
[C++] DFFlagBatch23HotrodMigration
[C++] DFFlagBatch24HotrodMigration
[C++] DFFlagBatch25HotrodMigration
[C++] DFFlagBatchAssetApiAllowUserDefinedCachePolicy
[C++] DFFlagBatchAssetApiAllowUserDefinedCachePolicy2
[C++] DFFlagBatchAssetApiAllowUserDefinedCachePolicyAlt
[C++] DFFlagBatchId0HotrodAccessorMigration
[C++] DFFlagBatchId11HotrodAccessorMigration
[C++] DFFlagBatchId12HotrodAccessorMigration
[C++] DFFlagBatchId14HotrodAccessorMigration
[C++] DFFlagBatchId15HotrodAccessorMigration
[C++] DFFlagBatchId17HotrodAccessorMigration
[C++] DFFlagBatchId18HotrodAccessorMigration
[C++] DFFlagBatchId19HotrodAccessorMigration
[C++] DFFlagBatchId1HotrodAccessorMigration
[C++] DFFlagBatchId3HotrodAccessorMigration
[C++] DFFlagBatchId5HotrodAccessorMigration
[C++] DFFlagBatchId6HotrodAccessorMigration
[C++] DFFlagBatchId8HotrodAccessorMigration
[C++] DFFlagBatchId9HotrodAccessorMigration
[C++] DFFlagBatchThumbnailEnableAnyWebP
[C++] DFFlagBetterErrorMessages
[C++] DFFlagBetterPlatform
[C++] DFFlagBindToMessageWhileRequiringError
[C++] DFFlagBlockOldPdk
[C++] DFFlagBoneInstanceAllocs
[C++] DFFlagBoneInstancePropertyChangedEvents
[C++] DFFlagBoxContainsUseDotProducts
[C++] DFFlagBrickColorRandomSeed
[C++] DFFlagBrowserTrackerIdTelemetryEnabled
[C++] DFFlagBulkImportCopyrightMessageUpdate
[C++] DFFlagBulkImportShowVideoConfirmation
[C++] DFFlagBypassCallToIXP
[C++] DFFlagCalculateCPV15StatsWhileVideoPlaying
[C++] DFFlagCalculateStatsWhileVideoPlaying
[C++] DFFlagCallUpdateDbgInfoEarly
[C++] DFFlagCanClientReplicateProp
[C++] DFFlagCanViewBrandProjectAsyncEnabled
[C++] DFFlagCapabilityStudioAnalysis
[C++] DFFlagCapabilityUseTelemetryExtra
[C++] DFFlagCapMinStatsTo50Percent
[C++] DFFlagCapsAssignCheck
[C++] DFFlagCapsAttributeFilter
[C++] DFFlagCapsCallableCheck
[C++] DFFlagCapsCheckInsert
[C++] DFFlagCapsMissRegularTelemetry
[C++] DFFlagCapsMissUnassignedTelemetry
[C++] DFFlagCapsNewTooltipTexts
[C++] DFFlagCapsReflect
[C++] DFFlagCapsRequireIdInherits
[C++] DFFlagCatchBadFloatCurveDecode
[C++] DFFlagCatchUpVideoProgress
[C++] DFFlagCategorizeDeadConnections
[C++] DFFlagCFrameFromRotationBetweenVectors
[C++] DFFlagChatFloodCheckEnableEventCounters
[C++] DFFlagChatFloodCheckEnableEventIngest
[C++] DFFlagChatLineAbuseReportAPIEnabled
[C++] DFFlagChatLineAbuseReportAPIEnabled2_PlaceFilter
[C++] DFFlagChatServiceCheckThirdPartyTextChatRestrictionStatus
[C++] DFFlagCheckAllForAnimation
[C++] DFFlagCheckAllForAnimation_PlaceFilter
[C++] DFFlagCheckAllForSleep
[C++] DFFlagCheckContextInfoAgainstHttpGlobals
[C++] DFFlagCheckDataModelManagerBeforeAccessing
[C++] DFFlagCheckEngineContextOnInstanceAccess
[C++] DFFlagCheckForExpiringPrefetchRequestsNoBudget
[C++] DFFlagCheckLCCageDeformDist
[C++] DFFlagCheckMaxCageDistance
[C++] DFFlagCheckSendTypeBeforeSetupTimerInHttpPointsReporter
[C++] DFFlagCheckTimerValidityOnStop
[C++] DFFlagCheckValidatePurchaseTicketForStringSafety
[C++] DFFlagClampIncomingReplicationLag
[C++] DFFlagClampSpatialQueryExtents
[C++] DFFlagClampSpatialQueryExtentsWarning
[C++] DFFlagCleanHex
[C++] DFFlagCleanModuleStateMap
[C++] DFFlagCleanOldCSGData
[C++] DFFlagCleanupLoadChatInfoInternal
[C++] DFFlagCleanupMoodDampingIxpExperimentation
[C++] DFFlagClearDataTableOnLeave
[C++] DFFlagClearEvictedCacheEntriesTracking
[C++] DFFlagclearPlaceIDOnRCCShutdown
[C++] DFFlagCLI101868
[C++] DFFlagCLI102833PrelimTelemetry2
[C++] DFFlagCLI102833v2
[C++] DFFlagCLI103221
[C++] DFFlagCLI104266
[C++] DFFlagCLI106225
[C++] DFFlagCLI106238
[C++] DFFlagCLI108675
[C++] DFFlagCLI109126A
[C++] DFFlagCLI109126B
[C++] DFFlagCLI109126C
[C++] DFFlagCLI109183
[C++] DFFlagCLI109666
[C++] DFFlagCLI111655
[C++] DFFlagCLI111800
[C++] DFFlagCLI111800E
[C++] DFFlagCLI111800R
[C++] DFFlagCLI115145
[C++] DFFlagCLI116485
[C++] DFFlagCLI117170
[C++] DFFlagCLI1171702
[C++] DFFlagCLI119458
[C++] DFFlagCLI119458E
[C++] DFFlagCLI119458R
[C++] DFFlagCLI120700Enabled
[C++] DFFlagCLI122685
[C++] DFFlagCLI124201
[C++] DFFlagCLI46794SendToEventStream
[C++] DFFlagCLI46794SendToTelemetry
[C++] DFFlagCLI46794SendToTelemetry_PlaceFilter
[C++] DFFlagCLI48770
[C++] DFFlagCLI50798
[C++] DFFlagCLI56775
[C++] DFFlagCLI56775D
[C++] DFFlagCLI57133
[C++] DFFlagCLI57133DFix
[C++] DFFlagCLI57261v1
[C++] DFFlagCLI57261v2
[C++] DFFlagCLI61964
[C++] DFFlagCLI64234Metrics
[C++] DFFlagCLI64234Throw
[C++] DFFlagCLI65755a
[C++] DFFlagCLI67953
[C++] DFFlagCLI69398
[C++] DFFlagCLI70492
[C++] DFFlagCLI71353D
[C++] DFFlagCLI71353T
[C++] DFFlagCLI73599Enabled
[C++] DFFlagCLI83296CheckRuppTokenLength
[C++] DFFlagCLI83296CheckRuppTokenLength_PlaceFilter
[C++] DFFlagCLI94314
[C++] DFFlagCLI94314_DataCenterFilter
[C++] DFFlagCLI96239
[C++] DFFlagCLI96239ReportOnly
[C++] DFFlagCLI97615FixTokenDeserializationCondition
[C++] DFFlagCLIAVATAR2997
[C++] DFFlagClientLightingTechnologyChangedTelemetryTrackTimeSpent
[C++] DFFlagClientNoStreamJob
[C++] DFFlagClientPacketLimiting
[C++] DFFlagClientProcessLimitPartial
[C++] DFFlagClientQuotaNoReset
[C++] DFFlagClientRolloutPhaseSupersetTelemetry
[C++] DFFlagClientRolloutPhaseTelemetry
[C++] DFFlagClipMainAudioOutput
[C++] DFFlagCloneOptimizations
[C++] DFFlagClosedVoxelBoxInteraction
[C++] DFFlagCloudLocalizationTableEnablePendingCallbackMax
[C++] DFFlagClusterCache
[C++] DFFlagCOLLAB2618DirectlySerializeInDatamodelEnabled
[C++] DFFlagCOLLAB3376AddRetryControlToUniverseSearch
[C++] DFFlagCOLLAB4469PreventUnnecessaryGetRequest
[C++] DFFlagCOLLAB4688FixUnmoderatedRetry
[C++] DFFlagCollectAudioPluginTelemetry
[C++] DFFlagCollectFixedNOUSetsNonRecursively
[C++] DFFlagCollectibleEventRateLimiterEnabled
[C++] DFFlagCollectibleItemInExperiencePurchaseEnabled
[C++] DFFlagCollectibleItemInInspectAndBuyEnabled
[C++] DFFlagCollectibleItemPurchaseAuthTokenEnabled
[C++] DFFlagCollectibleItemPurchaseDevApiLocalPromptResellAuthEnabled
[C++] DFFlagCollectibleItemPurchaseDevApiResellEnabled
[C++] DFFlagCollectibleItemPurchaseResellEnabled
[C++] DFFlagCollisionMeshCachingStats
[C++] DFFlagCollisionMeshCachingStats2
[C++] DFFlagCompareFilterResults
[C++] DFFlagConsumePlatformNameOverAlternateName
[C++] DFFlagContainerTotalsTopLevelStat
[C++] DFFlagContentArgImplicitString
[C++] DFFlagContentClone
[C++] DFFlagContentFromObjectClassCheck
[C++] DFFlagContentFromObjectEnabled2
[C++] DFFlagContentNone
[C++] DFFlagContentObjectEnabled
[C++] DFFlagContentObjectEnabled3
[C++] DFFlagContentProviderAddAssetLoadDelaysStatToSyncRequests
[C++] DFFlagContentProviderFixClearContent
[C++] DFFlagContentProviderPriorityList2
[C++] DFFlagContentProviderPriorityListFix
[C++] DFFlagContentReadFakeObject
[C++] DFFlagContentVariantImplicitString
[C++] DFFlagContentWriteFakeObject
[C++] DFFlagControllerManagerRemoveDtor
[C++] DFFlagControllerManagerUpDirectionProp
[C++] DFFlagConvexDecompCompressionAnalytics
[C++] DFFlagConvexDecompCompressionDebug
[C++] DFFlagConvexDecompDebuggerRefactor
[C++] DFFlagCookieStoreEnabledMac
[C++] DFFlagCoreScriptTelemetry
[C++] DFFlagCorrectCachePolicySkipRedirectCache
[C++] DFFlagCorrectServerReplicatorStatsIP
[C++] DFFlagCountCoalescedTouches
[C++] DFFlagCrashOnAssemblyClumpPrimitiveNullptr
[C++] DFFlagCrashOnInconsistentJoint
[C++] DFFlagCrashUploadToBacktraceCommonProjectEnabled
[C++] DFFlagCreateAnimationThrottlingInertializer
[C++] DFFlagCreateMeshPartAtRuntime
[C++] DFFlagCreateMeshPartMeshSizeOverride
[C++] DFFlagCreateMeshPartSilentlyIgnoreMeshSize
[C++] DFFlagCreateSetForModelExtraGuard
[C++] DFFlagCreationDBInstanceStatsEventIngestOverrideEnabled
[C++] DFFlagCreationStorageContinueProcessingOnNullInstanceError
[C++] DFFlagCreationStorageSerializationKillSwitch
[C++] DFFlagCreatorBanNewErrorMessage
[C++] DFFlagCreatorBanStatusData
[C++] DFFlagCreatorBanUI
[C++] DFFlagCreatorBanUI_PlaceFilter
[C++] DFFlagCrossServerMessagingWriteEnabled
[C++] DFFlagCSC92
[C++] DFFlagCSC92_PlaceFilter
[C++] DFFlagCSC92p2
[C++] DFFlagCSC92p2_PlaceFilter
[C++] DFFlagCSGv2AlwaysClusterPositions
[C++] DFFlagCurrentPassFix
[C++] DFFlagCyclicExecutiveThrottlingCancelWorldStepAccum
[C++] DFFlagDataModelControllerUsesEngineContext
[C++] DFFlagDataModelCookieCLI84135
[C++] DFFlagDataModelModeHeader
[C++] DFFlagDataModelPatchDerializeHandleNullPtr
[C++] DFFlagDataSenderEmptyTrackBeforeRun
[C++] DFFlagDataStore2NewVersionHeader
[C++] DFFlagDataStoreEmitEventOnSuccess
[C++] DFFlagDataStoreEnableBudgetReporting
[C++] DFFlagDataStoreEnableGetVersionAtTimeAsync
[C++] DFFlagDataStoreEnableGetVersionAtTimeAsync_PlaceFilter
[C++] DFFlagDataStoreEnableOptionalCacheRead
[C++] DFFlagDataStoreEnableSerializationChecksAndCounters
[C++] DFFlagDataStoreEnableV2BudgetReporting
[C++] DFFlagDataStoreReEntrantFix
[C++] DFFlagDataStoreRefactorGetter
[C++] DFFlagDataStoreSerializationRefactor
[C++] DFFlagDataStoreThrowForInvalidDm
[C++] DFFlagDcidMismatchRccReload
[C++] DFFlagDebounceJointDoubleAdd
[C++] DFFlagDebugAbuseReportSubmission
[C++] DFFlagDebugAllowLocalRccKicks
[C++] DFFlagDebugAnimationLodEvaluationAndUpdateThrottling
[C++] DFFlagDebugAnimatorNewModelSearchInludeWorkspace
[C++] DFFlagDebugAudioLogging
[C++] DFFlagDebugAudioLogging2
[C++] DFFlagDebugAudioWarnStalls
[C++] DFFlagDebugBreakOnExcessivelyLoudAudio
[C++] DFFlagDebugCheckSessionMetricTeleportCondition
[C++] DFFlagDebugCLientPacketLimitingLabels
[C++] DFFlagDebugCommonQueueCleanupMicroprofileBreakdown
[C++] DFFlagDebugContentProviderSkipPreloadFromTextureManager
[C++] DFFlagDebugCrashOnShutdown1
[C++] DFFlagDebugCrashOnShutdown2
[C++] DFFlagDebugCrashOnShutdown3
[C++] DFFlagDebugCrashOnShutdown4
[C++] DFFlagDebugCrashOnShutdown5
[C++] DFFlagDebugCreateMeshPartIgnoreMaxSizeObject
[C++] DFFlagDebugCreateMeshPartIgnoreMaxSizeUri
[C++] DFFlagDebugD3D11MockExceptionOnCreateBuffer
[C++] DFFlagDebugD3D11MockExceptionOnCreateBufferInBindWorkspace
[C++] DFFlagDebugDataStoreWriteEnabled
[C++] DFFlagDebugDetailedSoundMemoryStats
[C++] DFFlagDebugDetailedSoundProfiler
[C++] DFFlagDebugDisable180DegreeFlip
[C++] DFFlagDebugDisableAngularVelocityInterpolationComponent
[C++] DFFlagDebugDisableBroadPhaseIslandBufferZoneApplyPartLimit
[C++] DFFlagDebugDisableLogServiceExecuteScript
[C++] DFFlagDebugDisableMultiRotationInterpolation
[C++] DFFlagDebugDisableProjectileOwnershipLock
[C++] DFFlagDebugDisableTelemetryAfterTest
[C++] DFFlagDebugDisableTimeoutDisconnect
[C++] DFFlagDebugDraw3dAudioInfo
[C++] DFFlagDebugDrawBroadPhaseAABBs
[C++] DFFlagDebugDrawBvhNodes
[C++] DFFlagDebugDrawControllerManagerAdorns
[C++] DFFlagDebugDrawControllerManagerAdorns_PlaceFilter
[C++] DFFlagDebugDrawVolumetricPanning
[C++] DFFlagDebugEnableAssetVolumeFader
[C++] DFFlagDebugEnableClientPhaseTracking
[C++] DFFlagDebugEnableCloseFmodLogs
[C++] DFFlagDebugEnabledConvexDecompDebug
[C++] DFFlagDebugEnableDisconnectionLabel
[C++] DFFlagDebugEnableFRMExperimentEligibility
[C++] DFFlagDebugEnableHttpProxy
[C++] DFFlagDebugEnableInstanceUniqueIdCrashOnCollision
[C++] DFFlagDebugEnableInterpolationVisualizer
[C++] DFFlagDebugEnableInterpThrottle
[C++] DFFlagDebugEnableOcclusionUpdates
[C++] DFFlagDebugEnableOctreeNodeValidation
[C++] DFFlagDebugEnablePerReplicatorMPProfiles
[C++] DFFlagDebugEnablePhaseTracking
[C++] DFFlagDebugEnableRCCChannelAPIs
[C++] DFFlagDebugEnableRemoteProfiling2
[C++] DFFlagDebugEnableReportPlaceIDAboveMemory
[C++] DFFlagDebugEnableRomarkMicroprofilerTelemetry
[C++] DFFlagDebugEnableRomarkService
[C++] DFFlagDebugEnableSFULoadTestClientReport
[C++] DFFlagDebugEnableStreamingSolverVisualization
[C++] DFFlagDebugEnableVideoAdsDeviceAllowlist
[C++] DFFlagDebugEnableVideoAdsDeviceFilter
[C++] DFFlagDebugEnableVoiceVolumeFader
[C++] DFFlagDebugEnableWebRtcStats
[C++] DFFlagDebugEngineAPICloudReplicateLogs
[C++] DFFlagDebugFallbackThumbnailUseCheckers
[C++] DFFlagDebugFallbackThumbnailUtilNoCache
[C++] DFFlagDebugFilterAllPlayerPropChanges
[C++] DFFlagDebugFmodEnableAsyncThreadCallback
[C++] DFFlagDebugFmodUseAndroidAudioTrack
[C++] DFFlagDebugFmodUseAndroidOpenSl
[C++] DFFlagDebugFmodUseVoiceDriver
[C++] DFFlagDebugForceAnisoOff
[C++] DFFlagDebugForceBasePartCacheAlways
[C++] DFFlagDebugForceHumanoidSimulateAlways
[C++] DFFlagDebugForceStreamingEnabled
[C++] DFFlagDebugForceUseProductionForAssetFetching
[C++] DFFlagDebugGameLoadDataStatisticsPerPlace
[C++] DFFlagDebugGameNetReportPVSizeStatsPlaceSpecific
[C++] DFFlagDebugGameServerHeaderBypass
[C++] DFFlagDebugGAReportThrottledSessions
[C++] DFFlagDebugGCDumpMemoryStats
[C++] DFFlagDebugGetStyled
[C++] DFFlagDebugGlobalHttpServiceShutdown
[C++] DFFlagDebugHlsDoNotCheckCodec
[C++] DFFlagDebugHlsSetDefaultVariantByDevice
[C++] DFFlagDebugHlsStartAtLowestBitrate
[C++] DFFlagDebugHttpSyncCallsForStatsReporting
[C++] DFFlagDebugHumanoidUseMeshCollisionFidelity
[C++] DFFlagDebugIgnoreSkipStaleData
[C++] DFFlagDebugIosUseSoftwareAutoGainControl
[C++] DFFlagDebugIosUseSoftwareEchoCancellation
[C++] DFFlagDebugIosUseSoftwareNoiseSuppression
[C++] DFFlagDebugKeyRingAlwaysLoad
[C++] DFFlagDebugKeyRingLogService
[C++] DFFlagDebugLaunchTimeByCountryPlaceSpecific
[C++] DFFlagDebugLaunchTimeByCountryPlaceSpecific_PlaceFilter
[C++] DFFlagDebugLaunchTimeByCountryPlaceSpecificAddPlatform
[C++] DFFlagDebugLogAvatarLoadTimeStatsByPlace
[C++] DFFlagDebugLogAvatarLoadTimeStatsByPlace_PlaceFilter
[C++] DFFlagDebugMechanismInterpolationWorldSpace
[C++] DFFlagDebugMicroprofilerDumpAllFrames
[C++] DFFlagDebugMicroprofilerJsLocal
[C++] DFFlagDebugMicroprofilerOutputRaw
[C++] DFFlagDebugMockFormatSimulateBusyRead
[C++] DFFlagDebugMuteVoiceOutputThroughFmod
[C++] DFFlagDebugNeverReplicateQueueingCrash
[C++] DFFlagDebugOmitContentProviderFailureLoggingForTest
[C++] DFFlagDebugOverrideDPIScale
[C++] DFFlagDebugOverrideProfileFrameTimeNow
[C++] DFFlagDebugPauseVoxelizer
[C++] DFFlagDebugPerfMode
[C++] DFFlagDebugPerformanceControlEnableFrameTimeOverrideImGui
[C++] DFFlagDebugPerformanceControlEnableMemoryOverrideImGui
[C++] DFFlagDebugPerformanceControlFreeMemoryOverride
[C++] DFFlagDebugPhoto2AvatarDeleteBuffers
[C++] DFFlagDebugPhoto2AvatarKeepResultFiles
[C++] DFFlagDebugPhoto2AvatarReturnFullOutput
[C++] DFFlagDebugPhoto2AvatarReturnFullOutput_PlaceFilter
[C++] DFFlagDebugPhysicsSenderDoesNotShrinkSimRadius
[C++] DFFlagDebugPrintDataPingBreakDown
[C++] DFFlagDebugPrintLagServer
[C++] DFFlagDebugPrintMidPhaseStats
[C++] DFFlagDebugRakPeerReceive
[C++] DFFlagDebugRakPeerReceiveCountDistributedPackets
[C++] DFFlagDebugRccLinuxMSTTEnableOnThreshold
[C++] DFFlagDebugRCCPackage
[C++] DFFlagDebugRealityCheck3
[C++] DFFlagDebugRecordPackageSize
[C++] DFFlagDebugRemoteReporterEnabled
[C++] DFFlagDebugRemoteRequestEnableAllTimerGroups
[C++] DFFlagDebugRemoveRbxStorage
[C++] DFFlagDebugRenderForceTechnologyVoxel
[C++] DFFlagDebugRenderLetterBoxing
[C++] DFFlagDebugReportAllSoundAssets
[C++] DFFlagDebugReportAnchoredSimBodyUpdatedFromSolver
[C++] DFFlagDebugReportElevatedPhysicsFPSToGA
[C++] DFFlagDebugReportLoudAudio
[C++] DFFlagDebugReportSoundAssetsFromList
[C++] DFFlagDebugRequireRbxSig4
[C++] DFFlagDebugRetainRegalReceipt
[C++] DFFlagDebugRomarkDisconnect
[C++] DFFlagDebugRomarkPhaseMemory
[C++] DFFlagDebugRuppTokenLogService
[C++] DFFlagDebugRVideoFindMemoryLeaks
[C++] DFFlagDebugSendReplicatorJoinTimeStatPlaceSpecific
[C++] DFFlagDebugSendServerPerfInfoPlaceSpecific
[C++] DFFlagDebugSendStreamingEnabledKeyStatsPlaceSpecific
[C++] DFFlagDebugSensorVisualizer
[C++] DFFlagDebugShowBundlerStatus
[C++] DFFlagDebugSignalOnIdConnectionLost
[C++] DFFlagDebugSimClampPrimitiveBoundsTouchingBox
[C++] DFFlagDebugSimEnableNewAlignTypeInitialization
[C++] DFFlagDebugSimLDLProgramPrintBuildStats
[C++] DFFlagDebugSimLDLProgramPrintExecStats
[C++] DFFlagDebugSimPrimalDivideByMass
[C++] DFFlagDebugSimPrimalFeedback
[C++] DFFlagDebugSimPrimalImplicitSprings
[C++] DFFlagDebugSimPrimalLaggedFriction
[C++] DFFlagDebugSimPrimalLinearSolvePartitionBlocksByRow
[C++] DFFlagDebugSimPrimalLinearSolveUnpackDiagonalBlocks
[C++] DFFlagDebugSimPrimalVectorizeBlockMatrixMultiply
[C++] DFFlagDebugSimRaycastStats
[C++] DFFlagDebugSimShapecastStats
[C++] DFFlagDebugSimShowStabilityDebuggingData
[C++] DFFlagDebugSimSolverAerodynamicsLog
[C++] DFFlagDebugSimSolverDetectExplodingTrains
[C++] DFFlagDebugSimSolverForceSingleLDLBatchTaskOnSingleThread
[C++] DFFlagDebugSimSolverLevitationDeactivateBalance
[C++] DFFlagDebugSimSolverLevitationDeactivateFriction
[C++] DFFlagDebugSimSolverLevitationDeactivateNormal
[C++] DFFlagDebugSimSolverLevitationDeactivateTurning
[C++] DFFlagDebugSimSolverReduceTimingStatFreq
[C++] DFFlagDebugSimulateExceptionAtShutdown
[C++] DFFlagDebugSimulateExceptionAtStartup
[C++] DFFlagDebugSimulateHangAtShutdown
[C++] DFFlagDebugSimulateHangAtStartup
[C++] DFFlagDebugSimUseManualTimestepMultiplier
[C++] DFFlagDebugSkipMeshVoxelizer
[C++] DFFlagDebugStreamingFastRecovery
[C++] DFFlagDebugStreamingObserverNOUConcurrency4
[C++] DFFlagDebugStudioAssetProxy
[C++] DFFlagDebugStudioAssetProxyOverrides
[C++] DFFlagDebugStudioCommands
[C++] DFFlagDebugStudioPackage
[C++] DFFlagDebugStudioReportSerializationTime
[C++] DFFlagDebugStudioReportSerializationTime_PlaceFilter
[C++] DFFlagDebugTexturePerformanceOverlayContentHash
[C++] DFFlagDebugThumbnailForceFailure
[C++] DFFlagDebugToggleReverb
[C++] DFFlagDebugTreeDiffModCheck
[C++] DFFlagDebugUpdateClientChannelA
[C++] DFFlagDebugUpdateClientChannelB
[C++] DFFlagDebugUseOcclusionQueries
[C++] DFFlagDebugVideoDoNotDropFrame
[C++] DFFlagDebugVideoEnableAudioOnlyFiles
[C++] DFFlagDebugVideoEnableAudioOnlyFiles_PlaceFilter
[C++] DFFlagDebugVideoSkipFeatureControlCheck
[C++] DFFlagDebugVisualizeAllPropertyChanges
[C++] DFFlagDebugVisualizePhysicsRelatedPropertyChanges
[C++] DFFlagDebugVoiceChatCustomLogFile
[C++] DFFlagDebugVoiceChatDisableDTX
[C++] DFFlagDebugVoiceChatDisablePublishPauseRequest
[C++] DFFlagDebugVoiceChatDisableSubscribePauseRequest
[C++] DFFlagDebugVoiceChatPublishStartWithResume
[C++] DFFlagDebugVoiceChatRequestRecordingPermissionOnUnmute
[C++] DFFlagDebugVoxelizerDisableSIMD
[C++] DFFlagDeeplinkShouldPassToExistingClient
[C++] DFFlagDeferInferredCrashEvaluation
[C++] DFFlagDelayedInvocationQueueTerminateViaNoexcept
[C++] DFFlagDelayServingAdStateToVideoPlay
[C++] DFFlagDeprecatableBroadcasts2
[C++] DFFlagDeprecateCounterV1ForVideoAdsMetric
[C++] DFFlagDeprecateInfoFetchForSubscription
[C++] DFFlagDeprecateLocalPlayerCreatedSignal
[C++] DFFlagDeprecateOpenPublishResultModal
[C++] DFFlagDeprecateTestServiceThrottle
[C++] DFFlagDeprecateUnsubscribedTerrain
[C++] DFFlagDeprecationMessageRefinements
[C++] DFFlagDestroyedModuleRequireReport
[C++] DFFlagDestroyedModuleRequireWarning
[C++] DFFlagDetailedBandwidthStatsInflux2
[C++] DFFlagDetectedAndInferredOOM2
[C++] DFFlagDetectPatchOOM
[C++] DFFlagDeveloperSubscriptionsEnabled
[C++] DFFlagDirectxOomCrash
[C++] DFFlagDisableAAIfEc
[C++] DFFlagDisableAAIfR
[C++] DFFlagDisableAAIfV
[C++] DFFlagDisableAssetIdCheckInGetAllReportAdInfo
[C++] DFFlagDisableAutoTagLocationToV2CounterStats
[C++] DFFlagDisableCaptureModeGuiObjectFiltering
[C++] DFFlagDisableCaptureModeTouchGuiCantSelect
[C++] DFFlagDisableDownloadBandwidthTracker
[C++] DFFlagDisableDPIScale
[C++] DFFlagDisableFastLogTelemetry
[C++] DFFlagDisableHttpCacheV1Stats
[C++] DFFlagDisableLegacyFRMStatsInEphemeralStats
[C++] DFFlagDisableLODGenForRFSwitch
[C++] DFFlagDisableSingleTraceIdPerPlace
[C++] DFFlagDisableSizingRemovalCharacter
[C++] DFFlagDisableSoundServiceRespectFilteringEnabled
[C++] DFFlagDisableTeleportCustomGui
[C++] DFFlagDisconnectCodeUseEnum
[C++] DFFlagDisconnectOnPingTimeOutGamePlay
[C++] DFFlagDisconnectOnPingTimeOutTC
[C++] DFFlagDisconnectReasonPerConnectionFix
[C++] DFFlagDisplayAdMajorityCriteriaEnabled2
[C++] DFFlagDisplayAdOnscreenCheckEnabled2
[C++] DFFlagDisplayAdRandomizedRaycastEnabled2
[C++] DFFlagDisplayAdRaycastBruteForceAllSlowEnabled
[C++] DFFlagDisplayAdRaycastingDisabled
[C++] DFFlagDMCodeownerBatchHotrodAccessorMigration
[C++] DFFlagDMServiceStatsNullPtrFixEnabled
[C++] DFFlagDoJoinBackTeleport
[C++] DFFlagDomainAllowListEnabled
[C++] DFFlagDomainAllowListEnabled_PlaceFilter
[C++] DFFlagDoNotAssume
[C++] DFFlagDoNotAutosaveTeamCreateIfNoChangesToPlace
[C++] DFFlagDoNotCreateMRDAnyway
[C++] DFFlagDoNotEnforceFairnessInTC
[C++] DFFlagDoNotFireStreamingOnChildAddedForLocalInstances
[C++] DFFlagDoNotReadKdTreeFromMeshHFB
[C++] DFFlagDoNotReadKdTreeFromMeshHFB2
[C++] DFFlagDontAllocatePointsIfCantSend
[C++] DFFlagDontCullNewestLogsFirst
[C++] DFFlagDontSubscribeIfNotVoiceEnabled
[C++] DFFlagDontTrackExtentsForPureLocalSetsComponents
[C++] DFFlagDoVIPTeleport
[C++] DFFlagDropUnconnectedUREs
[C++] DFFlagDRSBasicManagement
[C++] DFFlagDSBudgetV2CounterIncludeUniverseAndPlaceId
[C++] DFFlagDSTelemetryV2CounterRenameLabel
[C++] DFFlagDSTelemetryV2IncludeUniverseIdAndPlaceId
[C++] DFFlagDSTelemetryV2RenameDataStoreService
[C++] DFFlagDSTelemetryV2ReplaceSeparator
[C++] DFFlagDualWriteClientNetworkParquetPoint
[C++] DFFlagDualWriteEphemeralCounterToV2
[C++] DFFlagDualWriteEphemeralStatToV2
[C++] DFFlagDualWriteHttpDownloadBandwidthParquetPoint
[C++] DFFlagDualWriteRakNetBandwidthParquetPoint
[C++] DFFlagDuplicateRejectionReportTracking
[C++] DFFlagDynamicFastVariableReloaderTest1
[C++] DFFlagDynamicIntegrity
[C++] DFFlagDynamicRCCMemoryLimitsCustomPoliciesEnabled
[C++] DFFlagDynamicRCCMemoryLimitsTelem4
[C++] DFFlagDynIpBlacklistBackoffEnabled
[C++] DFFlagEarlyNonYieldableWaitError
[C++] DFFlagEarlyOutOnHttpRequestSendDuringShutdown
[C++] DFFlagEchoSoundEffectFeedbackFix
[C++] DFFlagEditableImageDrawImageTransformedBoundingBox
[C++] DFFlagEditableImageDrawImageTransformedCheckInputs
[C++] DFFlagEditableImageDrawImageTransformedEnabled
[C++] DFFlagEditableMeshRenderingFixBBox
[C++] DFFlagEditableSkipPolicyCheckForStudioEditMode
[C++] DFFlagEI176_FixDMSwitch
[C++] DFFlagELFReportPlayerSetCharacter
[C++] DFFlagEmitSafetyTelemetryInCallbackEnable
[C++] DFFlagEnableAccessoryPublish2
[C++] DFFlagEnableAdGuiDeferredVideoLoad
[C++] DFFlagEnableAdGuiIsValidUpdate
[C++] DFFlagEnableAdPlacementCheckInRequest
[C++] DFFlagEnableAdPortalTouchCooldown
[C++] DFFlagEnableADS2360
[C++] DFFlagEnableADS2546
[C++] DFFlagEnableAdsApiClientV2Endpoint
[C++] DFFlagEnableAdsApiClientV2Endpoint2
[C++] DFFlagEnableAdSeenStatsReporting
[C++] DFFlagEnableAdServiceEventsSendImmediately
[C++] DFFlagEnableAdServiceOnHeartbeat
[C++] DFFlagEnableAdSizeTrackingInVimpAndProgress
[C++] DFFlagEnableAgeRegionRestrictionCodes
[C++] DFFlagEnableAlwaysMuteOnExitFullscreen
[C++] DFFlagEnableAnimatorRetargetingMode
[C++] DFFlagEnableAssetFailedEvent
[C++] DFFlagEnableAssetIdStringParseFix
[C++] DFFlagEnableAssetIdValidation
[C++] DFFlagEnableAudioDeviceCorescriptLocalMuteProperty
[C++] DFFlagEnableAudioDeviceCorescriptLocalMuteProperty3
[C++] DFFlagEnableAudioDuckingAroundVideoAdsRccFix
[C++] DFFlagEnableAudioDuckingCameraTransitionFix
[C++] DFFlagEnableAverageScreenPercentageTracking
[C++] DFFlagEnableBanAsync
[C++] DFFlagEnableBanAsync_PlaceFilter
[C++] DFFlagEnableBanningAPIBetaMessage
[C++] DFFlagEnableBetterConsoleCheckForChat
[C++] DFFlagEnableBindToCloseReasonAPI
[C++] DFFlagEnableBindToCloseReasonAPI_PlaceFilter
[C++] DFFlagEnableBindToCloseReasonEngineCode
[C++] DFFlagEnableBulkPurchase3
[C++] DFFlagEnableCaptureModeDontCaptureChatWindow
[C++] DFFlagEnableCaptureModeNonTextGuiSelection
[C++] DFFlagEnableCaptureServiceServerEventsHandling
[C++] DFFlagEnableChatLocaleId
[C++] DFFlagEnableChatWindowMessageProperties1001
[C++] DFFlagEnableClientAnimatorThrottlingMode
[C++] DFFlagEnableCollectiblesJsonStringWriter1
[C++] DFFlagEnableCollectiblesUuidValidationClientApi
[C++] DFFlagEnableCommerceUWP
[C++] DFFlagEnableCommerceWebviewDomainTitle
[C++] DFFlagEnableCommerceWebviewDomainTitle2
[C++] DFFlagEnableContentIdLengthCheck
[C++] DFFlagEnableCrashHandlerSessionDurationAndroid
[C++] DFFlagEnableCsmRateLimit
[C++] DFFlagEnableCsmReceiveCounter
[C++] DFFlagEnableCsmReceiveCounter_PlaceFilter
[C++] DFFlagEnableDeviceBasedMemoryBufferForHarmony
[C++] DFFlagEnableDeviceMemoryPercentageForHarmony
[C++] DFFlagEnableDisplayBubble
[C++] DFFlagEnableEmotePublish3
[C++] DFFlagEnableEmotePublish3_PlaceFilter
[C++] DFFlagEnableEventIngestTagging
[C++] DFFlagEnableExcludeDeletedForListKeys
[C++] DFFlagEnableExperienceNotificationOptInPrompt
[C++] DFFlagEnableExtraUnreachableTelemetry
[C++] DFFlagEnableFdTracking
[C++] DFFlagEnableFilteredTextEnrichment
[C++] DFFlagEnableFirstFrameVideoImpression
[C++] DFFlagEnableFmodErrorsTelemetry
[C++] DFFlagEnableFullscreenVisibilityCheck
[C++] DFFlagEnableFullScreenWebview
[C++] DFFlagEnableGameJoinChatTimeoutEvent
[C++] DFFlagEnableGameJoinPriority
[C++] DFFlagEnableGetBanHistoryAsync
[C++] DFFlagEnableGlobalFeatureTrackingInTelemetryEvent
[C++] DFFlagEnableGuacLastUpdatedUserSwitchForceFetch
[C++] DFFlagEnableHideInteractivityControls
[C++] DFFlagEnableHttpCacheV2Stats3
[C++] DFFlagEnableHumanoidStateChangeTelemtry
[C++] DFFlagEnableHumanoidStateChangeTelemtryOldStateDuration
[C++] DFFlagEnableImmersiveAdViewabilityPointsThrottle
[C++] DFFlagEnableInExperienceChatTimeout
[C++] DFFlagEnableInExperienceRealWorldCommerce
[C++] DFFlagEnableInExperienceRealWorldCommerce_PlaceFilter
[C++] DFFlagEnableInfluxKeyValidate
[C++] DFFlagEnableInPlaceFlagJsonParsing
[C++] DFFlagEnableIOSGPUFriendlyName
[C++] DFFlagEnableIrisCancelFromTeleport
[C++] DFFlagEnableIsExternalAdImpressionReportingField
[C++] DFFlagEnableLogMessageTruncate
[C++] DFFlagEnableLogReporterMultipleLogs
[C++] DFFlagEnableLuaApiToRegisterEncryptedAssets
[C++] DFFlagEnableLuaApiToRegisterEncryptedAssets_PlaceFilter
[C++] DFFlagEnableMaxVariantCountRRS
[C++] DFFlagEnableMeasureAllVisibilityRequirements
[C++] DFFlagEnableMeshPreloading
[C++] DFFlagEnableMeshPreloading2
[C++] DFFlagEnableMicroProfilerDumpScreenshot
[C++] DFFlagEnableModerationDisconnectReason
[C++] DFFlagEnableModerationShutdown
[C++] DFFlagEnableModerationTimeoutMessageStatus
[C++] DFFlagEnableMPAllocCallback
[C++] DFFlagEnableNewAssetUploadTempstoreS3Bucket
[C++] DFFlagEnableNewJoinCounter
[C++] DFFlagEnableNoFillForInvalidThirdPartyAd
[C++] DFFlagEnableNonTeamCreateRemoteSaveValidator
[C++] DFFlagEnableOctreeDebugDraw
[C++] DFFlagEnableParallelFrustumQueries3
[C++] DFFlagEnablePartnerBillingPremium
[C++] DFFlagEnablePercentileTelemetry
[C++] DFFlagEnablePerfAudioCollection
[C++] DFFlagEnablePerfAudioCollection_PlaceFilter
[C++] DFFlagEnablePerfDataCoreCategoryTimersCollection2
[C++] DFFlagEnablePerfDataCoreTimersCollection2
[C++] DFFlagEnablePerfDataCountersCollection
[C++] DFFlagEnablePerfDataGatherTelemetry2
[C++] DFFlagEnablePerfDataMainThread
[C++] DFFlagEnablePerfDataReportThermals
[C++] DFFlagEnablePerfDataStudioVMCollection
[C++] DFFlagEnablePerfDataSubsystemTimersCollection2
[C++] DFFlagEnablePerfDataSummaryMode
[C++] DFFlagEnablePerfMSTTEnabledFlag
[C++] DFFlagEnablePerfPlaytestId
[C++] DFFlagEnablePerfPlaytestIdTag
[C++] DFFlagEnablePerFrameSampling
[C++] DFFlagEnablePerfRenderStatsCollection2
[C++] DFFlagEnablePerfStatsAPI
[C++] DFFlagEnablePerfStatsCollection3
[C++] DFFlagEnablePlaceFileUploadTempstoreS3Bucket
[C++] DFFlagEnablePlaceIdsForGrantAccess_PlaceFilter
[C++] DFFlagEnablePointsHardwareBitDepth
[C++] DFFlagEnablePointsPlaceVersionNumber2
[C++] DFFlagEnablePreciseCullRadius
[C++] DFFlagEnablePreloadAvatarAssets
[C++] DFFlagEnableProfilingForDefaultAsyncFlush
[C++] DFFlagEnablePromptNativePurchaseWithPayload
[C++] DFFlagEnablePublishEventsForEditableAndWD
[C++] DFFlagEnableQualityResetSessionTracking
[C++] DFFlagEnableRandomStatVerification
[C++] DFFlagEnableRccCloseReasonAdoptionTracking
[C++] DFFlagEnableRealWorldCommercePOC
[C++] DFFlagEnableRealWorldCommercePOC_PlaceFilter
[C++] DFFlagEnableRemoteProfiling
[C++] DFFlagEnableRemoteSaveValidatorTelemetry
[C++] DFFlagEnableRewardedVideoCompletionDynamic
[C++] DFFlagEnableRobloxCNDomains
[C++] DFFlagEnableRobloxTelemetryV2POC
[C++] DFFlagEnableRolloutFlagCrashDataMacClient
[C++] DFFlagEnableRolloutFlagCrashDataMacStudio
[C++] DFFlagEnableRolloutFlagCrashDataRcc
[C++] DFFlagEnableRSLAllocateShared
[C++] DFFlagEnableScreenAndAdStatsForUnload
[C++] DFFlagEnableSearchAudioApi
[C++] DFFlagEnableSendItemLimit
[C++] DFFlagEnableSendItemLimitDisconnect
[C++] DFFlagEnableServerSideReportToAdsApiRollout
[C++] DFFlagEnableSessionEventsForEditableImage
[C++] DFFlagEnableSetClientDeviceRam
[C++] DFFlagEnableSetTransactionStatusMigration
[C++] DFFlagEnableSkipUpdatingGlobalTelemetryInfo
[C++] DFFlagEnableSkipUpdatingGlobalTelemetryInfo2
[C++] DFFlagEnableSocketPortSharding
[C++] DFFlagEnableSoundPreloading
[C++] DFFlagEnableStoreWeakDM
[C++] DFFlagEnableStudioPluginsParallelRequests
[C++] DFFlagEnableSubscriptionDetails
[C++] DFFlagEnableSubscriptionDetails2
[C++] DFFlagEnableSubscriptionDetails2_PlaceFilter
[C++] DFFlagEnableTCSChatTranslation
[C++] DFFlagEnableTCSChatTranslationABTest
[C++] DFFlagEnableTeamCreateRemoteSaveValidator
[C++] DFFlagEnableTelemetryV2FRMStats
[C++] DFFlagEnableTeleportGuiRootContainerCheck
[C++] DFFlagEnableTeleportTrustedToSpawnName
[C++] DFFlagEnableTeleportVIPBlackList
[C++] DFFlagEnableTeleportVIPWhiteList
[C++] DFFlagEnableTexturePreloading
[C++] DFFlagEnableThirdPartyAdErrorEventReporting
[C++] DFFlagEnableThirdPartyAdFullScreenCollapseEventReporting
[C++] DFFlagEnableThirdPartyAdPauseResumeEventReporting
[C++] DFFlagEnableThirdPartyAdVolumeEventReporting
[C++] DFFlagEnableThumbnailTextureLoadTimeout
[C++] DFFlagEnableThumbnailTimeoutNew
[C++] DFFlagEnableToSwitchToSettingsAppWithRouteMac
[C++] DFFlagEnableToSwitchToSettingsAppWithRouteWin32
[C++] DFFlagEnableTrackingAccessoryDestoyedWithLiveSignals
[C++] DFFlagEnableTunableClientReplicatorStatsForSessionTracking
[C++] DFFlagEnableTwoSecondVideoView
[C++] DFFlagEnableUnbanAsync
[C++] DFFlagEnableUnbanAsync_PlaceFilter
[C++] DFFlagEnableV2POCCounter
[C++] DFFlagEnableV2POCStat
[C++] DFFlagEnableValidateEngineContextCrash
[C++] DFFlagEnableValidateEngineContextLiveTrace
[C++] DFFlagEnableVerboseFailedUrl
[C++] DFFlagEnableVideoAdsMemoryCheck
[C++] DFFlagEnableVideoAdsOptOut
[C++] DFFlagEnableVideoAdsUpdatedImpressionDefinition
[C++] DFFlagEnableVideoAudibilityStats
[C++] DFFlagEnableVideoCompleteDefraud
[C++] DFFlagEnableVideoContInViewSanityCheck
[C++] DFFlagEnableVideoLengthStats
[C++] DFFlagEnableVideoPlaybackSanityCheck
[C++] DFFlagEnableVideoPlayerStateTracking
[C++] DFFlagEnableViewPortSizeTracking
[C++] DFFlagEnforceInstanceIdForPromptCollectiblesPurchase
[C++] DFFlagEnforceValidUuidForPromptCollectiblesPurchase
[C++] DFFlagEngineAddActivityManagerMemoryClassifications
[C++] DFFlagEngineAPICloudProcessingErrorOnPayloadTooLarge
[C++] DFFlagEngineAPICloudProcessingServiceCollectRequestData
[C++] DFFlagEngineAPICloudProcessingServiceLimitStringSize
[C++] DFFlagEngineAPICloudProcessingServiceMasterSwitch
[C++] DFFlagEngineAPICloudProcessingServiceSupportAttributesAndTags
[C++] DFFlagEngineAPICloudProcessingServiceUseUpdatedRPF
[C++] DFFlagEngineAPISendNotificationClientAnalytics
[C++] DFFlagEngineTelemetryInt64FieldTruncationFix
[C++] DFFlagEnhancedPacketDebugging
[C++] DFFlagEnsureSpaceForDebugger
[C++] DFFlagEnumRootMethod
[C++] DFFlagEphemeralCounterInfluxReportingEnabled
[C++] DFFlagEphemeralEarlyKeys
[C++] DFFlagESGamePerfMonitorEnabled
[C++] DFFlagESGamePerfMonitorUseRandomSelection
[C++] DFFlagExcludeSimulationHeartbeatFromAllOthers
[C++] DFFlagEXPCHAT1499Telemetry
[C++] DFFlagEXPCHAT826_LAST
[C++] DFFlagEXPCHAT826_RCC
[C++] DFFlagExperienceSignalsIngestRefactorEnabled
[C++] DFFlagExperienceStateCaptureDisableSound
[C++] DFFlagExperienceStateCaptureEnableBillboardSelection
[C++] DFFlagExperienceStateCaptureHiddenSelection
[C++] DFFlagExperienceStateCaptureMinMemEnabled
[C++] DFFlagExplicitPlaySessionIdHttpDownloadBandwidth
[C++] DFFlagExtractExtractMesh
[C++] DFFlagExtractFlagAttachmentAndSortFlags
[C++] DFFlagExtraLoggingForCLI36936_2
[C++] DFFlagFaceAnimatorServiceTelemetryIncludeTrackerMode
[C++] DFFlagFacialAnimationStreaming2
[C++] DFFlagFacsTagInRepAndServStats
[C++] DFFlagFastBvhDequantize
[C++] DFFlagFastEndUpdateLoop
[C++] DFFlagFastEndUpdateLoop_DataCenterFilter
[C++] DFFlagFasterPublicChannelUpdates
[C++] DFFlagFastInstanceLists
[C++] DFFlagFastLogElideMessageEval
[C++] DFFlagFastMeshSize
[C++] DFFlagFastRaycastParamsDescendantCopy
[C++] DFFlagFastVisuallyMovingCounters4
[C++] DFFlagFbxAddAnimationEndTimeEpsilon
[C++] DFFlagFFlagRolloutDuplicateRobloxTelemetryCountersEnabled
[C++] DFFlagFFlagRolloutDuplicateTelemetryCountersEnabled
[C++] DFFlagFileMeshDataTelemetry
[C++] DFFlagFilterAndTranslateCacheFloodChcker
[C++] DFFlagFindingTheNextBestBodyMover2
[C++] DFFlagFixAccoutrementWeldCreationForCloudEdit4
[C++] DFFlagFixAccoutrementWeldCreationForPluginGUI
[C++] DFFlagFixAdGuiFullscreenMath
[C++] DFFlagFixAdsEventMetadata
[C++] DFFlagFixAdsFullscreenLockLatency
[C++] DFFlagFixAmazonFireUncollidable
[C++] DFFlagFixAppSuccssMult
[C++] DFFlagFixAVBURST15480
[C++] DFFlagFixCharacterLoadFlags