├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── core.yml │ ├── experiment-calculator.yml │ ├── experiment-foldable.yaml │ ├── experiment-motionlayout.yaml │ ├── experiment-viewtransition.yaml │ └── old │ ├── desktop-cycle-editor.yml │ ├── desktop-validation-tool.yaml │ ├── experiment-carousel.yaml │ ├── validation-constraintlayout.yaml │ └── validation-motionlayout.yaml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── constraintlayout ├── .idea │ ├── androidTestResultsUserPreferences.xml │ ├── codeStyles │ │ ├── Project.xml │ │ └── codeStyleConfig.xml │ ├── copyright │ │ ├── aosp.xml │ │ └── profiles_settings.xml │ └── inspectionProfiles │ │ └── Project_Default.xml ├── README.md ├── build-logic │ ├── build.gradle │ └── src │ │ └── main │ │ ├── groovy │ │ ├── androidx.build.base.gradle │ │ ├── androidx.build.java-library.gradle │ │ ├── androidx.build.publishing.gradle │ │ └── org.constraintlayout.build.publishing.gradle │ │ └── java │ │ └── androidx │ │ └── constraintlayout │ │ ├── GenerateSourcePropsTask.java │ │ └── GlobalConfig.java ├── build.gradle ├── compose │ ├── .idea │ │ └── .gitignore │ ├── build.gradle │ └── src │ │ ├── androidTest │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── androidx │ │ │ │ └── constraintlayout │ │ │ │ └── compose │ │ │ │ ├── ChainsTest.kt │ │ │ │ ├── ConstraintLayoutTest.kt │ │ │ │ ├── ConstraintSetParserKtTest.kt │ │ │ │ ├── DesignInfoProviderTest.kt │ │ │ │ ├── FlowTest.kt │ │ │ │ ├── GridDslTest.kt │ │ │ │ ├── GridTest.kt │ │ │ │ ├── MotionFlowTest.kt │ │ │ │ ├── MotionGridTest.kt │ │ │ │ ├── MotionLayoutStateTest.kt │ │ │ │ ├── MotionLayoutTest.kt │ │ │ │ ├── MotionParserTest.kt │ │ │ │ ├── OnSwipeTest.kt │ │ │ │ ├── RowColumnDslTest.kt │ │ │ │ ├── RowColumnTest.kt │ │ │ │ └── Utils.kt │ │ └── res │ │ │ └── raw │ │ │ └── custom_text_size_scene.json5 │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── androidx │ │ └── constraintlayout │ │ └── compose │ │ ├── ChainConstrainScope.kt │ │ ├── ConstrainScope.kt │ │ ├── ConstraintLayout.kt │ │ ├── ConstraintLayoutBaseScope.kt │ │ ├── ConstraintLayoutTag.kt │ │ ├── ConstraintScopeCommon.kt │ │ ├── ConstraintSet.kt │ │ ├── DslConstraintSet.kt │ │ ├── ExperimentalMotionApi.kt │ │ ├── JSONConstraintSet.kt │ │ ├── Motion.kt │ │ ├── MotionCarousel.kt │ │ ├── MotionDragHandler.kt │ │ ├── MotionLayout.kt │ │ ├── MotionLayoutState.kt │ │ ├── MotionMeasurer.kt │ │ ├── MotionModifierScope.kt │ │ ├── MotionRenderDebug.java │ │ ├── MotionScene.kt │ │ ├── MotionSceneScope.kt │ │ ├── ToolingUtils.kt │ │ ├── Transition.kt │ │ ├── TransitionHandler.kt │ │ ├── TransitionScope.kt │ │ └── carousel │ │ └── CarouselSwipeable.kt ├── constraintlayout │ ├── README.md │ ├── build.gradle │ ├── lint.xml │ ├── resources │ │ ├── examples │ │ │ ├── ExampleConstraintSet.java │ │ │ └── Guideline.xml │ │ └── images │ │ │ ├── barrier-adapt.png │ │ │ ├── barrier-buttons.png │ │ │ ├── barrier-end.png │ │ │ ├── barrier-start.png │ │ │ ├── centering-positioning-bias.png │ │ │ ├── centering-positioning.png │ │ │ ├── chains-head.png │ │ │ ├── chains-styles.png │ │ │ ├── chains.png │ │ │ ├── circle1.png │ │ │ ├── circle2.png │ │ │ ├── dimension-match-constraints.png │ │ │ ├── relative-positioning-constraints.png │ │ │ ├── relative-positioning-margin.png │ │ │ ├── relative-positioning.png │ │ │ └── visibility-behavior.png │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── baseline-prof.txt │ │ ├── java │ │ └── androidx │ │ │ └── constraintlayout │ │ │ ├── helper │ │ │ └── widget │ │ │ │ ├── Carousel.java │ │ │ │ ├── CircularFlow.java │ │ │ │ ├── Flow.java │ │ │ │ ├── Grid.java │ │ │ │ ├── Layer.java │ │ │ │ ├── LogJson.java │ │ │ │ ├── MotionEffect.java │ │ │ │ └── MotionPlaceholder.java │ │ │ ├── motion │ │ │ ├── utils │ │ │ │ ├── CustomSupport.java │ │ │ │ ├── StopLogic.java │ │ │ │ ├── ViewOscillator.java │ │ │ │ ├── ViewSpline.java │ │ │ │ ├── ViewState.java │ │ │ │ └── ViewTimeCycle.java │ │ │ └── widget │ │ │ │ ├── Animatable.java │ │ │ │ ├── CustomFloatAttributes.java │ │ │ │ ├── Debug.java │ │ │ │ ├── DesignTool.java │ │ │ │ ├── FloatLayout.java │ │ │ │ ├── Key.java │ │ │ │ ├── KeyAttributes.java │ │ │ │ ├── KeyCycle.java │ │ │ │ ├── KeyFrames.java │ │ │ │ ├── KeyPosition.java │ │ │ │ ├── KeyPositionBase.java │ │ │ │ ├── KeyTimeCycle.java │ │ │ │ ├── KeyTrigger.java │ │ │ │ ├── MotionConstrainedPoint.java │ │ │ │ ├── MotionController.java │ │ │ │ ├── MotionHelper.java │ │ │ │ ├── MotionHelperInterface.java │ │ │ │ ├── MotionInterpolator.java │ │ │ │ ├── MotionLayout.java │ │ │ │ ├── MotionPaths.java │ │ │ │ ├── MotionScene.java │ │ │ │ ├── OnSwipe.java │ │ │ │ ├── TouchResponse.java │ │ │ │ ├── TransitionAdapter.java │ │ │ │ ├── TransitionBuilder.java │ │ │ │ ├── ViewTransition.java │ │ │ │ └── ViewTransitionController.java │ │ │ ├── utils │ │ │ └── widget │ │ │ │ ├── ImageFilterButton.java │ │ │ │ ├── ImageFilterView.java │ │ │ │ ├── MockView.java │ │ │ │ ├── MotionButton.java │ │ │ │ ├── MotionLabel.java │ │ │ │ └── MotionTelltales.java │ │ │ └── widget │ │ │ ├── Barrier.java │ │ │ ├── ConstraintAttribute.java │ │ │ ├── ConstraintHelper.java │ │ │ ├── ConstraintLayout.java │ │ │ ├── ConstraintLayoutStates.java │ │ │ ├── ConstraintLayoutStatistics.java │ │ │ ├── ConstraintProperties.java │ │ │ ├── ConstraintSet.java │ │ │ ├── Constraints.java │ │ │ ├── ConstraintsChangedListener.java │ │ │ ├── Group.java │ │ │ ├── Guideline.java │ │ │ ├── Placeholder.java │ │ │ ├── ReactiveGuide.java │ │ │ ├── SharedValues.java │ │ │ ├── StateSet.java │ │ │ └── VirtualLayout.java │ │ └── res │ │ └── values │ │ ├── attrs.xml │ │ └── ids.xml ├── core │ ├── build.gradle │ └── src │ │ ├── main │ │ └── java │ │ │ └── androidx │ │ │ └── constraintlayout │ │ │ └── core │ │ │ ├── ArrayLinkedVariables.java │ │ │ ├── ArrayRow.java │ │ │ ├── Cache.java │ │ │ ├── GoalRow.java │ │ │ ├── LinearSystem.java │ │ │ ├── Metrics.java │ │ │ ├── Pools.java │ │ │ ├── PriorityGoalRow.java │ │ │ ├── SolverVariable.java │ │ │ ├── SolverVariableValues.java │ │ │ ├── dsl │ │ │ ├── Barrier.java │ │ │ ├── Chain.java │ │ │ ├── Constraint.java │ │ │ ├── ConstraintSet.java │ │ │ ├── Guideline.java │ │ │ ├── HChain.java │ │ │ ├── HGuideline.java │ │ │ ├── Helper.java │ │ │ ├── KeyAttribute.java │ │ │ ├── KeyAttributes.java │ │ │ ├── KeyCycle.java │ │ │ ├── KeyCycles.java │ │ │ ├── KeyFrames.java │ │ │ ├── KeyPosition.java │ │ │ ├── KeyPositions.java │ │ │ ├── Keys.java │ │ │ ├── MotionScene.java │ │ │ ├── OnSwipe.java │ │ │ ├── Ref.java │ │ │ ├── Transition.java │ │ │ ├── VChain.java │ │ │ └── VGuideline.java │ │ │ ├── motion │ │ │ ├── CustomAttribute.java │ │ │ ├── CustomVariable.java │ │ │ ├── Motion.java │ │ │ ├── MotionConstrainedPoint.java │ │ │ ├── MotionPaths.java │ │ │ ├── MotionWidget.java │ │ │ ├── key │ │ │ │ ├── MotionConstraintSet.java │ │ │ │ ├── MotionKey.java │ │ │ │ ├── MotionKeyAttributes.java │ │ │ │ ├── MotionKeyCycle.java │ │ │ │ ├── MotionKeyPosition.java │ │ │ │ ├── MotionKeyTimeCycle.java │ │ │ │ └── MotionKeyTrigger.java │ │ │ ├── parse │ │ │ │ └── KeyParser.java │ │ │ └── utils │ │ │ │ ├── ArcCurveFit.java │ │ │ │ ├── CurveFit.java │ │ │ │ ├── DifferentialInterpolator.java │ │ │ │ ├── Easing.java │ │ │ │ ├── FloatRect.java │ │ │ │ ├── HyperSpline.java │ │ │ │ ├── KeyCache.java │ │ │ │ ├── KeyCycleOscillator.java │ │ │ │ ├── KeyFrameArray.java │ │ │ │ ├── LinearCurveFit.java │ │ │ │ ├── MonotonicCurveFit.java │ │ │ │ ├── Oscillator.java │ │ │ │ ├── Rect.java │ │ │ │ ├── Schlick.java │ │ │ │ ├── SplineSet.java │ │ │ │ ├── SpringStopEngine.java │ │ │ │ ├── StepCurve.java │ │ │ │ ├── StopEngine.java │ │ │ │ ├── StopLogicEngine.java │ │ │ │ ├── TimeCycleSplineSet.java │ │ │ │ ├── TypedBundle.java │ │ │ │ ├── TypedValues.java │ │ │ │ ├── Utils.java │ │ │ │ ├── VelocityMatrix.java │ │ │ │ └── ViewState.java │ │ │ ├── parser │ │ │ ├── CLArray.java │ │ │ ├── CLContainer.java │ │ │ ├── CLElement.java │ │ │ ├── CLKey.java │ │ │ ├── CLNumber.java │ │ │ ├── CLObject.java │ │ │ ├── CLParser.java │ │ │ ├── CLParsingException.java │ │ │ ├── CLString.java │ │ │ └── CLToken.java │ │ │ ├── state │ │ │ ├── ConstraintReference.java │ │ │ ├── ConstraintSetParser.java │ │ │ ├── CoreMotionScene.java │ │ │ ├── CorePixelDp.java │ │ │ ├── Dimension.java │ │ │ ├── HelperReference.java │ │ │ ├── Interpolator.java │ │ │ ├── Reference.java │ │ │ ├── Registry.java │ │ │ ├── RegistryCallback.java │ │ │ ├── State.java │ │ │ ├── Transition.java │ │ │ ├── TransitionParser.java │ │ │ ├── WidgetFrame.java │ │ │ └── helpers │ │ │ │ ├── AlignHorizontallyReference.java │ │ │ │ ├── AlignVerticallyReference.java │ │ │ │ ├── BarrierReference.java │ │ │ │ ├── ChainReference.java │ │ │ │ ├── Facade.java │ │ │ │ ├── FlowReference.java │ │ │ │ ├── GridReference.java │ │ │ │ ├── GuidelineReference.java │ │ │ │ ├── HorizontalChainReference.java │ │ │ │ └── VerticalChainReference.java │ │ │ ├── utils │ │ │ ├── GridCore.java │ │ │ └── GridEngine.java │ │ │ └── widgets │ │ │ ├── Barrier.java │ │ │ ├── Chain.java │ │ │ ├── ChainHead.java │ │ │ ├── ConstraintAnchor.java │ │ │ ├── ConstraintWidget.java │ │ │ ├── ConstraintWidgetContainer.java │ │ │ ├── Flow.java │ │ │ ├── Guideline.java │ │ │ ├── Helper.java │ │ │ ├── HelperWidget.java │ │ │ ├── Optimizer.java │ │ │ ├── Placeholder.java │ │ │ ├── Rectangle.java │ │ │ ├── VirtualLayout.java │ │ │ ├── WidgetContainer.java │ │ │ └── analyzer │ │ │ ├── BaselineDimensionDependency.java │ │ │ ├── BasicMeasure.java │ │ │ ├── ChainRun.java │ │ │ ├── Dependency.java │ │ │ ├── DependencyGraph.java │ │ │ ├── DependencyNode.java │ │ │ ├── DimensionDependency.java │ │ │ ├── Direct.java │ │ │ ├── Grouping.java │ │ │ ├── GuidelineReference.java │ │ │ ├── HelperReferences.java │ │ │ ├── HorizontalWidgetRun.java │ │ │ ├── RunGroup.java │ │ │ ├── VerticalWidgetRun.java │ │ │ ├── WidgetGroup.java │ │ │ └── WidgetRun.java │ │ └── test │ │ ├── java │ │ └── androidx │ │ │ └── constraintlayout │ │ │ └── core │ │ │ ├── AdvancedChainTest.java │ │ │ ├── Amount.java │ │ │ ├── AmountTest.java │ │ │ ├── ArrayBackedVariables.java │ │ │ ├── ArrayLinkedVariablesTest.java │ │ │ ├── BarrierTest.java │ │ │ ├── BasicTest.java │ │ │ ├── CenterWrapTest.java │ │ │ ├── ChainTest.java │ │ │ ├── ChainWrapContentTest.java │ │ │ ├── CircleTest.java │ │ │ ├── ComposeLayoutsTest.java │ │ │ ├── EquationVariable.java │ │ │ ├── EquationVariableTest.java │ │ │ ├── FlowTest.java │ │ │ ├── GuidelineTest.java │ │ │ ├── HistogramCounter.java │ │ │ ├── LayoutTest.java │ │ │ ├── LinearEquation.java │ │ │ ├── LinearEquationTest.java │ │ │ ├── LinearSystemTest.java │ │ │ ├── MatchConstraintTest.java │ │ │ ├── NestedLayout.java │ │ │ ├── OptimizationsTest.java │ │ │ ├── OptimizedGoal.java │ │ │ ├── OriginalGoal.java │ │ │ ├── PerformanceTest.java │ │ │ ├── PriorityTest.java │ │ │ ├── RandomLayoutTest.java │ │ │ ├── RatioTest.java │ │ │ ├── SolverVariableValuesTest.java │ │ │ ├── VisibilityTest.java │ │ │ ├── WidgetsPositioningTest.java │ │ │ ├── WrapTest.java │ │ │ ├── XmlBasedTest.java │ │ │ ├── cl │ │ │ └── ConstraintSetParserTest.java │ │ │ ├── dsl │ │ │ └── DslTest.java │ │ │ ├── motion │ │ │ ├── MotionArcCurveTest.java │ │ │ ├── MotionBasicTest.java │ │ │ ├── MotionBenchmarkTest.java │ │ │ ├── MotionControlTest.java │ │ │ ├── MotionCustomAttributesTest.java │ │ │ ├── MotionCustomKeyAttributesTest.java │ │ │ ├── MotionKeyAttributesTest.java │ │ │ ├── MotionKeyCycleTest.java │ │ │ ├── MotionKeyFrameArray.java │ │ │ ├── MotionKeyPositionTest.java │ │ │ ├── MotionKeyTimeCycleTest.java │ │ │ ├── MotionParsingTest.java │ │ │ ├── MotionTransitionTest.java │ │ │ └── StopLogicTest.java │ │ │ ├── parser │ │ │ ├── CLParserBenchmarkTest.java │ │ │ └── CLParserTest.java │ │ │ ├── scout │ │ │ ├── Direction.java │ │ │ ├── Scout.java │ │ │ ├── ScoutProbabilities.java │ │ │ ├── ScoutWidget.java │ │ │ └── Utils.java │ │ │ ├── utils │ │ │ └── GridEngineTest.java │ │ │ └── widgets │ │ │ ├── BasicSolverVariableValues.java │ │ │ └── ChainHeadTest.java │ │ └── resources │ │ ├── check00.xml │ │ ├── check01.xml │ │ ├── check02.xml │ │ ├── check03.xml │ │ ├── check04.xml │ │ ├── check05.xml │ │ ├── check06.xml │ │ ├── check07.xml │ │ ├── check08.xml │ │ ├── check09.xml │ │ ├── check10.xml │ │ ├── check12.xml │ │ ├── check13.xml │ │ └── check16.xml ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── localBuild.sh ├── settings.gradle ├── swing │ ├── build.gradle │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── constraintlayout │ │ └── swing │ │ ├── ConstraintLayout.java │ │ ├── Language.java │ │ ├── LinkServer.java │ │ ├── MotionLayout.java │ │ ├── MotionPanel.java │ │ ├── MotionRenderDebug.java │ │ ├── RemoteDebug.java │ │ └── core │ │ ├── ConstraintLayoutState.java │ │ ├── ConstraintSetParser.java │ │ ├── ConstraintsState.java │ │ ├── GuidelinesState.java │ │ ├── MotionLayoutModel.java │ │ ├── MotionSceneParser.java │ │ ├── ParseKeyFrames.java │ │ ├── StateData.java │ │ └── motion │ │ └── model │ │ ├── ConstraintSetModel.java │ │ ├── Header.java │ │ ├── JsonKeys.java │ │ ├── KeyAttributeModel.java │ │ ├── KeyCycleModel.java │ │ ├── KeyFrame.java │ │ ├── KeyPositionModel.java │ │ ├── MotionEngine.java │ │ ├── MotionModel.java │ │ ├── MotionSceneModel.java │ │ ├── OnClickModel.java │ │ ├── OnSwipeModel.java │ │ └── TransitionModel.java └── tools │ ├── build.gradle │ └── src │ └── main │ └── kotlin │ └── androidx │ └── constraintlayout │ └── tools │ └── LinkServer.kt ├── demoProjects ├── .idea │ └── inspectionProfiles │ │ └── Project_Default.xml ├── ComposeAnimatedDragAndDrop │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ └── copyright │ │ │ ├── aosp.xml │ │ │ └── profiles_settings.xml │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── composeanimateddraganddrop │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── composeanimateddraganddrop │ │ │ │ │ ├── AnimatedConstraintLayout.kt │ │ │ │ │ ├── DragHandler.kt │ │ │ │ │ ├── DraggablePlaceholder.kt │ │ │ │ │ ├── FlowExample.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── ui │ │ │ │ │ └── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── composeanimateddraganddrop │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── ComposeConstraintLayoutDemo │ ├── .gitignore │ ├── .idea │ │ └── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── androidx │ │ │ │ └── demo │ │ │ │ └── motiondemos │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── androidx │ │ │ │ │ └── demo │ │ │ │ │ └── motiondemos │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── MainActivity_start.kt │ │ │ │ │ └── ui │ │ │ │ │ └── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── buds.png │ │ │ │ ├── cart.xml │ │ │ │ ├── cl_icon.png │ │ │ │ ├── flame.png │ │ │ │ ├── g_flame.png │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── phone.webp │ │ │ │ ├── search.xml │ │ │ │ └── top_logo.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── androidx │ │ │ └── demo │ │ │ └── motiondemos │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── ComposeDemos │ ├── .gitignore │ ├── .idea │ │ └── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── androidx │ │ │ │ └── demo │ │ │ │ └── composedemos │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── androidx │ │ │ │ │ └── demo │ │ │ │ │ └── composedemos │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── ui │ │ │ │ │ └── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── androidx │ │ │ └── demo │ │ │ └── composedemos │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── ComposeGraph3d │ ├── .gitignore │ ├── .idea │ │ └── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── android │ │ │ │ └── support │ │ │ │ └── composegraph3d │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── android │ │ │ │ │ └── support │ │ │ │ │ └── composegraph3d │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── lib │ │ │ │ │ ├── FunctionSetup.kt │ │ │ │ │ ├── Graph.kt │ │ │ │ │ ├── Matrix.kt │ │ │ │ │ ├── Object3D.kt │ │ │ │ │ ├── Quaternion.kt │ │ │ │ │ ├── Scene3D.kt │ │ │ │ │ ├── VectorUtil.kt │ │ │ │ │ ├── ViewMatrix.kt │ │ │ │ │ └── objects │ │ │ │ │ │ ├── AxisBox.kt │ │ │ │ │ │ └── Surface3D.kt │ │ │ │ │ └── ui │ │ │ │ │ └── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-anydpi-v33 │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── android │ │ │ └── support │ │ │ └── composegraph3d │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── ComposeMail │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── codeStyles │ │ │ ├── Project.xml │ │ │ └── codeStyleConfig.xml │ │ ├── copyright │ │ │ ├── aosp.xml │ │ │ └── profiles_settings.xml │ │ ├── deploymentTargetDropDown.xml │ │ └── inspectionProfiles │ │ │ └── Project_Default.xml │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── composemail │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-playstore.png │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── composemail │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── model │ │ │ │ │ ├── ComposeMailModel.kt │ │ │ │ │ ├── data │ │ │ │ │ │ └── MailDataClasses.kt │ │ │ │ │ ├── paging │ │ │ │ │ │ ├── MailPager.kt │ │ │ │ │ │ └── MailPagingSource.kt │ │ │ │ │ └── repo │ │ │ │ │ │ ├── MailRepository.kt │ │ │ │ │ │ └── OfflineRepo.kt │ │ │ │ │ └── ui │ │ │ │ │ ├── components │ │ │ │ │ ├── ContactImage.kt │ │ │ │ │ ├── OneLineText.kt │ │ │ │ │ ├── ProfileButton.kt │ │ │ │ │ └── SearchBar.kt │ │ │ │ │ ├── compositionlocal │ │ │ │ │ ├── FoldableInfo.kt │ │ │ │ │ └── WindowSizeClass.kt │ │ │ │ │ ├── home │ │ │ │ │ ├── Home.kt │ │ │ │ │ └── TopToolbar.kt │ │ │ │ │ ├── mails │ │ │ │ │ ├── MailItem.kt │ │ │ │ │ ├── MailItemState.kt │ │ │ │ │ ├── MailList.kt │ │ │ │ │ └── MailListState.kt │ │ │ │ │ ├── newmail │ │ │ │ │ ├── NewMail.kt │ │ │ │ │ └── NewMailState.kt │ │ │ │ │ ├── theme │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ │ │ ├── utils │ │ │ │ │ └── Time.kt │ │ │ │ │ └── viewer │ │ │ │ │ ├── MailViewer.kt │ │ │ │ │ └── MailViewerToolbar.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── avatar_1.png │ │ │ │ ├── avatar_10.png │ │ │ │ ├── avatar_11.png │ │ │ │ ├── avatar_12.png │ │ │ │ ├── avatar_13.png │ │ │ │ ├── avatar_14.png │ │ │ │ ├── avatar_15.png │ │ │ │ ├── avatar_16.png │ │ │ │ ├── avatar_2.png │ │ │ │ ├── avatar_3.png │ │ │ │ ├── avatar_4.png │ │ │ │ ├── avatar_5.png │ │ │ │ ├── avatar_6.png │ │ │ │ ├── avatar_7.png │ │ │ │ ├── avatar_8.png │ │ │ │ ├── avatar_9.png │ │ │ │ ├── baseline_audio_file_24.xml │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ └── ic_no_profile_pic.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── composemail │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Drag2D │ ├── .gitignore │ ├── .idea │ │ └── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── android │ │ │ │ └── support │ │ │ │ └── drag2d │ │ │ │ ├── DragCardActivity.java │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ ├── volleyball.xml │ │ │ └── window.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-anydpi-v33 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ └── values │ │ │ └── themes.xml │ ├── build.gradle │ ├── engine │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── android │ │ │ └── support │ │ │ └── drag2d │ │ │ └── lib │ │ │ ├── MaterialEasing.java │ │ │ ├── MaterialVelocity.java │ │ │ ├── MaterialVelocity2D.java │ │ │ └── Velocity2D.java │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Drag2DCompose │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── copyright │ │ │ ├── aosp.xml │ │ │ └── profiles_settings.xml │ │ └── kotlinc.xml │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── android │ │ │ │ └── support │ │ │ │ └── drag2d │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── Material2DMotionPreview.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ ├── build.gradle │ ├── compose-impl │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── consumer-rules.pro │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── android │ │ │ │ └── support │ │ │ │ └── drag2d │ │ │ │ └── compose │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── android │ │ │ │ └── support │ │ │ │ └── drag2d │ │ │ │ └── compose │ │ │ │ └── Material2DAnimationSpec.kt │ │ │ └── test │ │ │ └── java │ │ │ └── android │ │ │ └── support │ │ │ └── drag2d │ │ │ └── compose │ │ │ └── ExampleUnitTest.kt │ ├── engine │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── android │ │ │ └── support │ │ │ └── drag2d │ │ │ └── lib │ │ │ └── MyClass.java │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── ExampleComposeGrid │ ├── .idea │ │ ├── .gitignore │ │ └── inspectionProfiles │ │ │ └── Project_Default.xml │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── examplecomposegrid │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── examplecomposegrid │ │ │ │ │ ├── GridDslMedium.kt │ │ │ │ │ ├── GridJsonMedium.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── MotionGridDsl.kt │ │ │ │ │ ├── MotionGridJson.kt │ │ │ │ │ ├── RowColumnDsl.kt │ │ │ │ │ ├── RowColumnJson.kt │ │ │ │ │ └── ui │ │ │ │ │ └── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-anydpi-v33 │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── examplecomposegrid │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── ExamplesComposeConstraintLayout │ ├── .gitignore │ ├── .idea │ │ └── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── examplescomposeconstraintlayout │ │ │ │ ├── FlowCalendar.kt │ │ │ │ ├── FlowKeyPad.kt │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── ExamplesComposeMotionLayout │ ├── .gitignore │ ├── .idea │ │ └── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── examplescomposemotionlayout │ │ │ │ ├── CollapsingToolbarDsl.kt │ │ │ │ ├── CollapsingToolbarJson.kt │ │ │ │ ├── CollapsingToolbarLazyDsl.kt │ │ │ │ ├── CollapsingToolbarLazyJson.kt │ │ │ │ ├── DynamicGraph.kt │ │ │ │ ├── M1FlyIn.kt │ │ │ │ ├── M2DragReveal.kt │ │ │ │ ├── M3MultState.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MotionImage.kt │ │ │ │ ├── MotionInLazyColumnDsl.kt │ │ │ │ ├── MotionInLazyColumnJson.kt │ │ │ │ ├── MotionPager.kt │ │ │ │ ├── Puzzle.kt │ │ │ │ └── ReactionSelecor.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── bridge.jpg │ │ │ ├── ic_launcher_background.xml │ │ │ ├── menu.xml │ │ │ └── pepper.jpg │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── ExamplesMotionLayout │ ├── .idea │ │ ├── .gitignore │ │ └── deploymentTargetDropDown.xml │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── motionrecycle │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── add_circle.xml │ │ │ ├── cart.xml │ │ │ ├── exit.xml │ │ │ ├── expand_icon.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── list.xml │ │ │ ├── mail.xml │ │ │ ├── power.xml │ │ │ └── search.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── circular_menu.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values │ │ │ └── styles.xml │ │ │ └── xml │ │ │ ├── circular_menu_scene.xml │ │ │ └── tmp_scene.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── ExamplesRecyclerView │ ├── .idea │ │ ├── .gitignore │ │ └── .name │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── motionrecycle │ │ │ │ ├── BinaryLights.java │ │ │ │ ├── CalendarRecycler.java │ │ │ │ ├── CalendarRecycler2.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MotionRecycler1.java │ │ │ │ ├── MotionRecycler2.java │ │ │ │ ├── RecyclerToDetailView.java │ │ │ │ └── TwoRecycler.java │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── expand_icon.xml │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── binary_lights.xml │ │ │ ├── calendar.xml │ │ │ ├── calendar_entries.xml │ │ │ ├── calendar_motion.xml │ │ │ ├── lock_recycler_item.xml │ │ │ ├── motion_item.xml │ │ │ ├── recycler_to_detail.xml │ │ │ ├── recycler_to_detail_item.xml │ │ │ ├── recycler_two.xml │ │ │ ├── row_item_horizontal.xml │ │ │ └── timer_item.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values │ │ │ └── styles.xml │ │ │ └── xml │ │ │ ├── binary_lights_scene.xml │ │ │ ├── calendar_motion_scene.xml │ │ │ ├── lock_recycler_item_scene.xml │ │ │ ├── motion_item_scene.xml │ │ │ ├── recycle_two_scene.xml │ │ │ ├── recycler_to_detail_item_scene.xml │ │ │ ├── recycler_to_detail_scene.xml │ │ │ └── timer_item_scene.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── MotionDemos │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ └── inspectionProfiles │ │ │ └── Project_Default.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── androidx │ │ │ │ └── demo │ │ │ │ └── motiondemos │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── androidx │ │ │ │ │ └── demo │ │ │ │ │ └── motiondemos │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── MainActivity_start.kt │ │ │ │ │ └── ui │ │ │ │ │ └── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── androidx │ │ │ └── demo │ │ │ └── motiondemos │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── OpenGLEsGraph3D │ ├── .idea │ │ ├── .gitignore │ │ └── .name │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── android │ │ │ │ └── support │ │ │ │ ├── constraintLayout │ │ │ │ └── extlib │ │ │ │ │ └── graph3d │ │ │ │ │ ├── Graph.java │ │ │ │ │ ├── Matrix.java │ │ │ │ │ ├── Object3D.java │ │ │ │ │ ├── Quaternion.java │ │ │ │ │ ├── Scene3D.java │ │ │ │ │ ├── VectorUtil.java │ │ │ │ │ ├── ViewMatrix.java │ │ │ │ │ └── objects │ │ │ │ │ ├── AxisBox.java │ │ │ │ │ └── Surface3D.java │ │ │ │ └── viewsgraph3d │ │ │ │ ├── Graph3DGLView.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── Object3DGL.java │ │ │ │ ├── SurfaceGL.java │ │ │ │ └── glcheck │ │ │ │ ├── BoxGL.java │ │ │ │ └── GLActivity.java │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_gl_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-anydpi-v33 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── README.md └── ViewsGraph3d │ ├── .gitignore │ ├── .idea │ └── .gitignore │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── android │ │ │ └── support │ │ │ └── viewsgraph3d │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── android │ │ │ │ └── support │ │ │ │ ├── constraintLayout │ │ │ │ └── extlib │ │ │ │ │ └── graph3d │ │ │ │ │ ├── Graph.java │ │ │ │ │ ├── Matrix.java │ │ │ │ │ ├── Object3D.java │ │ │ │ │ ├── Quaternion.java │ │ │ │ │ ├── Scene3D.java │ │ │ │ │ ├── VectorUtil.java │ │ │ │ │ ├── ViewMatrix.java │ │ │ │ │ └── objects │ │ │ │ │ ├── AxisBox.java │ │ │ │ │ └── Surface3D.java │ │ │ │ └── viewsgraph3d │ │ │ │ ├── Graph3DView.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-anydpi-v33 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── android │ │ └── support │ │ └── viewsgraph3d │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── desktop ├── ConstraintLayoutInspector │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── artifacts │ │ │ ├── ConstraintLayoutInspector_jar3.xml │ │ │ └── ConstraintLayoutInspector_jar4.xml │ │ ├── codeStyles │ │ │ ├── Project.xml │ │ │ └── codeStyleConfig.xml │ │ ├── kotlinc.xml │ │ ├── runConfigurations │ │ │ └── ConstraintLayoutInspector.xml │ │ └── uiDesigner.xml │ ├── README.md │ ├── app │ │ └── src │ │ │ └── androidx │ │ │ └── constraintLayout │ │ │ └── desktop │ │ │ ├── constraintRendering │ │ │ ├── ConstraintLayoutDecorator.java │ │ │ ├── DecoratorUtilities.java │ │ │ ├── DisplayList.java │ │ │ ├── DrawConnection.java │ │ │ ├── DrawConnectionUtils.java │ │ │ ├── ImageViewDecorator.java │ │ │ ├── SceneContext.java │ │ │ ├── SceneDisplayListTest2.java │ │ │ ├── SceneDisplayListTest3.java │ │ │ ├── SceneDisplayListTest5.java │ │ │ ├── SceneDisplayListTest6.java │ │ │ ├── SceneDisplayListTestToolsAttr.java │ │ │ ├── draw │ │ │ │ ├── ColorSet.java │ │ │ │ ├── DisplayList.java │ │ │ │ ├── DrawCommand.java │ │ │ │ ├── DrawComponentBackground.java │ │ │ │ ├── DrawComponentFrame.java │ │ │ │ ├── DrawRegion.java │ │ │ │ ├── DrawTextRegion.java │ │ │ │ ├── FancyStroke.java │ │ │ │ └── test │ │ │ │ │ ├── CheckDisplayList.java │ │ │ │ │ └── CheckFancyStroke.java │ │ │ ├── drawing │ │ │ │ ├── BlueprintColorSet.java │ │ │ │ ├── ConnectionDraw.java │ │ │ │ ├── ViewTransform.java │ │ │ │ ├── WidgetDraw.java │ │ │ │ └── decorator │ │ │ │ │ ├── ColorTheme.java │ │ │ │ │ ├── TextWidgetConstants.java │ │ │ │ │ └── WidgetDecoratorConstants.java │ │ │ └── layout3d │ │ │ │ ├── CheckLayout3d.java │ │ │ │ ├── Cube.java │ │ │ │ ├── Display3D.java │ │ │ │ ├── Layout.java │ │ │ │ ├── Matrix.java │ │ │ │ ├── Quaternion.java │ │ │ │ ├── Rasterize.java │ │ │ │ ├── TriData.java │ │ │ │ ├── VectorUtil.java │ │ │ │ └── ViewMatrix.java │ │ │ ├── link │ │ │ ├── DesignSurfaceModification.java │ │ │ ├── MainUI.java │ │ │ ├── MotionLink.java │ │ │ ├── Widget.java │ │ │ ├── java │ │ │ │ ├── LayoutEditor2.java │ │ │ │ ├── LayoutInspector2.java │ │ │ │ ├── LayoutView2.java │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ └── Main2.java │ │ │ └── kotlin │ │ │ │ ├── LayoutEditor.kt │ │ │ │ ├── LayoutInspector.kt │ │ │ │ ├── LayoutView.kt │ │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ │ └── Main.kt │ │ │ ├── motion │ │ │ └── graphs │ │ │ │ ├── CycleEngine.java │ │ │ │ ├── CycleGraph.java │ │ │ │ ├── CycleModel.java │ │ │ │ └── CycleParse.java │ │ │ ├── scan │ │ │ ├── CLScan.java │ │ │ ├── CLTreeNode.java │ │ │ ├── KeyFrameNodes.java │ │ │ ├── LayoutConstraints.java │ │ │ ├── LinkColors.java │ │ │ ├── SyntaxHighlight.java │ │ │ └── WidgetFrameUtils.java │ │ │ ├── ui │ │ │ ├── adapters │ │ │ │ ├── Annotations │ │ │ │ │ ├── NotNull.java │ │ │ │ │ └── Nullable.java │ │ │ │ ├── DefaultMTag.java │ │ │ │ ├── KeyFramesTag.java │ │ │ │ ├── MEComboBox.java │ │ │ │ ├── MEDimension.java │ │ │ │ ├── MEIcons.java │ │ │ │ ├── MEJTable.java │ │ │ │ ├── MEList.java │ │ │ │ ├── MEScrollPane.java │ │ │ │ ├── MEUI.java │ │ │ │ ├── MTag.java │ │ │ │ ├── MTagImp.java │ │ │ │ ├── MotionLayoutAttrs.java │ │ │ │ ├── MotionSceneAttrs.java │ │ │ │ ├── StringMTag.java │ │ │ │ ├── Track.java │ │ │ │ ├── vd │ │ │ │ │ ├── ListIcons.java │ │ │ │ │ ├── create-constraintset.xml │ │ │ │ │ ├── create-keyframe.xml │ │ │ │ │ ├── create-menu.xml │ │ │ │ │ ├── create-on-click.xml │ │ │ │ │ ├── create-on-star.xml │ │ │ │ │ ├── create-on-swipe.xml │ │ │ │ │ ├── create-transition.xml │ │ │ │ │ ├── edit-menu-disabled.xml │ │ │ │ │ ├── edit-menu.xml │ │ │ │ │ ├── end-constraint-selected.xml │ │ │ │ │ ├── end-constraint-selected_dark.xml │ │ │ │ │ ├── end-constraint.xml │ │ │ │ │ ├── end-constraint_dark.xml │ │ │ │ │ ├── go-to-end.xml │ │ │ │ │ ├── go-to-end_dark.xml │ │ │ │ │ ├── go-to-start.xml │ │ │ │ │ ├── go-to-start_dark.xml │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ ├── keyframe.xml │ │ │ │ │ ├── keyframe_dark.xml │ │ │ │ │ ├── list_gray_state.xml │ │ │ │ │ ├── list_layout.xml │ │ │ │ │ ├── list_state.xml │ │ │ │ │ ├── list_transition.xml │ │ │ │ │ ├── loop.xml │ │ │ │ │ ├── loop_dark.xml │ │ │ │ │ ├── max-scale.xml │ │ │ │ │ ├── max-scale_dark.xml │ │ │ │ │ ├── min-scale.xml │ │ │ │ │ ├── min-scale_dark.xml │ │ │ │ │ ├── next-tick.xml │ │ │ │ │ ├── next-tick_dark.xml │ │ │ │ │ ├── pause.xml │ │ │ │ │ ├── pause_dark.xml │ │ │ │ │ ├── play.xml │ │ │ │ │ ├── play_dark.xml │ │ │ │ │ ├── previous-tick.xml │ │ │ │ │ ├── previous-tick_dark.xml │ │ │ │ │ ├── resize.xml │ │ │ │ │ ├── screen_rotation.xml │ │ │ │ │ ├── slow-motion.xml │ │ │ │ │ ├── slow-motion_dark.xml │ │ │ │ │ ├── start-constraint.xml │ │ │ │ │ ├── start-constraint_dark.xml │ │ │ │ │ ├── switch-panel.xml │ │ │ │ │ ├── timeline-add.xml │ │ │ │ │ ├── timeline-add_dark.xml │ │ │ │ │ ├── timeline-end-constraint.xml │ │ │ │ │ ├── timeline-end-constraint_dark.xml │ │ │ │ │ ├── timeline-keyframe-header.xml │ │ │ │ │ ├── timeline-keyframe-header_dark.xml │ │ │ │ │ ├── timeline-keyframe-selected.xml │ │ │ │ │ ├── timeline-keyframe-selected_dark.xml │ │ │ │ │ ├── timeline-keyframe.xml │ │ │ │ │ ├── timeline-keyframe_dark.xml │ │ │ │ │ ├── timeline-start-constraint-selected.xml │ │ │ │ │ ├── timeline-start-constraint-selected_dark.xml │ │ │ │ │ ├── timeline-start-constraint.xml │ │ │ │ │ ├── timeline-start-constraint_dark.xml │ │ │ │ │ ├── view-stack-horizontal.xml │ │ │ │ │ ├── view-stack-one.xml │ │ │ │ │ └── view-stack-vertical.xml │ │ │ │ └── vg │ │ │ │ │ ├── SVGGroupNode.java │ │ │ │ │ ├── SVGLeaveNode.java │ │ │ │ │ ├── SVGTree.java │ │ │ │ │ ├── VDGroup.java │ │ │ │ │ ├── VDIcon.java │ │ │ │ │ ├── VDNodeRender.java │ │ │ │ │ ├── VDParser.java │ │ │ │ │ ├── VDPath.java │ │ │ │ │ └── VDTree.java │ │ │ ├── timeline │ │ │ │ ├── GraphRender.java │ │ │ │ ├── TickMarkCalculator.java │ │ │ │ ├── TimeLinePanel.java │ │ │ │ ├── TimeLineRow.java │ │ │ │ ├── TimeLineRowData.java │ │ │ │ ├── TimeLineTopLeft.java │ │ │ │ ├── TimeLineTopPanel.java │ │ │ │ ├── TimelineStructure.java │ │ │ │ └── graph │ │ │ │ │ ├── Easing.java │ │ │ │ │ ├── Interpolator.java │ │ │ │ │ ├── LinearInterpolator.java │ │ │ │ │ ├── MonotoneSpline.java │ │ │ │ │ └── Oscillator.java │ │ │ ├── ui │ │ │ │ ├── MTagActionListener.java │ │ │ │ ├── MeModel.java │ │ │ │ ├── MotionAttributes.java │ │ │ │ ├── MotionEditorSelector.java │ │ │ │ ├── MotionSceneUtils.java │ │ │ │ ├── NlComponentTag.java │ │ │ │ └── Utils.java │ │ │ └── utils │ │ │ │ ├── Debug.java │ │ │ │ └── ListIcons.java │ │ │ └── utils │ │ │ ├── Desk.java │ │ │ ├── ScenePicker.java │ │ │ └── WidgetAttributes.java │ └── images │ │ ├── guideline-horiz.png │ │ ├── guideline-vert.png │ │ └── resize.png ├── CycleEditor │ ├── README.md │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ │ ├── main │ │ └── java │ │ │ └── androidx │ │ │ └── motionlayout │ │ │ └── cycleEditor │ │ │ ├── AnimationPanel.java │ │ │ ├── CycleEdit.java │ │ │ ├── CycleModel.java │ │ │ ├── CycleSetModel.java │ │ │ ├── CycleView.java │ │ │ ├── Easing.java │ │ │ ├── HyperSpline.java │ │ │ ├── Interpolator.java │ │ │ ├── KeyCycleExamples.java │ │ │ ├── LinearInterpolator.java │ │ │ ├── MainPanel.java │ │ │ ├── MonotoneSpline.java │ │ │ └── Oscillator.java │ │ └── test │ │ └── java │ │ └── androidx │ │ └── motionlayout │ │ └── cycleeditor │ │ └── SampleTest.java ├── MotionLayoutCoreValidation │ └── .idea │ │ └── .gitignore ├── PlotTool │ ├── .idea │ │ ├── .gitignore │ │ ├── kotlinc.xml │ │ └── uiDesigner.xml │ ├── out │ │ └── production │ │ │ └── PlotTool │ │ │ └── META-INF │ │ │ └── PlotTool.kotlin_module │ └── src │ │ └── main │ │ └── kotlin │ │ ├── Main.kt │ │ └── androidx │ │ └── constraintlayout │ │ └── desktop │ │ ├── graph │ │ ├── ControlPanel.java │ │ ├── GifWriter.java │ │ ├── GraphEngine.java │ │ └── Utils.java │ │ └── graphdemos │ │ ├── DemoMonotonicSpline.java │ │ ├── GiffTest.java │ │ ├── GrapMonoSpline.java │ │ ├── Simple.java │ │ ├── splineEngines │ │ ├── ArcCurveFit.java │ │ ├── LinearRegression.java │ │ ├── MonoSpline.java │ │ └── Spline.java │ │ └── utils │ │ ├── ArcCurveFit.java │ │ ├── CurveFit.java │ │ ├── DifferentialInterpolator.java │ │ ├── Easing.java │ │ ├── FloatRect.java │ │ ├── HyperSpline.java │ │ ├── KeyCache.java │ │ ├── LinearCurveFit.java │ │ ├── MonotonicCurveFit.java │ │ ├── Oscillator.java │ │ ├── Rect.java │ │ ├── Schlick.java │ │ ├── SpringStopEngine.java │ │ ├── StepCurve.java │ │ ├── StopEngine.java │ │ ├── StopLogicEngine.java │ │ ├── TypedBundle.java │ │ ├── TypedValues.java │ │ └── Utils.java ├── SwingDemo │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── artifacts │ │ │ └── ConstraintLayoutInspector_jar.xml │ │ ├── codeStyles │ │ │ ├── Project.xml │ │ │ └── codeStyleConfig.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── kotlinc.xml │ │ ├── runConfigurations │ │ │ └── ConstraintLayoutInspector.xml │ │ └── uiDesigner.xml │ ├── META-INF │ │ └── MANIFEST.MF │ ├── README.md │ └── app │ │ └── src │ │ └── androidx │ │ └── constraintLayout │ │ └── desktop │ │ └── motion │ │ ├── SwingDemo1.java │ │ ├── SwingDemo2.java │ │ ├── SwingDemo3.java │ │ ├── SwingDemo4.java │ │ └── SwingDemo5.java ├── ValidationTool │ ├── README.md │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── references-v1 │ │ ├── check_000_MATCH_MATCH.json │ │ ├── check_000_MATCH_WRAP.json │ │ ├── check_000_WRAP_MATCH.json │ │ ├── check_000_WRAP_WRAP.json │ │ ├── check_001_MATCH_MATCH.json │ │ ├── check_001_MATCH_WRAP.json │ │ ├── check_001_WRAP_MATCH.json │ │ ├── check_001_WRAP_WRAP.json │ │ ├── check_002_MATCH_MATCH.json │ │ ├── check_002_MATCH_WRAP.json │ │ ├── check_002_WRAP_MATCH.json │ │ ├── check_002_WRAP_WRAP.json │ │ ├── check_003_MATCH_MATCH.json │ │ ├── check_003_MATCH_WRAP.json │ │ ├── check_003_WRAP_MATCH.json │ │ ├── check_003_WRAP_WRAP.json │ │ ├── check_004_MATCH_MATCH.json │ │ ├── check_004_MATCH_WRAP.json │ │ ├── check_004_WRAP_MATCH.json │ │ ├── check_004_WRAP_WRAP.json │ │ ├── check_005_MATCH_MATCH.json │ │ ├── check_005_MATCH_WRAP.json │ │ ├── check_005_WRAP_MATCH.json │ │ ├── check_005_WRAP_WRAP.json │ │ ├── check_006_MATCH_MATCH.json │ │ ├── check_006_MATCH_WRAP.json │ │ ├── check_006_WRAP_MATCH.json │ │ ├── check_006_WRAP_WRAP.json │ │ ├── check_007_MATCH_MATCH.json │ │ ├── check_007_MATCH_WRAP.json │ │ ├── check_007_WRAP_MATCH.json │ │ ├── check_007_WRAP_WRAP.json │ │ ├── check_008_MATCH_MATCH.json │ │ ├── check_008_MATCH_WRAP.json │ │ ├── check_008_WRAP_MATCH.json │ │ ├── check_008_WRAP_WRAP.json │ │ ├── check_009_MATCH_MATCH.json │ │ ├── check_009_MATCH_WRAP.json │ │ ├── check_009_WRAP_MATCH.json │ │ ├── check_009_WRAP_WRAP.json │ │ ├── check_010_MATCH_MATCH.json │ │ ├── check_010_MATCH_WRAP.json │ │ ├── check_010_WRAP_MATCH.json │ │ ├── check_010_WRAP_WRAP.json │ │ ├── check_011_MATCH_MATCH.json │ │ ├── check_011_MATCH_WRAP.json │ │ ├── check_011_WRAP_MATCH.json │ │ ├── check_011_WRAP_WRAP.json │ │ ├── check_012_MATCH_MATCH.json │ │ ├── check_012_MATCH_WRAP.json │ │ ├── check_012_WRAP_MATCH.json │ │ ├── check_012_WRAP_WRAP.json │ │ ├── check_013_MATCH_MATCH.json │ │ ├── check_013_MATCH_WRAP.json │ │ ├── check_013_WRAP_MATCH.json │ │ ├── check_013_WRAP_WRAP.json │ │ ├── check_014_MATCH_MATCH.json │ │ ├── check_014_MATCH_WRAP.json │ │ ├── check_014_WRAP_MATCH.json │ │ ├── check_014_WRAP_WRAP.json │ │ ├── check_015_MATCH_MATCH.json │ │ ├── check_015_MATCH_WRAP.json │ │ ├── check_015_WRAP_MATCH.json │ │ ├── check_015_WRAP_WRAP.json │ │ ├── check_016_MATCH_MATCH.json │ │ ├── check_016_MATCH_WRAP.json │ │ ├── check_016_WRAP_MATCH.json │ │ ├── check_016_WRAP_WRAP.json │ │ ├── check_017_MATCH_MATCH.json │ │ ├── check_017_MATCH_WRAP.json │ │ ├── check_017_WRAP_MATCH.json │ │ ├── check_017_WRAP_WRAP.json │ │ ├── check_018_MATCH_MATCH.json │ │ ├── check_018_MATCH_WRAP.json │ │ ├── check_018_WRAP_MATCH.json │ │ ├── check_018_WRAP_WRAP.json │ │ ├── check_019_MATCH_MATCH.json │ │ ├── check_019_MATCH_WRAP.json │ │ ├── check_019_WRAP_MATCH.json │ │ ├── check_019_WRAP_WRAP.json │ │ ├── check_020_MATCH_MATCH.json │ │ ├── check_020_MATCH_WRAP.json │ │ ├── check_020_WRAP_MATCH.json │ │ ├── check_020_WRAP_WRAP.json │ │ ├── check_021_MATCH_MATCH.json │ │ ├── check_021_MATCH_WRAP.json │ │ ├── check_021_WRAP_MATCH.json │ │ ├── check_021_WRAP_WRAP.json │ │ ├── check_022_MATCH_MATCH.json │ │ ├── check_022_MATCH_WRAP.json │ │ ├── check_022_WRAP_MATCH.json │ │ ├── check_022_WRAP_WRAP.json │ │ ├── check_023_MATCH_MATCH.json │ │ ├── check_023_MATCH_WRAP.json │ │ ├── check_023_WRAP_MATCH.json │ │ ├── check_023_WRAP_WRAP.json │ │ ├── check_024_MATCH_MATCH.json │ │ ├── check_024_MATCH_WRAP.json │ │ ├── check_024_WRAP_MATCH.json │ │ ├── check_024_WRAP_WRAP.json │ │ ├── check_025_MATCH_MATCH.json │ │ ├── check_025_MATCH_WRAP.json │ │ ├── check_025_WRAP_MATCH.json │ │ ├── check_025_WRAP_WRAP.json │ │ ├── check_026_MATCH_MATCH.json │ │ ├── check_026_MATCH_WRAP.json │ │ ├── check_026_WRAP_MATCH.json │ │ ├── check_026_WRAP_WRAP.json │ │ ├── check_027_MATCH_MATCH.json │ │ ├── check_027_MATCH_WRAP.json │ │ ├── check_027_WRAP_MATCH.json │ │ ├── check_027_WRAP_WRAP.json │ │ ├── check_028_MATCH_MATCH.json │ │ ├── check_028_MATCH_WRAP.json │ │ ├── check_028_WRAP_MATCH.json │ │ ├── check_028_WRAP_WRAP.json │ │ ├── check_029_MATCH_MATCH.json │ │ ├── check_029_MATCH_WRAP.json │ │ ├── check_029_WRAP_MATCH.json │ │ ├── check_029_WRAP_WRAP.json │ │ ├── check_030_MATCH_MATCH.json │ │ ├── check_030_MATCH_WRAP.json │ │ ├── check_030_WRAP_MATCH.json │ │ ├── check_030_WRAP_WRAP.json │ │ ├── check_031_MATCH_MATCH.json │ │ ├── check_031_MATCH_WRAP.json │ │ ├── check_031_WRAP_MATCH.json │ │ ├── check_031_WRAP_WRAP.json │ │ ├── check_032_MATCH_MATCH.json │ │ ├── check_032_MATCH_WRAP.json │ │ ├── check_032_WRAP_MATCH.json │ │ ├── check_032_WRAP_WRAP.json │ │ ├── check_033_MATCH_MATCH.json │ │ ├── check_033_MATCH_WRAP.json │ │ ├── check_033_WRAP_MATCH.json │ │ ├── check_033_WRAP_WRAP.json │ │ ├── check_034_MATCH_MATCH.json │ │ ├── check_034_MATCH_WRAP.json │ │ ├── check_034_WRAP_MATCH.json │ │ ├── check_034_WRAP_WRAP.json │ │ ├── check_035_MATCH_MATCH.json │ │ ├── check_035_MATCH_WRAP.json │ │ ├── check_035_WRAP_MATCH.json │ │ ├── check_035_WRAP_WRAP.json │ │ ├── check_036_MATCH_MATCH.json │ │ ├── check_036_MATCH_WRAP.json │ │ ├── check_036_WRAP_MATCH.json │ │ ├── check_036_WRAP_WRAP.json │ │ ├── check_037_MATCH_MATCH.json │ │ ├── check_037_MATCH_WRAP.json │ │ ├── check_037_WRAP_MATCH.json │ │ ├── check_037_WRAP_WRAP.json │ │ ├── check_038_MATCH_MATCH.json │ │ ├── check_038_MATCH_WRAP.json │ │ ├── check_038_WRAP_MATCH.json │ │ ├── check_038_WRAP_WRAP.json │ │ ├── check_039_MATCH_MATCH.json │ │ ├── check_039_MATCH_WRAP.json │ │ ├── check_039_WRAP_MATCH.json │ │ ├── check_039_WRAP_WRAP.json │ │ ├── check_040_MATCH_MATCH.json │ │ ├── check_040_MATCH_WRAP.json │ │ ├── check_040_WRAP_MATCH.json │ │ ├── check_040_WRAP_WRAP.json │ │ ├── check_041_MATCH_MATCH.json │ │ ├── check_041_MATCH_WRAP.json │ │ ├── check_041_WRAP_MATCH.json │ │ ├── check_041_WRAP_WRAP.json │ │ ├── check_042_MATCH_MATCH.json │ │ ├── check_042_MATCH_WRAP.json │ │ ├── check_042_WRAP_MATCH.json │ │ ├── check_042_WRAP_WRAP.json │ │ ├── check_043_MATCH_MATCH.json │ │ ├── check_043_MATCH_WRAP.json │ │ ├── check_043_WRAP_MATCH.json │ │ ├── check_043_WRAP_WRAP.json │ │ ├── check_044_MATCH_MATCH.json │ │ ├── check_044_MATCH_WRAP.json │ │ ├── check_044_WRAP_MATCH.json │ │ ├── check_044_WRAP_WRAP.json │ │ ├── check_045_MATCH_MATCH.json │ │ ├── check_045_MATCH_WRAP.json │ │ ├── check_045_WRAP_MATCH.json │ │ ├── check_045_WRAP_WRAP.json │ │ ├── check_046_MATCH_MATCH.json │ │ ├── check_046_MATCH_WRAP.json │ │ ├── check_046_WRAP_MATCH.json │ │ ├── check_046_WRAP_WRAP.json │ │ ├── check_047_MATCH_MATCH.json │ │ ├── check_047_MATCH_WRAP.json │ │ ├── check_047_WRAP_MATCH.json │ │ ├── check_047_WRAP_WRAP.json │ │ ├── check_048_MATCH_MATCH.json │ │ ├── check_048_MATCH_WRAP.json │ │ ├── check_048_WRAP_MATCH.json │ │ ├── check_048_WRAP_WRAP.json │ │ ├── check_049_MATCH_MATCH.json │ │ ├── check_049_MATCH_WRAP.json │ │ ├── check_049_WRAP_MATCH.json │ │ ├── check_049_WRAP_WRAP.json │ │ ├── check_050_MATCH_MATCH.json │ │ ├── check_050_MATCH_WRAP.json │ │ ├── check_050_WRAP_MATCH.json │ │ ├── check_050_WRAP_WRAP.json │ │ ├── check_051_MATCH_MATCH.json │ │ ├── check_051_MATCH_WRAP.json │ │ ├── check_051_WRAP_MATCH.json │ │ ├── check_051_WRAP_WRAP.json │ │ ├── check_052_MATCH_MATCH.json │ │ ├── check_052_MATCH_WRAP.json │ │ ├── check_052_WRAP_MATCH.json │ │ ├── check_052_WRAP_WRAP.json │ │ ├── check_053_MATCH_MATCH.json │ │ ├── check_053_MATCH_WRAP.json │ │ ├── check_053_WRAP_MATCH.json │ │ ├── check_053_WRAP_WRAP.json │ │ ├── check_054_MATCH_MATCH.json │ │ ├── check_054_MATCH_WRAP.json │ │ ├── check_054_WRAP_MATCH.json │ │ ├── check_054_WRAP_WRAP.json │ │ ├── check_055_MATCH_MATCH.json │ │ ├── check_055_MATCH_WRAP.json │ │ ├── check_055_WRAP_MATCH.json │ │ ├── check_055_WRAP_WRAP.json │ │ ├── check_056_MATCH_MATCH.json │ │ ├── check_056_MATCH_WRAP.json │ │ ├── check_056_WRAP_MATCH.json │ │ ├── check_056_WRAP_WRAP.json │ │ ├── check_057_MATCH_MATCH.json │ │ ├── check_057_MATCH_WRAP.json │ │ ├── check_057_WRAP_MATCH.json │ │ ├── check_057_WRAP_WRAP.json │ │ ├── check_058_MATCH_MATCH.json │ │ ├── check_058_MATCH_WRAP.json │ │ ├── check_058_WRAP_MATCH.json │ │ ├── check_058_WRAP_WRAP.json │ │ ├── check_059_MATCH_MATCH.json │ │ ├── check_059_MATCH_WRAP.json │ │ ├── check_059_WRAP_MATCH.json │ │ ├── check_059_WRAP_WRAP.json │ │ ├── check_060_MATCH_MATCH.json │ │ ├── check_060_MATCH_WRAP.json │ │ ├── check_060_WRAP_MATCH.json │ │ ├── check_060_WRAP_WRAP.json │ │ ├── check_061_MATCH_MATCH.json │ │ ├── check_061_MATCH_WRAP.json │ │ ├── check_061_WRAP_MATCH.json │ │ ├── check_061_WRAP_WRAP.json │ │ ├── check_062_MATCH_MATCH.json │ │ ├── check_062_MATCH_WRAP.json │ │ ├── check_062_WRAP_MATCH.json │ │ ├── check_062_WRAP_WRAP.json │ │ ├── check_063_MATCH_MATCH.json │ │ ├── check_063_MATCH_WRAP.json │ │ ├── check_063_WRAP_MATCH.json │ │ ├── check_063_WRAP_WRAP.json │ │ ├── check_064_MATCH_MATCH.json │ │ ├── check_064_MATCH_WRAP.json │ │ ├── check_064_WRAP_MATCH.json │ │ ├── check_064_WRAP_WRAP.json │ │ ├── check_065_MATCH_MATCH.json │ │ ├── check_065_MATCH_WRAP.json │ │ ├── check_065_WRAP_MATCH.json │ │ ├── check_065_WRAP_WRAP.json │ │ ├── check_066_MATCH_MATCH.json │ │ ├── check_066_MATCH_WRAP.json │ │ ├── check_066_WRAP_MATCH.json │ │ ├── check_066_WRAP_WRAP.json │ │ ├── check_067_MATCH_MATCH.json │ │ ├── check_067_MATCH_WRAP.json │ │ ├── check_067_WRAP_MATCH.json │ │ ├── check_067_WRAP_WRAP.json │ │ ├── check_068_MATCH_MATCH.json │ │ ├── check_068_MATCH_WRAP.json │ │ ├── check_068_WRAP_MATCH.json │ │ ├── check_068_WRAP_WRAP.json │ │ ├── check_069_MATCH_MATCH.json │ │ ├── check_069_MATCH_WRAP.json │ │ ├── check_069_WRAP_MATCH.json │ │ ├── check_069_WRAP_WRAP.json │ │ ├── check_070_MATCH_MATCH.json │ │ ├── check_070_MATCH_WRAP.json │ │ ├── check_070_WRAP_MATCH.json │ │ ├── check_070_WRAP_WRAP.json │ │ ├── check_071_MATCH_MATCH.json │ │ ├── check_071_MATCH_WRAP.json │ │ ├── check_071_WRAP_MATCH.json │ │ ├── check_071_WRAP_WRAP.json │ │ ├── check_072_MATCH_MATCH.json │ │ ├── check_072_MATCH_WRAP.json │ │ ├── check_072_WRAP_MATCH.json │ │ ├── check_072_WRAP_WRAP.json │ │ ├── check_073_MATCH_MATCH.json │ │ ├── check_073_MATCH_WRAP.json │ │ ├── check_073_WRAP_MATCH.json │ │ ├── check_073_WRAP_WRAP.json │ │ ├── check_074_MATCH_MATCH.json │ │ ├── check_074_MATCH_WRAP.json │ │ ├── check_074_WRAP_MATCH.json │ │ ├── check_074_WRAP_WRAP.json │ │ ├── check_075_MATCH_MATCH.json │ │ ├── check_075_MATCH_WRAP.json │ │ ├── check_075_WRAP_MATCH.json │ │ ├── check_075_WRAP_WRAP.json │ │ ├── check_076_MATCH_MATCH.json │ │ ├── check_076_MATCH_WRAP.json │ │ ├── check_076_WRAP_MATCH.json │ │ ├── check_076_WRAP_WRAP.json │ │ ├── check_077_MATCH_MATCH.json │ │ ├── check_077_MATCH_WRAP.json │ │ ├── check_077_WRAP_MATCH.json │ │ ├── check_077_WRAP_WRAP.json │ │ ├── check_078_MATCH_MATCH.json │ │ ├── check_078_MATCH_WRAP.json │ │ ├── check_078_WRAP_MATCH.json │ │ ├── check_078_WRAP_WRAP.json │ │ ├── check_079_MATCH_MATCH.json │ │ ├── check_079_MATCH_WRAP.json │ │ ├── check_079_WRAP_MATCH.json │ │ ├── check_079_WRAP_WRAP.json │ │ ├── check_080_MATCH_MATCH.json │ │ ├── check_080_MATCH_WRAP.json │ │ ├── check_080_WRAP_MATCH.json │ │ ├── check_080_WRAP_WRAP.json │ │ ├── check_081_MATCH_MATCH.json │ │ ├── check_081_MATCH_WRAP.json │ │ ├── check_081_WRAP_MATCH.json │ │ ├── check_081_WRAP_WRAP.json │ │ ├── check_082_MATCH_MATCH.json │ │ ├── check_082_MATCH_WRAP.json │ │ ├── check_082_WRAP_MATCH.json │ │ ├── check_082_WRAP_WRAP.json │ │ ├── check_083_MATCH_MATCH.json │ │ ├── check_083_MATCH_WRAP.json │ │ ├── check_083_WRAP_MATCH.json │ │ ├── check_083_WRAP_WRAP.json │ │ ├── check_084_MATCH_MATCH.json │ │ ├── check_084_MATCH_WRAP.json │ │ ├── check_084_WRAP_MATCH.json │ │ ├── check_084_WRAP_WRAP.json │ │ ├── check_085_MATCH_MATCH.json │ │ ├── check_085_MATCH_WRAP.json │ │ ├── check_085_WRAP_MATCH.json │ │ ├── check_085_WRAP_WRAP.json │ │ ├── check_086_MATCH_MATCH.json │ │ ├── check_086_MATCH_WRAP.json │ │ ├── check_086_WRAP_MATCH.json │ │ ├── check_086_WRAP_WRAP.json │ │ ├── check_087_MATCH_MATCH.json │ │ ├── check_087_MATCH_WRAP.json │ │ ├── check_087_WRAP_MATCH.json │ │ ├── check_087_WRAP_WRAP.json │ │ ├── check_088_MATCH_MATCH.json │ │ ├── check_088_MATCH_WRAP.json │ │ ├── check_088_WRAP_MATCH.json │ │ ├── check_088_WRAP_WRAP.json │ │ ├── check_089_MATCH_MATCH.json │ │ ├── check_089_MATCH_WRAP.json │ │ ├── check_089_WRAP_MATCH.json │ │ ├── check_089_WRAP_WRAP.json │ │ ├── check_090_MATCH_MATCH.json │ │ ├── check_090_MATCH_WRAP.json │ │ ├── check_090_WRAP_MATCH.json │ │ ├── check_090_WRAP_WRAP.json │ │ ├── check_091_MATCH_MATCH.json │ │ ├── check_091_MATCH_WRAP.json │ │ ├── check_091_WRAP_MATCH.json │ │ ├── check_091_WRAP_WRAP.json │ │ ├── check_092_MATCH_MATCH.json │ │ ├── check_092_MATCH_WRAP.json │ │ ├── check_092_WRAP_MATCH.json │ │ ├── check_092_WRAP_WRAP.json │ │ ├── check_093_MATCH_MATCH.json │ │ ├── check_093_MATCH_WRAP.json │ │ ├── check_093_WRAP_MATCH.json │ │ ├── check_093_WRAP_WRAP.json │ │ ├── check_094_MATCH_MATCH.json │ │ ├── check_094_MATCH_WRAP.json │ │ ├── check_094_WRAP_MATCH.json │ │ ├── check_094_WRAP_WRAP.json │ │ ├── check_095_MATCH_MATCH.json │ │ ├── check_095_MATCH_WRAP.json │ │ ├── check_095_WRAP_MATCH.json │ │ ├── check_095_WRAP_WRAP.json │ │ ├── check_096_MATCH_MATCH.json │ │ ├── check_096_MATCH_WRAP.json │ │ ├── check_096_WRAP_MATCH.json │ │ ├── check_096_WRAP_WRAP.json │ │ ├── check_097_MATCH_MATCH.json │ │ ├── check_097_MATCH_WRAP.json │ │ ├── check_097_WRAP_MATCH.json │ │ ├── check_097_WRAP_WRAP.json │ │ ├── check_098_MATCH_MATCH.json │ │ ├── check_098_MATCH_WRAP.json │ │ ├── check_098_WRAP_MATCH.json │ │ ├── check_098_WRAP_WRAP.json │ │ ├── check_099_MATCH_MATCH.json │ │ ├── check_099_MATCH_WRAP.json │ │ ├── check_099_WRAP_MATCH.json │ │ ├── check_099_WRAP_WRAP.json │ │ ├── check_100_MATCH_MATCH.json │ │ ├── check_100_MATCH_WRAP.json │ │ ├── check_100_WRAP_MATCH.json │ │ ├── check_100_WRAP_WRAP.json │ │ ├── check_101_MATCH_MATCH.json │ │ ├── check_101_MATCH_WRAP.json │ │ ├── check_101_WRAP_MATCH.json │ │ ├── check_101_WRAP_WRAP.json │ │ ├── check_102_MATCH_MATCH.json │ │ ├── check_102_MATCH_WRAP.json │ │ ├── check_102_WRAP_MATCH.json │ │ ├── check_102_WRAP_WRAP.json │ │ ├── check_103_MATCH_MATCH.json │ │ ├── check_103_MATCH_WRAP.json │ │ ├── check_103_WRAP_MATCH.json │ │ ├── check_103_WRAP_WRAP.json │ │ ├── check_104_MATCH_MATCH.json │ │ ├── check_104_MATCH_WRAP.json │ │ ├── check_104_WRAP_MATCH.json │ │ ├── check_104_WRAP_WRAP.json │ │ ├── check_105_MATCH_MATCH.json │ │ ├── check_105_MATCH_WRAP.json │ │ ├── check_105_WRAP_MATCH.json │ │ ├── check_105_WRAP_WRAP.json │ │ ├── check_106_MATCH_MATCH.json │ │ ├── check_106_MATCH_WRAP.json │ │ ├── check_106_WRAP_MATCH.json │ │ ├── check_106_WRAP_WRAP.json │ │ ├── check_107_MATCH_MATCH.json │ │ ├── check_107_MATCH_WRAP.json │ │ ├── check_107_WRAP_MATCH.json │ │ ├── check_107_WRAP_WRAP.json │ │ ├── check_108_MATCH_MATCH.json │ │ ├── check_108_MATCH_WRAP.json │ │ ├── check_108_WRAP_MATCH.json │ │ ├── check_108_WRAP_WRAP.json │ │ ├── check_109_MATCH_MATCH.json │ │ ├── check_109_MATCH_WRAP.json │ │ ├── check_109_WRAP_MATCH.json │ │ ├── check_109_WRAP_WRAP.json │ │ ├── check_110_MATCH_MATCH.json │ │ ├── check_110_MATCH_WRAP.json │ │ ├── check_110_WRAP_MATCH.json │ │ ├── check_110_WRAP_WRAP.json │ │ ├── check_111_MATCH_MATCH.json │ │ ├── check_111_MATCH_WRAP.json │ │ ├── check_111_WRAP_MATCH.json │ │ ├── check_111_WRAP_WRAP.json │ │ ├── check_112_MATCH_MATCH.json │ │ ├── check_112_MATCH_WRAP.json │ │ ├── check_112_WRAP_MATCH.json │ │ ├── check_112_WRAP_WRAP.json │ │ ├── check_113_MATCH_MATCH.json │ │ ├── check_113_MATCH_WRAP.json │ │ ├── check_113_WRAP_MATCH.json │ │ ├── check_113_WRAP_WRAP.json │ │ ├── check_114_MATCH_MATCH.json │ │ ├── check_114_MATCH_WRAP.json │ │ ├── check_114_WRAP_MATCH.json │ │ ├── check_114_WRAP_WRAP.json │ │ ├── check_115_MATCH_MATCH.json │ │ ├── check_115_MATCH_WRAP.json │ │ ├── check_115_WRAP_MATCH.json │ │ ├── check_115_WRAP_WRAP.json │ │ ├── check_116_MATCH_MATCH.json │ │ ├── check_116_MATCH_WRAP.json │ │ ├── check_116_WRAP_MATCH.json │ │ ├── check_116_WRAP_WRAP.json │ │ ├── check_117_MATCH_MATCH.json │ │ ├── check_117_MATCH_WRAP.json │ │ ├── check_117_WRAP_MATCH.json │ │ ├── check_117_WRAP_WRAP.json │ │ ├── check_118_MATCH_MATCH.json │ │ ├── check_118_MATCH_WRAP.json │ │ ├── check_118_WRAP_MATCH.json │ │ ├── check_118_WRAP_WRAP.json │ │ ├── check_119_MATCH_MATCH.json │ │ ├── check_119_MATCH_WRAP.json │ │ ├── check_119_WRAP_MATCH.json │ │ ├── check_119_WRAP_WRAP.json │ │ ├── check_120_MATCH_MATCH.json │ │ ├── check_120_MATCH_WRAP.json │ │ ├── check_120_WRAP_MATCH.json │ │ ├── check_120_WRAP_WRAP.json │ │ ├── check_121_MATCH_MATCH.json │ │ ├── check_121_MATCH_WRAP.json │ │ ├── check_121_WRAP_MATCH.json │ │ ├── check_121_WRAP_WRAP.json │ │ ├── check_122_MATCH_MATCH.json │ │ ├── check_122_MATCH_WRAP.json │ │ ├── check_122_WRAP_MATCH.json │ │ ├── check_122_WRAP_WRAP.json │ │ ├── check_123_MATCH_MATCH.json │ │ ├── check_123_MATCH_WRAP.json │ │ ├── check_123_WRAP_MATCH.json │ │ ├── check_123_WRAP_WRAP.json │ │ ├── check_124_MATCH_MATCH.json │ │ ├── check_124_MATCH_WRAP.json │ │ ├── check_124_WRAP_MATCH.json │ │ ├── check_124_WRAP_WRAP.json │ │ ├── check_125_MATCH_MATCH.json │ │ ├── check_125_MATCH_WRAP.json │ │ ├── check_125_WRAP_MATCH.json │ │ ├── check_125_WRAP_WRAP.json │ │ ├── check_126_MATCH_MATCH.json │ │ ├── check_126_MATCH_WRAP.json │ │ ├── check_126_WRAP_MATCH.json │ │ ├── check_126_WRAP_WRAP.json │ │ ├── check_127_MATCH_MATCH.json │ │ ├── check_127_MATCH_WRAP.json │ │ ├── check_127_WRAP_MATCH.json │ │ ├── check_127_WRAP_WRAP.json │ │ ├── check_128_MATCH_MATCH.json │ │ ├── check_128_MATCH_WRAP.json │ │ ├── check_128_WRAP_MATCH.json │ │ ├── check_128_WRAP_WRAP.json │ │ ├── check_129_MATCH_MATCH.json │ │ ├── check_129_MATCH_WRAP.json │ │ ├── check_129_WRAP_MATCH.json │ │ ├── check_129_WRAP_WRAP.json │ │ ├── check_130_MATCH_MATCH.json │ │ ├── check_130_MATCH_WRAP.json │ │ ├── check_130_WRAP_MATCH.json │ │ ├── check_130_WRAP_WRAP.json │ │ ├── check_131_MATCH_MATCH.json │ │ ├── check_131_MATCH_WRAP.json │ │ ├── check_131_WRAP_MATCH.json │ │ ├── check_131_WRAP_WRAP.json │ │ ├── check_132_MATCH_MATCH.json │ │ ├── check_132_MATCH_WRAP.json │ │ ├── check_132_WRAP_MATCH.json │ │ ├── check_132_WRAP_WRAP.json │ │ ├── check_133_MATCH_MATCH.json │ │ ├── check_133_MATCH_WRAP.json │ │ ├── check_133_WRAP_MATCH.json │ │ ├── check_133_WRAP_WRAP.json │ │ ├── check_134_MATCH_MATCH.json │ │ ├── check_134_MATCH_WRAP.json │ │ ├── check_134_WRAP_MATCH.json │ │ ├── check_134_WRAP_WRAP.json │ │ ├── check_135_MATCH_MATCH.json │ │ ├── check_135_MATCH_WRAP.json │ │ ├── check_135_WRAP_MATCH.json │ │ ├── check_135_WRAP_WRAP.json │ │ ├── check_136_MATCH_MATCH.json │ │ ├── check_136_MATCH_WRAP.json │ │ ├── check_136_WRAP_MATCH.json │ │ ├── check_136_WRAP_WRAP.json │ │ ├── check_137_MATCH_MATCH.json │ │ ├── check_137_MATCH_WRAP.json │ │ ├── check_137_WRAP_MATCH.json │ │ ├── check_137_WRAP_WRAP.json │ │ ├── check_138_MATCH_MATCH.json │ │ ├── check_138_MATCH_WRAP.json │ │ ├── check_138_WRAP_MATCH.json │ │ ├── check_138_WRAP_WRAP.json │ │ ├── check_139_MATCH_MATCH.json │ │ ├── check_139_MATCH_WRAP.json │ │ ├── check_139_WRAP_MATCH.json │ │ ├── check_139_WRAP_WRAP.json │ │ ├── check_140_MATCH_MATCH.json │ │ ├── check_140_MATCH_WRAP.json │ │ ├── check_140_WRAP_MATCH.json │ │ ├── check_140_WRAP_WRAP.json │ │ ├── check_141_MATCH_MATCH.json │ │ ├── check_141_MATCH_WRAP.json │ │ ├── check_141_WRAP_MATCH.json │ │ ├── check_141_WRAP_WRAP.json │ │ ├── check_142_MATCH_MATCH.json │ │ ├── check_142_MATCH_WRAP.json │ │ ├── check_142_WRAP_MATCH.json │ │ ├── check_142_WRAP_WRAP.json │ │ ├── check_143_MATCH_MATCH.json │ │ ├── check_143_MATCH_WRAP.json │ │ ├── check_143_WRAP_MATCH.json │ │ ├── check_143_WRAP_WRAP.json │ │ ├── check_144_MATCH_MATCH.json │ │ ├── check_144_MATCH_WRAP.json │ │ ├── check_144_WRAP_MATCH.json │ │ ├── check_144_WRAP_WRAP.json │ │ ├── check_145_MATCH_MATCH.json │ │ ├── check_145_MATCH_WRAP.json │ │ ├── check_145_WRAP_MATCH.json │ │ ├── check_145_WRAP_WRAP.json │ │ ├── check_146_MATCH_MATCH.json │ │ ├── check_146_MATCH_WRAP.json │ │ ├── check_146_WRAP_MATCH.json │ │ ├── check_146_WRAP_WRAP.json │ │ ├── check_147_MATCH_MATCH.json │ │ ├── check_147_MATCH_WRAP.json │ │ ├── check_147_WRAP_MATCH.json │ │ ├── check_147_WRAP_WRAP.json │ │ ├── check_148_MATCH_MATCH.json │ │ ├── check_148_MATCH_WRAP.json │ │ ├── check_148_WRAP_MATCH.json │ │ ├── check_148_WRAP_WRAP.json │ │ ├── check_149_MATCH_MATCH.json │ │ ├── check_149_MATCH_WRAP.json │ │ ├── check_149_WRAP_MATCH.json │ │ ├── check_149_WRAP_WRAP.json │ │ ├── check_150_MATCH_MATCH.json │ │ ├── check_150_MATCH_WRAP.json │ │ ├── check_150_WRAP_MATCH.json │ │ ├── check_150_WRAP_WRAP.json │ │ ├── check_151_MATCH_MATCH.json │ │ ├── check_151_MATCH_WRAP.json │ │ ├── check_151_WRAP_MATCH.json │ │ ├── check_151_WRAP_WRAP.json │ │ ├── check_152_MATCH_MATCH.json │ │ ├── check_152_MATCH_WRAP.json │ │ ├── check_152_WRAP_MATCH.json │ │ ├── check_152_WRAP_WRAP.json │ │ ├── check_153_MATCH_MATCH.json │ │ ├── check_153_MATCH_WRAP.json │ │ ├── check_153_WRAP_MATCH.json │ │ ├── check_153_WRAP_WRAP.json │ │ ├── check_154_MATCH_MATCH.json │ │ ├── check_154_MATCH_WRAP.json │ │ ├── check_154_WRAP_MATCH.json │ │ ├── check_154_WRAP_WRAP.json │ │ ├── check_155_MATCH_MATCH.json │ │ ├── check_155_MATCH_WRAP.json │ │ ├── check_155_WRAP_MATCH.json │ │ ├── check_155_WRAP_WRAP.json │ │ ├── check_156_MATCH_MATCH.json │ │ ├── check_156_MATCH_WRAP.json │ │ ├── check_156_WRAP_MATCH.json │ │ ├── check_156_WRAP_WRAP.json │ │ ├── check_157_MATCH_MATCH.json │ │ ├── check_157_MATCH_WRAP.json │ │ ├── check_157_WRAP_MATCH.json │ │ ├── check_157_WRAP_WRAP.json │ │ ├── check_158_MATCH_MATCH.json │ │ ├── check_158_MATCH_WRAP.json │ │ ├── check_158_WRAP_MATCH.json │ │ ├── check_158_WRAP_WRAP.json │ │ ├── check_159_MATCH_MATCH.json │ │ ├── check_159_MATCH_WRAP.json │ │ ├── check_159_WRAP_MATCH.json │ │ ├── check_159_WRAP_WRAP.json │ │ ├── check_160_MATCH_MATCH.json │ │ ├── check_160_MATCH_WRAP.json │ │ ├── check_160_WRAP_MATCH.json │ │ ├── check_160_WRAP_WRAP.json │ │ ├── check_161_MATCH_MATCH.json │ │ ├── check_161_MATCH_WRAP.json │ │ ├── check_161_WRAP_MATCH.json │ │ ├── check_161_WRAP_WRAP.json │ │ ├── check_162_MATCH_MATCH.json │ │ ├── check_162_MATCH_WRAP.json │ │ ├── check_162_WRAP_MATCH.json │ │ ├── check_162_WRAP_WRAP.json │ │ ├── check_163_MATCH_MATCH.json │ │ ├── check_163_MATCH_WRAP.json │ │ ├── check_163_WRAP_MATCH.json │ │ ├── check_163_WRAP_WRAP.json │ │ ├── check_164_MATCH_MATCH.json │ │ ├── check_164_MATCH_WRAP.json │ │ ├── check_164_WRAP_MATCH.json │ │ ├── check_164_WRAP_WRAP.json │ │ ├── check_165_MATCH_MATCH.json │ │ ├── check_165_MATCH_WRAP.json │ │ ├── check_165_WRAP_MATCH.json │ │ ├── check_165_WRAP_WRAP.json │ │ ├── check_166_MATCH_MATCH.json │ │ ├── check_166_MATCH_WRAP.json │ │ ├── check_166_WRAP_MATCH.json │ │ ├── check_166_WRAP_WRAP.json │ │ ├── check_167_MATCH_MATCH.json │ │ ├── check_167_MATCH_WRAP.json │ │ ├── check_167_WRAP_MATCH.json │ │ ├── check_167_WRAP_WRAP.json │ │ ├── check_168_MATCH_MATCH.json │ │ ├── check_168_MATCH_WRAP.json │ │ ├── check_168_WRAP_MATCH.json │ │ ├── check_168_WRAP_WRAP.json │ │ ├── check_169_MATCH_MATCH.json │ │ ├── check_169_MATCH_WRAP.json │ │ ├── check_169_WRAP_MATCH.json │ │ ├── check_169_WRAP_WRAP.json │ │ ├── check_170_MATCH_MATCH.json │ │ ├── check_170_MATCH_WRAP.json │ │ ├── check_170_WRAP_MATCH.json │ │ ├── check_170_WRAP_WRAP.json │ │ ├── check_171_MATCH_MATCH.json │ │ ├── check_171_MATCH_WRAP.json │ │ ├── check_171_WRAP_MATCH.json │ │ ├── check_171_WRAP_WRAP.json │ │ ├── check_172_MATCH_MATCH.json │ │ ├── check_172_MATCH_WRAP.json │ │ ├── check_172_WRAP_MATCH.json │ │ ├── check_172_WRAP_WRAP.json │ │ ├── check_173_MATCH_MATCH.json │ │ ├── check_173_MATCH_WRAP.json │ │ ├── check_173_WRAP_MATCH.json │ │ ├── check_173_WRAP_WRAP.json │ │ ├── check_174_MATCH_MATCH.json │ │ ├── check_174_MATCH_WRAP.json │ │ ├── check_174_WRAP_MATCH.json │ │ ├── check_174_WRAP_WRAP.json │ │ ├── check_175_MATCH_MATCH.json │ │ ├── check_175_MATCH_WRAP.json │ │ ├── check_175_WRAP_MATCH.json │ │ ├── check_175_WRAP_WRAP.json │ │ ├── check_176_MATCH_MATCH.json │ │ ├── check_176_MATCH_WRAP.json │ │ ├── check_176_WRAP_MATCH.json │ │ ├── check_176_WRAP_WRAP.json │ │ ├── check_177_MATCH_MATCH.json │ │ ├── check_177_MATCH_WRAP.json │ │ ├── check_177_WRAP_MATCH.json │ │ ├── check_177_WRAP_WRAP.json │ │ ├── check_178_MATCH_MATCH.json │ │ ├── check_178_MATCH_WRAP.json │ │ ├── check_178_WRAP_MATCH.json │ │ ├── check_178_WRAP_WRAP.json │ │ ├── check_179_MATCH_MATCH.json │ │ ├── check_179_MATCH_WRAP.json │ │ ├── check_179_WRAP_MATCH.json │ │ ├── check_179_WRAP_WRAP.json │ │ ├── check_180_MATCH_MATCH.json │ │ ├── check_180_MATCH_WRAP.json │ │ ├── check_180_WRAP_MATCH.json │ │ ├── check_180_WRAP_WRAP.json │ │ ├── check_181_MATCH_MATCH.json │ │ ├── check_181_MATCH_WRAP.json │ │ ├── check_181_WRAP_MATCH.json │ │ ├── check_181_WRAP_WRAP.json │ │ ├── check_182_MATCH_MATCH.json │ │ ├── check_182_MATCH_WRAP.json │ │ ├── check_182_WRAP_MATCH.json │ │ ├── check_182_WRAP_WRAP.json │ │ ├── check_183_MATCH_MATCH.json │ │ ├── check_183_MATCH_WRAP.json │ │ ├── check_183_WRAP_MATCH.json │ │ ├── check_183_WRAP_WRAP.json │ │ ├── check_184_MATCH_MATCH.json │ │ ├── check_184_MATCH_WRAP.json │ │ ├── check_184_WRAP_MATCH.json │ │ ├── check_184_WRAP_WRAP.json │ │ ├── check_185_MATCH_MATCH.json │ │ ├── check_185_MATCH_WRAP.json │ │ ├── check_185_WRAP_MATCH.json │ │ ├── check_185_WRAP_WRAP.json │ │ ├── check_186_MATCH_MATCH.json │ │ ├── check_186_MATCH_WRAP.json │ │ ├── check_186_WRAP_MATCH.json │ │ ├── check_186_WRAP_WRAP.json │ │ ├── check_188_MATCH_MATCH.json │ │ ├── check_188_MATCH_WRAP.json │ │ ├── check_188_WRAP_MATCH.json │ │ ├── check_188_WRAP_WRAP.json │ │ ├── check_189_MATCH_MATCH.json │ │ ├── check_189_MATCH_WRAP.json │ │ ├── check_189_WRAP_MATCH.json │ │ ├── check_189_WRAP_WRAP.json │ │ ├── check_190_MATCH_MATCH.json │ │ ├── check_190_MATCH_WRAP.json │ │ ├── check_190_WRAP_MATCH.json │ │ ├── check_190_WRAP_WRAP.json │ │ ├── check_191_MATCH_MATCH.json │ │ ├── check_191_MATCH_WRAP.json │ │ ├── check_191_WRAP_MATCH.json │ │ ├── check_191_WRAP_WRAP.json │ │ ├── check_192_MATCH_MATCH.json │ │ ├── check_192_MATCH_WRAP.json │ │ ├── check_192_WRAP_MATCH.json │ │ ├── check_192_WRAP_WRAP.json │ │ ├── check_193_MATCH_MATCH.json │ │ ├── check_193_MATCH_WRAP.json │ │ ├── check_193_WRAP_MATCH.json │ │ ├── check_193_WRAP_WRAP.json │ │ ├── check_194_MATCH_MATCH.json │ │ ├── check_194_MATCH_WRAP.json │ │ ├── check_194_WRAP_MATCH.json │ │ ├── check_194_WRAP_WRAP.json │ │ ├── check_195_MATCH_MATCH.json │ │ ├── check_195_MATCH_WRAP.json │ │ ├── check_195_WRAP_MATCH.json │ │ ├── check_195_WRAP_WRAP.json │ │ ├── check_196_MATCH_MATCH.json │ │ ├── check_196_MATCH_WRAP.json │ │ ├── check_196_WRAP_MATCH.json │ │ ├── check_196_WRAP_WRAP.json │ │ ├── check_197_MATCH_MATCH.json │ │ ├── check_197_MATCH_WRAP.json │ │ ├── check_197_WRAP_MATCH.json │ │ ├── check_197_WRAP_WRAP.json │ │ ├── check_198_MATCH_MATCH.json │ │ ├── check_198_MATCH_WRAP.json │ │ ├── check_198_WRAP_MATCH.json │ │ ├── check_198_WRAP_WRAP.json │ │ ├── check_199_MATCH_MATCH.json │ │ ├── check_199_MATCH_WRAP.json │ │ ├── check_199_WRAP_MATCH.json │ │ ├── check_199_WRAP_WRAP.json │ │ ├── check_200_MATCH_MATCH.json │ │ ├── check_200_MATCH_WRAP.json │ │ ├── check_200_WRAP_MATCH.json │ │ ├── check_200_WRAP_WRAP.json │ │ ├── check_201_MATCH_MATCH.json │ │ ├── check_201_MATCH_WRAP.json │ │ ├── check_201_WRAP_MATCH.json │ │ ├── check_201_WRAP_WRAP.json │ │ ├── check_202_MATCH_MATCH.json │ │ ├── check_202_MATCH_WRAP.json │ │ ├── check_202_WRAP_MATCH.json │ │ ├── check_202_WRAP_WRAP.json │ │ ├── check_203_MATCH_MATCH.json │ │ ├── check_203_MATCH_WRAP.json │ │ ├── check_203_WRAP_MATCH.json │ │ ├── check_203_WRAP_WRAP.json │ │ ├── check_204_MATCH_MATCH.json │ │ ├── check_204_MATCH_WRAP.json │ │ ├── check_204_WRAP_MATCH.json │ │ ├── check_204_WRAP_WRAP.json │ │ ├── check_205_MATCH_MATCH.json │ │ ├── check_205_MATCH_WRAP.json │ │ ├── check_205_WRAP_MATCH.json │ │ ├── check_205_WRAP_WRAP.json │ │ ├── check_206_MATCH_MATCH.json │ │ ├── check_206_MATCH_WRAP.json │ │ ├── check_206_WRAP_MATCH.json │ │ ├── check_206_WRAP_WRAP.json │ │ ├── check_207_MATCH_MATCH.json │ │ ├── check_207_MATCH_WRAP.json │ │ ├── check_207_WRAP_MATCH.json │ │ ├── check_207_WRAP_WRAP.json │ │ ├── check_208_MATCH_MATCH.json │ │ ├── check_208_MATCH_WRAP.json │ │ ├── check_208_WRAP_MATCH.json │ │ ├── check_208_WRAP_WRAP.json │ │ ├── check_209_MATCH_MATCH.json │ │ ├── check_209_MATCH_WRAP.json │ │ ├── check_209_WRAP_MATCH.json │ │ ├── check_209_WRAP_WRAP.json │ │ ├── check_210_MATCH_MATCH.json │ │ ├── check_210_MATCH_WRAP.json │ │ ├── check_210_WRAP_MATCH.json │ │ ├── check_210_WRAP_WRAP.json │ │ ├── check_212_MATCH_MATCH.json │ │ ├── check_212_MATCH_WRAP.json │ │ ├── check_212_WRAP_MATCH.json │ │ ├── check_212_WRAP_WRAP.json │ │ ├── check_213_MATCH_MATCH.json │ │ ├── check_213_MATCH_WRAP.json │ │ ├── check_213_WRAP_MATCH.json │ │ ├── check_213_WRAP_WRAP.json │ │ ├── check_214_MATCH_MATCH.json │ │ ├── check_214_MATCH_WRAP.json │ │ ├── check_214_WRAP_MATCH.json │ │ ├── check_214_WRAP_WRAP.json │ │ ├── check_215_MATCH_MATCH.json │ │ ├── check_215_MATCH_WRAP.json │ │ ├── check_215_WRAP_MATCH.json │ │ ├── check_215_WRAP_WRAP.json │ │ ├── check_216_MATCH_MATCH.json │ │ ├── check_216_MATCH_WRAP.json │ │ ├── check_216_WRAP_MATCH.json │ │ ├── check_216_WRAP_WRAP.json │ │ ├── check_217_MATCH_MATCH.json │ │ ├── check_217_MATCH_WRAP.json │ │ ├── check_217_WRAP_MATCH.json │ │ ├── check_217_WRAP_WRAP.json │ │ ├── check_218_MATCH_MATCH.json │ │ ├── check_218_MATCH_WRAP.json │ │ ├── check_218_WRAP_MATCH.json │ │ ├── check_218_WRAP_WRAP.json │ │ ├── check_219_MATCH_MATCH.json │ │ ├── check_219_MATCH_WRAP.json │ │ ├── check_219_WRAP_MATCH.json │ │ ├── check_219_WRAP_WRAP.json │ │ ├── check_220_MATCH_MATCH.json │ │ ├── check_220_MATCH_WRAP.json │ │ ├── check_220_WRAP_MATCH.json │ │ ├── check_220_WRAP_WRAP.json │ │ ├── check_221_MATCH_MATCH.json │ │ ├── check_221_MATCH_WRAP.json │ │ ├── check_221_WRAP_MATCH.json │ │ ├── check_221_WRAP_WRAP.json │ │ ├── check_222_MATCH_MATCH.json │ │ ├── check_222_MATCH_WRAP.json │ │ ├── check_222_WRAP_MATCH.json │ │ ├── check_222_WRAP_WRAP.json │ │ ├── check_223_MATCH_MATCH.json │ │ ├── check_223_MATCH_WRAP.json │ │ ├── check_223_WRAP_MATCH.json │ │ ├── check_223_WRAP_WRAP.json │ │ ├── check_225_MATCH_MATCH.json │ │ ├── check_225_MATCH_WRAP.json │ │ ├── check_225_WRAP_MATCH.json │ │ ├── check_225_WRAP_WRAP.json │ │ ├── check_226_MATCH_MATCH.json │ │ ├── check_226_MATCH_WRAP.json │ │ ├── check_226_WRAP_MATCH.json │ │ ├── check_226_WRAP_WRAP.json │ │ ├── check_227_MATCH_MATCH.json │ │ ├── check_227_MATCH_WRAP.json │ │ ├── check_227_WRAP_MATCH.json │ │ ├── check_227_WRAP_WRAP.json │ │ ├── check_228_MATCH_MATCH.json │ │ ├── check_228_MATCH_WRAP.json │ │ ├── check_228_WRAP_MATCH.json │ │ ├── check_228_WRAP_WRAP.json │ │ ├── check_229_MATCH_MATCH.json │ │ ├── check_229_MATCH_WRAP.json │ │ ├── check_229_WRAP_MATCH.json │ │ ├── check_229_WRAP_WRAP.json │ │ ├── check_230_MATCH_MATCH.json │ │ ├── check_230_MATCH_WRAP.json │ │ ├── check_230_WRAP_MATCH.json │ │ ├── check_230_WRAP_WRAP.json │ │ ├── check_231_MATCH_MATCH.json │ │ ├── check_231_MATCH_WRAP.json │ │ ├── check_231_WRAP_MATCH.json │ │ ├── check_231_WRAP_WRAP.json │ │ ├── check_232_MATCH_MATCH.json │ │ ├── check_232_MATCH_WRAP.json │ │ ├── check_232_WRAP_MATCH.json │ │ ├── check_232_WRAP_WRAP.json │ │ ├── check_237_MATCH_MATCH.json │ │ ├── check_237_MATCH_WRAP.json │ │ ├── check_237_WRAP_MATCH.json │ │ ├── check_237_WRAP_WRAP.json │ │ ├── check_238_MATCH_MATCH.json │ │ ├── check_238_MATCH_WRAP.json │ │ ├── check_238_WRAP_MATCH.json │ │ ├── check_238_WRAP_WRAP.json │ │ ├── check_239_MATCH_MATCH.json │ │ ├── check_239_MATCH_WRAP.json │ │ ├── check_239_WRAP_MATCH.json │ │ ├── check_239_WRAP_WRAP.json │ │ ├── check_240_MATCH_MATCH.json │ │ ├── check_240_MATCH_WRAP.json │ │ ├── check_240_WRAP_MATCH.json │ │ ├── check_240_WRAP_WRAP.json │ │ ├── check_242_MATCH_MATCH.json │ │ ├── check_242_MATCH_WRAP.json │ │ ├── check_242_WRAP_MATCH.json │ │ ├── check_242_WRAP_WRAP.json │ │ ├── check_243_MATCH_MATCH.json │ │ ├── check_243_MATCH_WRAP.json │ │ ├── check_243_WRAP_MATCH.json │ │ ├── check_243_WRAP_WRAP.json │ │ ├── check_244_MATCH_MATCH.json │ │ ├── check_244_MATCH_WRAP.json │ │ ├── check_244_WRAP_MATCH.json │ │ ├── check_244_WRAP_WRAP.json │ │ ├── check_246_MATCH_MATCH.json │ │ ├── check_246_MATCH_WRAP.json │ │ ├── check_246_WRAP_MATCH.json │ │ ├── check_246_WRAP_WRAP.json │ │ ├── check_247_MATCH_MATCH.json │ │ ├── check_247_MATCH_WRAP.json │ │ ├── check_247_WRAP_MATCH.json │ │ ├── check_247_WRAP_WRAP.json │ │ ├── check_248_MATCH_MATCH.json │ │ ├── check_248_MATCH_WRAP.json │ │ ├── check_248_WRAP_MATCH.json │ │ ├── check_248_WRAP_WRAP.json │ │ ├── check_249_MATCH_MATCH.json │ │ ├── check_249_MATCH_WRAP.json │ │ ├── check_249_WRAP_MATCH.json │ │ ├── check_249_WRAP_WRAP.json │ │ ├── check_250_MATCH_MATCH.json │ │ ├── check_250_MATCH_WRAP.json │ │ ├── check_250_WRAP_MATCH.json │ │ ├── check_250_WRAP_WRAP.json │ │ ├── check_251_MATCH_MATCH.json │ │ ├── check_251_MATCH_WRAP.json │ │ ├── check_251_WRAP_MATCH.json │ │ ├── check_251_WRAP_WRAP.json │ │ ├── check_252_MATCH_MATCH.json │ │ ├── check_252_MATCH_WRAP.json │ │ ├── check_252_WRAP_MATCH.json │ │ ├── check_252_WRAP_WRAP.json │ │ ├── check_253_MATCH_MATCH.json │ │ ├── check_253_MATCH_WRAP.json │ │ ├── check_253_WRAP_MATCH.json │ │ ├── check_253_WRAP_WRAP.json │ │ ├── check_254_MATCH_MATCH.json │ │ ├── check_254_MATCH_WRAP.json │ │ ├── check_254_WRAP_MATCH.json │ │ ├── check_254_WRAP_WRAP.json │ │ ├── check_255_MATCH_MATCH.json │ │ ├── check_255_MATCH_WRAP.json │ │ ├── check_255_WRAP_MATCH.json │ │ ├── check_255_WRAP_WRAP.json │ │ ├── check_256_MATCH_MATCH.json │ │ ├── check_256_MATCH_WRAP.json │ │ ├── check_256_WRAP_MATCH.json │ │ ├── check_256_WRAP_WRAP.json │ │ ├── check_257_MATCH_MATCH.json │ │ ├── check_257_MATCH_WRAP.json │ │ ├── check_257_WRAP_MATCH.json │ │ ├── check_257_WRAP_WRAP.json │ │ ├── check_258_MATCH_MATCH.json │ │ ├── check_258_MATCH_WRAP.json │ │ ├── check_258_WRAP_MATCH.json │ │ ├── check_258_WRAP_WRAP.json │ │ ├── check_259_MATCH_MATCH.json │ │ ├── check_259_MATCH_WRAP.json │ │ ├── check_259_WRAP_MATCH.json │ │ ├── check_259_WRAP_WRAP.json │ │ ├── check_260_MATCH_MATCH.json │ │ ├── check_260_MATCH_WRAP.json │ │ ├── check_260_WRAP_MATCH.json │ │ ├── check_260_WRAP_WRAP.json │ │ ├── check_261_MATCH_MATCH.json │ │ ├── check_261_MATCH_WRAP.json │ │ ├── check_261_WRAP_MATCH.json │ │ ├── check_261_WRAP_WRAP.json │ │ ├── check_262_MATCH_MATCH.json │ │ ├── check_262_MATCH_WRAP.json │ │ ├── check_262_WRAP_MATCH.json │ │ ├── check_262_WRAP_WRAP.json │ │ ├── check_263_MATCH_MATCH.json │ │ ├── check_263_MATCH_WRAP.json │ │ ├── check_263_WRAP_MATCH.json │ │ ├── check_263_WRAP_WRAP.json │ │ ├── check_264_MATCH_MATCH.json │ │ ├── check_264_MATCH_WRAP.json │ │ ├── check_264_WRAP_MATCH.json │ │ ├── check_264_WRAP_WRAP.json │ │ ├── check_265_MATCH_MATCH.json │ │ ├── check_265_MATCH_WRAP.json │ │ ├── check_265_WRAP_MATCH.json │ │ ├── check_265_WRAP_WRAP.json │ │ ├── check_266_MATCH_MATCH.json │ │ ├── check_266_MATCH_WRAP.json │ │ ├── check_266_WRAP_MATCH.json │ │ ├── check_266_WRAP_WRAP.json │ │ ├── check_267_MATCH_MATCH.json │ │ ├── check_267_MATCH_WRAP.json │ │ ├── check_267_WRAP_MATCH.json │ │ ├── check_267_WRAP_WRAP.json │ │ ├── check_268_MATCH_MATCH.json │ │ ├── check_268_MATCH_WRAP.json │ │ ├── check_268_WRAP_MATCH.json │ │ ├── check_268_WRAP_WRAP.json │ │ ├── check_269_MATCH_MATCH.json │ │ ├── check_269_MATCH_WRAP.json │ │ ├── check_269_WRAP_MATCH.json │ │ ├── check_269_WRAP_WRAP.json │ │ ├── check_270_MATCH_MATCH.json │ │ ├── check_270_MATCH_WRAP.json │ │ ├── check_270_WRAP_MATCH.json │ │ ├── check_270_WRAP_WRAP.json │ │ ├── check_271_MATCH_MATCH.json │ │ ├── check_271_MATCH_WRAP.json │ │ ├── check_271_WRAP_MATCH.json │ │ ├── check_271_WRAP_WRAP.json │ │ ├── check_272_MATCH_MATCH.json │ │ ├── check_272_MATCH_WRAP.json │ │ ├── check_272_WRAP_MATCH.json │ │ ├── check_272_WRAP_WRAP.json │ │ ├── check_273_MATCH_MATCH.json │ │ ├── check_273_MATCH_WRAP.json │ │ ├── check_273_WRAP_MATCH.json │ │ ├── check_273_WRAP_WRAP.json │ │ ├── check_274_MATCH_MATCH.json │ │ ├── check_274_MATCH_WRAP.json │ │ ├── check_274_WRAP_MATCH.json │ │ ├── check_274_WRAP_WRAP.json │ │ ├── check_275_MATCH_MATCH.json │ │ ├── check_275_MATCH_WRAP.json │ │ ├── check_275_WRAP_MATCH.json │ │ ├── check_275_WRAP_WRAP.json │ │ ├── check_276_MATCH_MATCH.json │ │ ├── check_276_MATCH_WRAP.json │ │ ├── check_276_WRAP_MATCH.json │ │ ├── check_276_WRAP_WRAP.json │ │ ├── check_277_MATCH_MATCH.json │ │ ├── check_277_MATCH_WRAP.json │ │ ├── check_277_WRAP_MATCH.json │ │ ├── check_277_WRAP_WRAP.json │ │ ├── check_278_MATCH_MATCH.json │ │ ├── check_278_MATCH_WRAP.json │ │ ├── check_278_WRAP_MATCH.json │ │ ├── check_278_WRAP_WRAP.json │ │ ├── check_279_MATCH_MATCH.json │ │ ├── check_279_MATCH_WRAP.json │ │ ├── check_279_WRAP_MATCH.json │ │ ├── check_279_WRAP_WRAP.json │ │ ├── check_280_MATCH_MATCH.json │ │ ├── check_280_MATCH_WRAP.json │ │ ├── check_280_WRAP_MATCH.json │ │ ├── check_280_WRAP_WRAP.json │ │ ├── check_281_MATCH_MATCH.json │ │ ├── check_281_MATCH_WRAP.json │ │ ├── check_281_WRAP_MATCH.json │ │ ├── check_281_WRAP_WRAP.json │ │ ├── check_284_MATCH_MATCH.json │ │ ├── check_284_MATCH_WRAP.json │ │ ├── check_284_WRAP_MATCH.json │ │ ├── check_284_WRAP_WRAP.json │ │ ├── check_285_MATCH_MATCH.json │ │ ├── check_285_MATCH_WRAP.json │ │ ├── check_285_WRAP_MATCH.json │ │ ├── check_285_WRAP_WRAP.json │ │ ├── check_286_MATCH_MATCH.json │ │ ├── check_286_MATCH_WRAP.json │ │ ├── check_286_WRAP_MATCH.json │ │ ├── check_286_WRAP_WRAP.json │ │ ├── check_287_MATCH_MATCH.json │ │ ├── check_287_MATCH_WRAP.json │ │ ├── check_287_WRAP_MATCH.json │ │ ├── check_287_WRAP_WRAP.json │ │ ├── check_288_MATCH_MATCH.json │ │ ├── check_288_MATCH_WRAP.json │ │ ├── check_288_WRAP_MATCH.json │ │ ├── check_288_WRAP_WRAP.json │ │ ├── check_289_MATCH_MATCH.json │ │ ├── check_289_MATCH_WRAP.json │ │ ├── check_289_WRAP_MATCH.json │ │ ├── check_289_WRAP_WRAP.json │ │ ├── check_290_MATCH_MATCH.json │ │ ├── check_290_MATCH_WRAP.json │ │ ├── check_290_WRAP_MATCH.json │ │ ├── check_290_WRAP_WRAP.json │ │ ├── check_291_MATCH_MATCH.json │ │ ├── check_291_MATCH_WRAP.json │ │ ├── check_291_WRAP_MATCH.json │ │ ├── check_291_WRAP_WRAP.json │ │ ├── check_292_MATCH_MATCH.json │ │ ├── check_292_MATCH_WRAP.json │ │ ├── check_292_WRAP_MATCH.json │ │ ├── check_292_WRAP_WRAP.json │ │ ├── check_293_MATCH_MATCH.json │ │ ├── check_293_MATCH_WRAP.json │ │ ├── check_293_WRAP_MATCH.json │ │ ├── check_293_WRAP_WRAP.json │ │ ├── check_294_MATCH_MATCH.json │ │ ├── check_294_MATCH_WRAP.json │ │ ├── check_294_WRAP_MATCH.json │ │ ├── check_294_WRAP_WRAP.json │ │ ├── check_295_MATCH_MATCH.json │ │ ├── check_295_MATCH_WRAP.json │ │ ├── check_295_WRAP_MATCH.json │ │ ├── check_295_WRAP_WRAP.json │ │ ├── check_299_MATCH_MATCH.json │ │ ├── check_299_MATCH_WRAP.json │ │ ├── check_299_WRAP_MATCH.json │ │ ├── check_299_WRAP_WRAP.json │ │ ├── check_304_MATCH_MATCH.json │ │ ├── check_304_MATCH_WRAP.json │ │ ├── check_304_WRAP_MATCH.json │ │ └── check_304_WRAP_WRAP.json │ ├── references │ │ ├── check_000_MATCH_MATCH.json │ │ ├── check_000_MATCH_WRAP.json │ │ ├── check_000_WRAP_MATCH.json │ │ ├── check_000_WRAP_WRAP.json │ │ ├── check_001_MATCH_MATCH.json │ │ ├── check_001_MATCH_WRAP.json │ │ ├── check_001_WRAP_MATCH.json │ │ ├── check_001_WRAP_WRAP.json │ │ ├── check_002_MATCH_MATCH.json │ │ ├── check_002_MATCH_WRAP.json │ │ ├── check_002_WRAP_MATCH.json │ │ ├── check_002_WRAP_WRAP.json │ │ ├── check_003_MATCH_MATCH.json │ │ ├── check_003_MATCH_WRAP.json │ │ ├── check_003_WRAP_MATCH.json │ │ ├── check_003_WRAP_WRAP.json │ │ ├── check_004_MATCH_MATCH.json │ │ ├── check_004_MATCH_WRAP.json │ │ ├── check_004_WRAP_MATCH.json │ │ ├── check_004_WRAP_WRAP.json │ │ ├── check_005_MATCH_MATCH.json │ │ ├── check_005_MATCH_WRAP.json │ │ ├── check_005_WRAP_MATCH.json │ │ ├── check_005_WRAP_WRAP.json │ │ ├── check_006_MATCH_MATCH.json │ │ ├── check_006_MATCH_WRAP.json │ │ ├── check_006_WRAP_MATCH.json │ │ ├── check_006_WRAP_WRAP.json │ │ ├── check_007_MATCH_MATCH.json │ │ ├── check_007_MATCH_WRAP.json │ │ ├── check_007_WRAP_MATCH.json │ │ ├── check_007_WRAP_WRAP.json │ │ ├── check_008_MATCH_MATCH.json │ │ ├── check_008_MATCH_WRAP.json │ │ ├── check_008_WRAP_MATCH.json │ │ ├── check_008_WRAP_WRAP.json │ │ ├── check_009_MATCH_MATCH.json │ │ ├── check_009_MATCH_WRAP.json │ │ ├── check_009_WRAP_MATCH.json │ │ ├── check_009_WRAP_WRAP.json │ │ ├── check_010_MATCH_MATCH.json │ │ ├── check_010_MATCH_WRAP.json │ │ ├── check_010_WRAP_MATCH.json │ │ ├── check_010_WRAP_WRAP.json │ │ ├── check_011_MATCH_MATCH.json │ │ ├── check_011_MATCH_WRAP.json │ │ ├── check_011_WRAP_MATCH.json │ │ ├── check_011_WRAP_WRAP.json │ │ ├── check_012_MATCH_MATCH.json │ │ ├── check_012_MATCH_WRAP.json │ │ ├── check_012_WRAP_MATCH.json │ │ ├── check_012_WRAP_WRAP.json │ │ ├── check_013_MATCH_MATCH.json │ │ ├── check_013_MATCH_WRAP.json │ │ ├── check_013_WRAP_MATCH.json │ │ ├── check_013_WRAP_WRAP.json │ │ ├── check_014_MATCH_MATCH.json │ │ ├── check_014_MATCH_WRAP.json │ │ ├── check_014_WRAP_MATCH.json │ │ ├── check_014_WRAP_WRAP.json │ │ ├── check_015_MATCH_MATCH.json │ │ ├── check_015_MATCH_WRAP.json │ │ ├── check_015_WRAP_MATCH.json │ │ ├── check_015_WRAP_WRAP.json │ │ ├── check_016_MATCH_MATCH.json │ │ ├── check_016_MATCH_WRAP.json │ │ ├── check_016_WRAP_MATCH.json │ │ ├── check_016_WRAP_WRAP.json │ │ ├── check_017_MATCH_MATCH.json │ │ ├── check_017_MATCH_WRAP.json │ │ ├── check_017_WRAP_MATCH.json │ │ ├── check_017_WRAP_WRAP.json │ │ ├── check_018_MATCH_MATCH.json │ │ ├── check_018_MATCH_WRAP.json │ │ ├── check_018_WRAP_MATCH.json │ │ ├── check_018_WRAP_WRAP.json │ │ ├── check_019_MATCH_MATCH.json │ │ ├── check_019_MATCH_WRAP.json │ │ ├── check_019_WRAP_MATCH.json │ │ ├── check_019_WRAP_WRAP.json │ │ ├── check_020_MATCH_MATCH.json │ │ ├── check_020_MATCH_WRAP.json │ │ ├── check_020_WRAP_MATCH.json │ │ ├── check_020_WRAP_WRAP.json │ │ ├── check_021_MATCH_MATCH.json │ │ ├── check_021_MATCH_WRAP.json │ │ ├── check_021_WRAP_MATCH.json │ │ ├── check_021_WRAP_WRAP.json │ │ ├── check_022_MATCH_MATCH.json │ │ ├── check_022_MATCH_WRAP.json │ │ ├── check_022_WRAP_MATCH.json │ │ ├── check_022_WRAP_WRAP.json │ │ ├── check_023_MATCH_MATCH.json │ │ ├── check_023_MATCH_WRAP.json │ │ ├── check_023_WRAP_MATCH.json │ │ ├── check_023_WRAP_WRAP.json │ │ ├── check_024_MATCH_MATCH.json │ │ ├── check_024_MATCH_WRAP.json │ │ ├── check_024_WRAP_MATCH.json │ │ ├── check_024_WRAP_WRAP.json │ │ ├── check_025_MATCH_MATCH.json │ │ ├── check_025_MATCH_WRAP.json │ │ ├── check_025_WRAP_MATCH.json │ │ ├── check_025_WRAP_WRAP.json │ │ ├── check_026_MATCH_MATCH.json │ │ ├── check_026_MATCH_WRAP.json │ │ ├── check_026_WRAP_MATCH.json │ │ ├── check_026_WRAP_WRAP.json │ │ ├── check_027_MATCH_MATCH.json │ │ ├── check_027_MATCH_WRAP.json │ │ ├── check_027_WRAP_MATCH.json │ │ ├── check_027_WRAP_WRAP.json │ │ ├── check_028_MATCH_MATCH.json │ │ ├── check_028_MATCH_WRAP.json │ │ ├── check_028_WRAP_MATCH.json │ │ ├── check_028_WRAP_WRAP.json │ │ ├── check_029_MATCH_MATCH.json │ │ ├── check_029_MATCH_WRAP.json │ │ ├── check_029_WRAP_MATCH.json │ │ ├── check_029_WRAP_WRAP.json │ │ ├── check_030_MATCH_MATCH.json │ │ ├── check_030_MATCH_WRAP.json │ │ ├── check_030_WRAP_MATCH.json │ │ ├── check_030_WRAP_WRAP.json │ │ ├── check_031_MATCH_MATCH.json │ │ ├── check_031_MATCH_WRAP.json │ │ ├── check_031_WRAP_MATCH.json │ │ ├── check_031_WRAP_WRAP.json │ │ ├── check_032_MATCH_MATCH.json │ │ ├── check_032_MATCH_WRAP.json │ │ ├── check_032_WRAP_MATCH.json │ │ ├── check_032_WRAP_WRAP.json │ │ ├── check_033_MATCH_MATCH.json │ │ ├── check_033_MATCH_WRAP.json │ │ ├── check_033_WRAP_MATCH.json │ │ ├── check_033_WRAP_WRAP.json │ │ ├── check_034_MATCH_MATCH.json │ │ ├── check_034_MATCH_WRAP.json │ │ ├── check_034_WRAP_MATCH.json │ │ ├── check_034_WRAP_WRAP.json │ │ ├── check_035_MATCH_MATCH.json │ │ ├── check_035_MATCH_WRAP.json │ │ ├── check_035_WRAP_MATCH.json │ │ ├── check_035_WRAP_WRAP.json │ │ ├── check_036_MATCH_MATCH.json │ │ ├── check_036_MATCH_WRAP.json │ │ ├── check_036_WRAP_MATCH.json │ │ ├── check_036_WRAP_WRAP.json │ │ ├── check_037_MATCH_MATCH.json │ │ ├── check_037_MATCH_WRAP.json │ │ ├── check_037_WRAP_MATCH.json │ │ ├── check_037_WRAP_WRAP.json │ │ ├── check_038_MATCH_MATCH.json │ │ ├── check_038_MATCH_WRAP.json │ │ ├── check_038_WRAP_MATCH.json │ │ ├── check_038_WRAP_WRAP.json │ │ ├── check_039_MATCH_MATCH.json │ │ ├── check_039_MATCH_WRAP.json │ │ ├── check_039_WRAP_MATCH.json │ │ ├── check_039_WRAP_WRAP.json │ │ ├── check_040_MATCH_MATCH.json │ │ ├── check_040_MATCH_WRAP.json │ │ ├── check_040_WRAP_MATCH.json │ │ ├── check_040_WRAP_WRAP.json │ │ ├── check_041_MATCH_MATCH.json │ │ ├── check_041_MATCH_WRAP.json │ │ ├── check_041_WRAP_MATCH.json │ │ ├── check_041_WRAP_WRAP.json │ │ ├── check_042_MATCH_MATCH.json │ │ ├── check_042_MATCH_WRAP.json │ │ ├── check_042_WRAP_MATCH.json │ │ ├── check_042_WRAP_WRAP.json │ │ ├── check_043_MATCH_MATCH.json │ │ ├── check_043_MATCH_WRAP.json │ │ ├── check_043_WRAP_MATCH.json │ │ ├── check_043_WRAP_WRAP.json │ │ ├── check_044_MATCH_MATCH.json │ │ ├── check_044_MATCH_WRAP.json │ │ ├── check_044_WRAP_MATCH.json │ │ ├── check_044_WRAP_WRAP.json │ │ ├── check_045_MATCH_MATCH.json │ │ ├── check_045_MATCH_WRAP.json │ │ ├── check_045_WRAP_MATCH.json │ │ ├── check_045_WRAP_WRAP.json │ │ ├── check_046_MATCH_MATCH.json │ │ ├── check_046_MATCH_WRAP.json │ │ ├── check_046_WRAP_MATCH.json │ │ ├── check_046_WRAP_WRAP.json │ │ ├── check_047_MATCH_MATCH.json │ │ ├── check_047_MATCH_WRAP.json │ │ ├── check_047_WRAP_MATCH.json │ │ ├── check_047_WRAP_WRAP.json │ │ ├── check_048_MATCH_MATCH.json │ │ ├── check_048_MATCH_WRAP.json │ │ ├── check_048_WRAP_MATCH.json │ │ ├── check_048_WRAP_WRAP.json │ │ ├── check_049_MATCH_MATCH.json │ │ ├── check_049_MATCH_WRAP.json │ │ ├── check_049_WRAP_MATCH.json │ │ ├── check_049_WRAP_WRAP.json │ │ ├── check_050_MATCH_MATCH.json │ │ ├── check_050_MATCH_WRAP.json │ │ ├── check_050_WRAP_MATCH.json │ │ ├── check_050_WRAP_WRAP.json │ │ ├── check_051_MATCH_MATCH.json │ │ ├── check_051_MATCH_WRAP.json │ │ ├── check_051_WRAP_MATCH.json │ │ ├── check_051_WRAP_WRAP.json │ │ ├── check_052_MATCH_MATCH.json │ │ ├── check_052_MATCH_WRAP.json │ │ ├── check_052_WRAP_MATCH.json │ │ ├── check_052_WRAP_WRAP.json │ │ ├── check_053_MATCH_MATCH.json │ │ ├── check_053_MATCH_WRAP.json │ │ ├── check_053_WRAP_MATCH.json │ │ ├── check_053_WRAP_WRAP.json │ │ ├── check_054_MATCH_MATCH.json │ │ ├── check_054_MATCH_WRAP.json │ │ ├── check_054_WRAP_MATCH.json │ │ ├── check_054_WRAP_WRAP.json │ │ ├── check_055_MATCH_MATCH.json │ │ ├── check_055_MATCH_WRAP.json │ │ ├── check_055_WRAP_MATCH.json │ │ ├── check_055_WRAP_WRAP.json │ │ ├── check_056_MATCH_MATCH.json │ │ ├── check_056_MATCH_WRAP.json │ │ ├── check_056_WRAP_MATCH.json │ │ ├── check_056_WRAP_WRAP.json │ │ ├── check_057_MATCH_MATCH.json │ │ ├── check_057_MATCH_WRAP.json │ │ ├── check_057_WRAP_MATCH.json │ │ ├── check_057_WRAP_WRAP.json │ │ ├── check_058_MATCH_MATCH.json │ │ ├── check_058_MATCH_WRAP.json │ │ ├── check_058_WRAP_MATCH.json │ │ ├── check_058_WRAP_WRAP.json │ │ ├── check_059_MATCH_MATCH.json │ │ ├── check_059_MATCH_WRAP.json │ │ ├── check_059_WRAP_MATCH.json │ │ ├── check_059_WRAP_WRAP.json │ │ ├── check_060_MATCH_MATCH.json │ │ ├── check_060_MATCH_WRAP.json │ │ ├── check_060_WRAP_MATCH.json │ │ ├── check_060_WRAP_WRAP.json │ │ ├── check_061_MATCH_MATCH.json │ │ ├── check_061_MATCH_WRAP.json │ │ ├── check_061_WRAP_MATCH.json │ │ ├── check_061_WRAP_WRAP.json │ │ ├── check_062_MATCH_MATCH.json │ │ ├── check_062_MATCH_WRAP.json │ │ ├── check_062_WRAP_MATCH.json │ │ ├── check_062_WRAP_WRAP.json │ │ ├── check_063_MATCH_MATCH.json │ │ ├── check_063_MATCH_WRAP.json │ │ ├── check_063_WRAP_MATCH.json │ │ ├── check_063_WRAP_WRAP.json │ │ ├── check_064_MATCH_MATCH.json │ │ ├── check_064_MATCH_WRAP.json │ │ ├── check_064_WRAP_MATCH.json │ │ ├── check_064_WRAP_WRAP.json │ │ ├── check_065_MATCH_MATCH.json │ │ ├── check_065_MATCH_WRAP.json │ │ ├── check_065_WRAP_MATCH.json │ │ ├── check_065_WRAP_WRAP.json │ │ ├── check_066_MATCH_MATCH.json │ │ ├── check_066_MATCH_WRAP.json │ │ ├── check_066_WRAP_MATCH.json │ │ ├── check_066_WRAP_WRAP.json │ │ ├── check_067_MATCH_MATCH.json │ │ ├── check_067_MATCH_WRAP.json │ │ ├── check_067_WRAP_MATCH.json │ │ ├── check_067_WRAP_WRAP.json │ │ ├── check_068_MATCH_MATCH.json │ │ ├── check_068_MATCH_WRAP.json │ │ ├── check_068_WRAP_MATCH.json │ │ ├── check_068_WRAP_WRAP.json │ │ ├── check_069_MATCH_MATCH.json │ │ ├── check_069_MATCH_WRAP.json │ │ ├── check_069_WRAP_MATCH.json │ │ ├── check_069_WRAP_WRAP.json │ │ ├── check_070_MATCH_MATCH.json │ │ ├── check_070_MATCH_WRAP.json │ │ ├── check_070_WRAP_MATCH.json │ │ ├── check_070_WRAP_WRAP.json │ │ ├── check_071_MATCH_MATCH.json │ │ ├── check_071_MATCH_WRAP.json │ │ ├── check_071_WRAP_MATCH.json │ │ ├── check_071_WRAP_WRAP.json │ │ ├── check_072_MATCH_MATCH.json │ │ ├── check_072_MATCH_WRAP.json │ │ ├── check_072_WRAP_MATCH.json │ │ ├── check_072_WRAP_WRAP.json │ │ ├── check_073_MATCH_MATCH.json │ │ ├── check_073_MATCH_WRAP.json │ │ ├── check_073_WRAP_MATCH.json │ │ ├── check_073_WRAP_WRAP.json │ │ ├── check_074_MATCH_MATCH.json │ │ ├── check_074_MATCH_WRAP.json │ │ ├── check_074_WRAP_MATCH.json │ │ ├── check_074_WRAP_WRAP.json │ │ ├── check_075_MATCH_MATCH.json │ │ ├── check_075_MATCH_WRAP.json │ │ ├── check_075_WRAP_MATCH.json │ │ ├── check_075_WRAP_WRAP.json │ │ ├── check_076_MATCH_MATCH.json │ │ ├── check_076_MATCH_WRAP.json │ │ ├── check_076_WRAP_MATCH.json │ │ ├── check_076_WRAP_WRAP.json │ │ ├── check_077_MATCH_MATCH.json │ │ ├── check_077_MATCH_WRAP.json │ │ ├── check_077_WRAP_MATCH.json │ │ ├── check_077_WRAP_WRAP.json │ │ ├── check_078_MATCH_MATCH.json │ │ ├── check_078_MATCH_WRAP.json │ │ ├── check_078_WRAP_MATCH.json │ │ ├── check_078_WRAP_WRAP.json │ │ ├── check_079_MATCH_MATCH.json │ │ ├── check_079_MATCH_WRAP.json │ │ ├── check_079_WRAP_MATCH.json │ │ ├── check_079_WRAP_WRAP.json │ │ ├── check_080_MATCH_MATCH.json │ │ ├── check_080_MATCH_WRAP.json │ │ ├── check_080_WRAP_MATCH.json │ │ ├── check_080_WRAP_WRAP.json │ │ ├── check_081_MATCH_MATCH.json │ │ ├── check_081_MATCH_WRAP.json │ │ ├── check_081_WRAP_MATCH.json │ │ ├── check_081_WRAP_WRAP.json │ │ ├── check_082_MATCH_MATCH.json │ │ ├── check_082_MATCH_WRAP.json │ │ ├── check_082_WRAP_MATCH.json │ │ ├── check_082_WRAP_WRAP.json │ │ ├── check_083_MATCH_MATCH.json │ │ ├── check_083_MATCH_WRAP.json │ │ ├── check_083_WRAP_MATCH.json │ │ ├── check_083_WRAP_WRAP.json │ │ ├── check_084_MATCH_MATCH.json │ │ ├── check_084_MATCH_WRAP.json │ │ ├── check_084_WRAP_MATCH.json │ │ ├── check_084_WRAP_WRAP.json │ │ ├── check_085_MATCH_MATCH.json │ │ ├── check_085_MATCH_WRAP.json │ │ ├── check_085_WRAP_MATCH.json │ │ ├── check_085_WRAP_WRAP.json │ │ ├── check_086_MATCH_MATCH.json │ │ ├── check_086_MATCH_WRAP.json │ │ ├── check_086_WRAP_MATCH.json │ │ ├── check_086_WRAP_WRAP.json │ │ ├── check_087_MATCH_MATCH.json │ │ ├── check_087_MATCH_WRAP.json │ │ ├── check_087_WRAP_MATCH.json │ │ ├── check_087_WRAP_WRAP.json │ │ ├── check_088_MATCH_MATCH.json │ │ ├── check_088_MATCH_WRAP.json │ │ ├── check_088_WRAP_MATCH.json │ │ ├── check_088_WRAP_WRAP.json │ │ ├── check_089_MATCH_MATCH.json │ │ ├── check_089_MATCH_WRAP.json │ │ ├── check_089_WRAP_MATCH.json │ │ ├── check_089_WRAP_WRAP.json │ │ ├── check_090_MATCH_MATCH.json │ │ ├── check_090_MATCH_WRAP.json │ │ ├── check_090_WRAP_MATCH.json │ │ ├── check_090_WRAP_WRAP.json │ │ ├── check_091_MATCH_MATCH.json │ │ ├── check_091_MATCH_WRAP.json │ │ ├── check_091_WRAP_MATCH.json │ │ ├── check_091_WRAP_WRAP.json │ │ ├── check_092_MATCH_MATCH.json │ │ ├── check_092_MATCH_WRAP.json │ │ ├── check_092_WRAP_MATCH.json │ │ ├── check_092_WRAP_WRAP.json │ │ ├── check_093_MATCH_MATCH.json │ │ ├── check_093_MATCH_WRAP.json │ │ ├── check_093_WRAP_MATCH.json │ │ ├── check_093_WRAP_WRAP.json │ │ ├── check_094_MATCH_MATCH.json │ │ ├── check_094_MATCH_WRAP.json │ │ ├── check_094_WRAP_MATCH.json │ │ ├── check_094_WRAP_WRAP.json │ │ ├── check_095_MATCH_MATCH.json │ │ ├── check_095_MATCH_WRAP.json │ │ ├── check_095_WRAP_MATCH.json │ │ ├── check_095_WRAP_WRAP.json │ │ ├── check_096_MATCH_MATCH.json │ │ ├── check_096_MATCH_WRAP.json │ │ ├── check_096_WRAP_MATCH.json │ │ ├── check_096_WRAP_WRAP.json │ │ ├── check_097_MATCH_MATCH.json │ │ ├── check_097_MATCH_WRAP.json │ │ ├── check_097_WRAP_MATCH.json │ │ ├── check_097_WRAP_WRAP.json │ │ ├── check_098_MATCH_MATCH.json │ │ ├── check_098_MATCH_WRAP.json │ │ ├── check_098_WRAP_MATCH.json │ │ ├── check_098_WRAP_WRAP.json │ │ ├── check_099_MATCH_MATCH.json │ │ ├── check_099_MATCH_WRAP.json │ │ ├── check_099_WRAP_MATCH.json │ │ ├── check_099_WRAP_WRAP.json │ │ ├── check_100_MATCH_MATCH.json │ │ ├── check_100_MATCH_WRAP.json │ │ ├── check_100_WRAP_MATCH.json │ │ ├── check_100_WRAP_WRAP.json │ │ ├── check_101_MATCH_MATCH.json │ │ ├── check_101_MATCH_WRAP.json │ │ ├── check_101_WRAP_MATCH.json │ │ ├── check_101_WRAP_WRAP.json │ │ ├── check_102_MATCH_MATCH.json │ │ ├── check_102_MATCH_WRAP.json │ │ ├── check_102_WRAP_MATCH.json │ │ ├── check_102_WRAP_WRAP.json │ │ ├── check_103_MATCH_MATCH.json │ │ ├── check_103_MATCH_WRAP.json │ │ ├── check_103_WRAP_MATCH.json │ │ ├── check_103_WRAP_WRAP.json │ │ ├── check_104_MATCH_MATCH.json │ │ ├── check_104_MATCH_WRAP.json │ │ ├── check_104_WRAP_MATCH.json │ │ ├── check_104_WRAP_WRAP.json │ │ ├── check_105_MATCH_MATCH.json │ │ ├── check_105_MATCH_WRAP.json │ │ ├── check_105_WRAP_MATCH.json │ │ ├── check_105_WRAP_WRAP.json │ │ ├── check_106_MATCH_MATCH.json │ │ ├── check_106_MATCH_WRAP.json │ │ ├── check_106_WRAP_MATCH.json │ │ ├── check_106_WRAP_WRAP.json │ │ ├── check_107_MATCH_MATCH.json │ │ ├── check_107_MATCH_WRAP.json │ │ ├── check_107_WRAP_MATCH.json │ │ ├── check_107_WRAP_WRAP.json │ │ ├── check_108_MATCH_MATCH.json │ │ ├── check_108_MATCH_WRAP.json │ │ ├── check_108_WRAP_MATCH.json │ │ ├── check_108_WRAP_WRAP.json │ │ ├── check_109_MATCH_MATCH.json │ │ ├── check_109_MATCH_WRAP.json │ │ ├── check_109_WRAP_MATCH.json │ │ ├── check_109_WRAP_WRAP.json │ │ ├── check_110_MATCH_MATCH.json │ │ ├── check_110_MATCH_WRAP.json │ │ ├── check_110_WRAP_MATCH.json │ │ ├── check_110_WRAP_WRAP.json │ │ ├── check_111_MATCH_MATCH.json │ │ ├── check_111_MATCH_WRAP.json │ │ ├── check_111_WRAP_MATCH.json │ │ ├── check_111_WRAP_WRAP.json │ │ ├── check_112_MATCH_MATCH.json │ │ ├── check_112_MATCH_WRAP.json │ │ ├── check_112_WRAP_MATCH.json │ │ ├── check_112_WRAP_WRAP.json │ │ ├── check_113_MATCH_MATCH.json │ │ ├── check_113_MATCH_WRAP.json │ │ ├── check_113_WRAP_MATCH.json │ │ ├── check_113_WRAP_WRAP.json │ │ ├── check_114_MATCH_MATCH.json │ │ ├── check_114_MATCH_WRAP.json │ │ ├── check_114_WRAP_MATCH.json │ │ ├── check_114_WRAP_WRAP.json │ │ ├── check_115_MATCH_MATCH.json │ │ ├── check_115_MATCH_WRAP.json │ │ ├── check_115_WRAP_MATCH.json │ │ ├── check_115_WRAP_WRAP.json │ │ ├── check_116_MATCH_MATCH.json │ │ ├── check_116_MATCH_WRAP.json │ │ ├── check_116_WRAP_MATCH.json │ │ ├── check_116_WRAP_WRAP.json │ │ ├── check_117_MATCH_MATCH.json │ │ ├── check_117_MATCH_WRAP.json │ │ ├── check_117_WRAP_MATCH.json │ │ ├── check_117_WRAP_WRAP.json │ │ ├── check_118_MATCH_MATCH.json │ │ ├── check_118_MATCH_WRAP.json │ │ ├── check_118_WRAP_MATCH.json │ │ ├── check_118_WRAP_WRAP.json │ │ ├── check_119_MATCH_MATCH.json │ │ ├── check_119_MATCH_WRAP.json │ │ ├── check_119_WRAP_MATCH.json │ │ ├── check_119_WRAP_WRAP.json │ │ ├── check_120_MATCH_MATCH.json │ │ ├── check_120_MATCH_WRAP.json │ │ ├── check_120_WRAP_MATCH.json │ │ ├── check_120_WRAP_WRAP.json │ │ ├── check_121_MATCH_MATCH.json │ │ ├── check_121_MATCH_WRAP.json │ │ ├── check_121_WRAP_MATCH.json │ │ ├── check_121_WRAP_WRAP.json │ │ ├── check_122_MATCH_MATCH.json │ │ ├── check_122_MATCH_WRAP.json │ │ ├── check_122_WRAP_MATCH.json │ │ ├── check_122_WRAP_WRAP.json │ │ ├── check_123_MATCH_MATCH.json │ │ ├── check_123_MATCH_WRAP.json │ │ ├── check_123_WRAP_MATCH.json │ │ ├── check_123_WRAP_WRAP.json │ │ ├── check_124_MATCH_MATCH.json │ │ ├── check_124_MATCH_WRAP.json │ │ ├── check_124_WRAP_MATCH.json │ │ ├── check_124_WRAP_WRAP.json │ │ ├── check_125_MATCH_MATCH.json │ │ ├── check_125_MATCH_WRAP.json │ │ ├── check_125_WRAP_MATCH.json │ │ ├── check_125_WRAP_WRAP.json │ │ ├── check_126_MATCH_MATCH.json │ │ ├── check_126_MATCH_WRAP.json │ │ ├── check_126_WRAP_MATCH.json │ │ ├── check_126_WRAP_WRAP.json │ │ ├── check_127_MATCH_MATCH.json │ │ ├── check_127_MATCH_WRAP.json │ │ ├── check_127_WRAP_MATCH.json │ │ ├── check_127_WRAP_WRAP.json │ │ ├── check_128_MATCH_MATCH.json │ │ ├── check_128_MATCH_WRAP.json │ │ ├── check_128_WRAP_MATCH.json │ │ ├── check_128_WRAP_WRAP.json │ │ ├── check_129_MATCH_MATCH.json │ │ ├── check_129_MATCH_WRAP.json │ │ ├── check_129_WRAP_MATCH.json │ │ ├── check_129_WRAP_WRAP.json │ │ ├── check_130_MATCH_MATCH.json │ │ ├── check_130_MATCH_WRAP.json │ │ ├── check_130_WRAP_MATCH.json │ │ ├── check_130_WRAP_WRAP.json │ │ ├── check_131_MATCH_MATCH.json │ │ ├── check_131_MATCH_WRAP.json │ │ ├── check_131_WRAP_MATCH.json │ │ ├── check_131_WRAP_WRAP.json │ │ ├── check_132_MATCH_MATCH.json │ │ ├── check_132_MATCH_WRAP.json │ │ ├── check_132_WRAP_MATCH.json │ │ ├── check_132_WRAP_WRAP.json │ │ ├── check_133_MATCH_MATCH.json │ │ ├── check_133_MATCH_WRAP.json │ │ ├── check_133_WRAP_MATCH.json │ │ ├── check_133_WRAP_WRAP.json │ │ ├── check_134_MATCH_MATCH.json │ │ ├── check_134_MATCH_WRAP.json │ │ ├── check_134_WRAP_MATCH.json │ │ ├── check_134_WRAP_WRAP.json │ │ ├── check_135_MATCH_MATCH.json │ │ ├── check_135_MATCH_WRAP.json │ │ ├── check_135_WRAP_MATCH.json │ │ ├── check_135_WRAP_WRAP.json │ │ ├── check_136_MATCH_MATCH.json │ │ ├── check_136_MATCH_WRAP.json │ │ ├── check_136_WRAP_MATCH.json │ │ ├── check_136_WRAP_WRAP.json │ │ ├── check_137_MATCH_MATCH.json │ │ ├── check_137_MATCH_WRAP.json │ │ ├── check_137_WRAP_MATCH.json │ │ ├── check_137_WRAP_WRAP.json │ │ ├── check_138_MATCH_MATCH.json │ │ ├── check_138_MATCH_WRAP.json │ │ ├── check_138_WRAP_MATCH.json │ │ ├── check_138_WRAP_WRAP.json │ │ ├── check_139_MATCH_MATCH.json │ │ ├── check_139_MATCH_WRAP.json │ │ ├── check_139_WRAP_MATCH.json │ │ ├── check_139_WRAP_WRAP.json │ │ ├── check_140_MATCH_MATCH.json │ │ ├── check_140_MATCH_WRAP.json │ │ ├── check_140_WRAP_MATCH.json │ │ ├── check_140_WRAP_WRAP.json │ │ ├── check_141_MATCH_MATCH.json │ │ ├── check_141_MATCH_WRAP.json │ │ ├── check_141_WRAP_MATCH.json │ │ ├── check_141_WRAP_WRAP.json │ │ ├── check_142_MATCH_MATCH.json │ │ ├── check_142_MATCH_WRAP.json │ │ ├── check_142_WRAP_MATCH.json │ │ ├── check_142_WRAP_WRAP.json │ │ ├── check_143_MATCH_MATCH.json │ │ ├── check_143_MATCH_WRAP.json │ │ ├── check_143_WRAP_MATCH.json │ │ ├── check_143_WRAP_WRAP.json │ │ ├── check_144_MATCH_MATCH.json │ │ ├── check_144_MATCH_WRAP.json │ │ ├── check_144_WRAP_MATCH.json │ │ ├── check_144_WRAP_WRAP.json │ │ ├── check_145_MATCH_MATCH.json │ │ ├── check_145_MATCH_WRAP.json │ │ ├── check_145_WRAP_MATCH.json │ │ ├── check_145_WRAP_WRAP.json │ │ ├── check_146_MATCH_MATCH.json │ │ ├── check_146_MATCH_WRAP.json │ │ ├── check_146_WRAP_MATCH.json │ │ ├── check_146_WRAP_WRAP.json │ │ ├── check_147_MATCH_MATCH.json │ │ ├── check_147_MATCH_WRAP.json │ │ ├── check_147_WRAP_MATCH.json │ │ ├── check_147_WRAP_WRAP.json │ │ ├── check_148_MATCH_MATCH.json │ │ ├── check_148_MATCH_WRAP.json │ │ ├── check_148_WRAP_MATCH.json │ │ ├── check_148_WRAP_WRAP.json │ │ ├── check_149_MATCH_MATCH.json │ │ ├── check_149_MATCH_WRAP.json │ │ ├── check_149_WRAP_MATCH.json │ │ ├── check_149_WRAP_WRAP.json │ │ ├── check_150_MATCH_MATCH.json │ │ ├── check_150_MATCH_WRAP.json │ │ ├── check_150_WRAP_MATCH.json │ │ ├── check_150_WRAP_WRAP.json │ │ ├── check_151_MATCH_MATCH.json │ │ ├── check_151_MATCH_WRAP.json │ │ ├── check_151_WRAP_MATCH.json │ │ ├── check_151_WRAP_WRAP.json │ │ ├── check_152_MATCH_MATCH.json │ │ ├── check_152_MATCH_WRAP.json │ │ ├── check_152_WRAP_MATCH.json │ │ ├── check_152_WRAP_WRAP.json │ │ ├── check_153_MATCH_MATCH.json │ │ ├── check_153_MATCH_WRAP.json │ │ ├── check_153_WRAP_MATCH.json │ │ ├── check_153_WRAP_WRAP.json │ │ ├── check_154_MATCH_MATCH.json │ │ ├── check_154_MATCH_WRAP.json │ │ ├── check_154_WRAP_MATCH.json │ │ ├── check_154_WRAP_WRAP.json │ │ ├── check_155_MATCH_MATCH.json │ │ ├── check_155_MATCH_WRAP.json │ │ ├── check_155_WRAP_MATCH.json │ │ ├── check_155_WRAP_WRAP.json │ │ ├── check_156_MATCH_MATCH.json │ │ ├── check_156_MATCH_WRAP.json │ │ ├── check_156_WRAP_MATCH.json │ │ ├── check_156_WRAP_WRAP.json │ │ ├── check_157_MATCH_MATCH.json │ │ ├── check_157_MATCH_WRAP.json │ │ ├── check_157_WRAP_MATCH.json │ │ ├── check_157_WRAP_WRAP.json │ │ ├── check_158_MATCH_MATCH.json │ │ ├── check_158_MATCH_WRAP.json │ │ ├── check_158_WRAP_MATCH.json │ │ ├── check_158_WRAP_WRAP.json │ │ ├── check_159_MATCH_MATCH.json │ │ ├── check_159_MATCH_WRAP.json │ │ ├── check_159_WRAP_MATCH.json │ │ ├── check_159_WRAP_WRAP.json │ │ ├── check_160_MATCH_MATCH.json │ │ ├── check_160_MATCH_WRAP.json │ │ ├── check_160_WRAP_MATCH.json │ │ ├── check_160_WRAP_WRAP.json │ │ ├── check_161_MATCH_MATCH.json │ │ ├── check_161_MATCH_WRAP.json │ │ ├── check_161_WRAP_MATCH.json │ │ ├── check_161_WRAP_WRAP.json │ │ ├── check_162_MATCH_MATCH.json │ │ ├── check_162_MATCH_WRAP.json │ │ ├── check_162_WRAP_MATCH.json │ │ ├── check_162_WRAP_WRAP.json │ │ ├── check_163_MATCH_MATCH.json │ │ ├── check_163_MATCH_WRAP.json │ │ ├── check_163_WRAP_MATCH.json │ │ ├── check_163_WRAP_WRAP.json │ │ ├── check_164_MATCH_MATCH.json │ │ ├── check_164_MATCH_WRAP.json │ │ ├── check_164_WRAP_MATCH.json │ │ ├── check_164_WRAP_WRAP.json │ │ ├── check_165_MATCH_MATCH.json │ │ ├── check_165_MATCH_WRAP.json │ │ ├── check_165_WRAP_MATCH.json │ │ ├── check_165_WRAP_WRAP.json │ │ ├── check_166_MATCH_MATCH.json │ │ ├── check_166_MATCH_WRAP.json │ │ ├── check_166_WRAP_MATCH.json │ │ ├── check_166_WRAP_WRAP.json │ │ ├── check_167_MATCH_MATCH.json │ │ ├── check_167_MATCH_WRAP.json │ │ ├── check_167_WRAP_MATCH.json │ │ ├── check_167_WRAP_WRAP.json │ │ ├── check_168_MATCH_MATCH.json │ │ ├── check_168_MATCH_WRAP.json │ │ ├── check_168_WRAP_MATCH.json │ │ ├── check_168_WRAP_WRAP.json │ │ ├── check_169_MATCH_MATCH.json │ │ ├── check_169_MATCH_WRAP.json │ │ ├── check_169_WRAP_MATCH.json │ │ ├── check_169_WRAP_WRAP.json │ │ ├── check_170_MATCH_MATCH.json │ │ ├── check_170_MATCH_WRAP.json │ │ ├── check_170_WRAP_MATCH.json │ │ ├── check_170_WRAP_WRAP.json │ │ ├── check_171_MATCH_MATCH.json │ │ ├── check_171_MATCH_WRAP.json │ │ ├── check_171_WRAP_MATCH.json │ │ ├── check_171_WRAP_WRAP.json │ │ ├── check_172_MATCH_MATCH.json │ │ ├── check_172_MATCH_WRAP.json │ │ ├── check_172_WRAP_MATCH.json │ │ ├── check_172_WRAP_WRAP.json │ │ ├── check_173_MATCH_MATCH.json │ │ ├── check_173_MATCH_WRAP.json │ │ ├── check_173_WRAP_MATCH.json │ │ ├── check_173_WRAP_WRAP.json │ │ ├── check_174_MATCH_MATCH.json │ │ ├── check_174_MATCH_WRAP.json │ │ ├── check_174_WRAP_MATCH.json │ │ ├── check_174_WRAP_WRAP.json │ │ ├── check_175_MATCH_MATCH.json │ │ ├── check_175_MATCH_WRAP.json │ │ ├── check_175_WRAP_MATCH.json │ │ ├── check_175_WRAP_WRAP.json │ │ ├── check_176_MATCH_MATCH.json │ │ ├── check_176_MATCH_WRAP.json │ │ ├── check_176_WRAP_MATCH.json │ │ ├── check_176_WRAP_WRAP.json │ │ ├── check_177_MATCH_MATCH.json │ │ ├── check_177_MATCH_WRAP.json │ │ ├── check_177_WRAP_MATCH.json │ │ ├── check_177_WRAP_WRAP.json │ │ ├── check_178_MATCH_MATCH.json │ │ ├── check_178_MATCH_WRAP.json │ │ ├── check_178_WRAP_MATCH.json │ │ ├── check_178_WRAP_WRAP.json │ │ ├── check_179_MATCH_MATCH.json │ │ ├── check_179_MATCH_WRAP.json │ │ ├── check_179_WRAP_MATCH.json │ │ ├── check_179_WRAP_WRAP.json │ │ ├── check_180_MATCH_MATCH.json │ │ ├── check_180_MATCH_WRAP.json │ │ ├── check_180_WRAP_MATCH.json │ │ ├── check_180_WRAP_WRAP.json │ │ ├── check_181_MATCH_MATCH.json │ │ ├── check_181_MATCH_WRAP.json │ │ ├── check_181_WRAP_MATCH.json │ │ ├── check_181_WRAP_WRAP.json │ │ ├── check_182_MATCH_MATCH.json │ │ ├── check_182_MATCH_WRAP.json │ │ ├── check_182_WRAP_MATCH.json │ │ ├── check_182_WRAP_WRAP.json │ │ ├── check_183_MATCH_MATCH.json │ │ ├── check_183_MATCH_WRAP.json │ │ ├── check_183_WRAP_MATCH.json │ │ ├── check_183_WRAP_WRAP.json │ │ ├── check_184_MATCH_MATCH.json │ │ ├── check_184_MATCH_WRAP.json │ │ ├── check_184_WRAP_MATCH.json │ │ ├── check_184_WRAP_WRAP.json │ │ ├── check_185_MATCH_MATCH.json │ │ ├── check_185_MATCH_WRAP.json │ │ ├── check_185_WRAP_MATCH.json │ │ ├── check_185_WRAP_WRAP.json │ │ ├── check_186_MATCH_MATCH.json │ │ ├── check_186_MATCH_WRAP.json │ │ ├── check_186_WRAP_MATCH.json │ │ ├── check_186_WRAP_WRAP.json │ │ ├── check_187_MATCH_MATCH.json │ │ ├── check_187_MATCH_WRAP.json │ │ ├── check_187_WRAP_MATCH.json │ │ ├── check_187_WRAP_WRAP.json │ │ ├── check_188_MATCH_MATCH.json │ │ ├── check_188_MATCH_WRAP.json │ │ ├── check_188_WRAP_MATCH.json │ │ ├── check_188_WRAP_WRAP.json │ │ ├── check_189_MATCH_MATCH.json │ │ ├── check_189_MATCH_WRAP.json │ │ ├── check_189_WRAP_MATCH.json │ │ ├── check_189_WRAP_WRAP.json │ │ ├── check_190_MATCH_MATCH.json │ │ ├── check_190_MATCH_WRAP.json │ │ ├── check_190_WRAP_MATCH.json │ │ ├── check_190_WRAP_WRAP.json │ │ ├── check_191_MATCH_MATCH.json │ │ ├── check_191_MATCH_WRAP.json │ │ ├── check_191_WRAP_MATCH.json │ │ ├── check_191_WRAP_WRAP.json │ │ ├── check_192_MATCH_MATCH.json │ │ ├── check_192_MATCH_WRAP.json │ │ ├── check_192_WRAP_MATCH.json │ │ ├── check_192_WRAP_WRAP.json │ │ ├── check_193_MATCH_MATCH.json │ │ ├── check_193_MATCH_WRAP.json │ │ ├── check_193_WRAP_MATCH.json │ │ ├── check_193_WRAP_WRAP.json │ │ ├── check_194_MATCH_MATCH.json │ │ ├── check_194_MATCH_WRAP.json │ │ ├── check_194_WRAP_MATCH.json │ │ ├── check_194_WRAP_WRAP.json │ │ ├── check_195_MATCH_MATCH.json │ │ ├── check_195_MATCH_WRAP.json │ │ ├── check_195_WRAP_MATCH.json │ │ ├── check_195_WRAP_WRAP.json │ │ ├── check_196_MATCH_MATCH.json │ │ ├── check_196_MATCH_WRAP.json │ │ ├── check_196_WRAP_MATCH.json │ │ ├── check_196_WRAP_WRAP.json │ │ ├── check_197_MATCH_MATCH.json │ │ ├── check_197_MATCH_WRAP.json │ │ ├── check_197_WRAP_MATCH.json │ │ ├── check_197_WRAP_WRAP.json │ │ ├── check_198_MATCH_MATCH.json │ │ ├── check_198_MATCH_WRAP.json │ │ ├── check_198_WRAP_MATCH.json │ │ ├── check_198_WRAP_WRAP.json │ │ ├── check_199_MATCH_MATCH.json │ │ ├── check_199_MATCH_WRAP.json │ │ ├── check_199_WRAP_MATCH.json │ │ ├── check_199_WRAP_WRAP.json │ │ ├── check_200_MATCH_MATCH.json │ │ ├── check_200_MATCH_WRAP.json │ │ ├── check_200_WRAP_MATCH.json │ │ ├── check_200_WRAP_WRAP.json │ │ ├── check_201_MATCH_MATCH.json │ │ ├── check_201_MATCH_WRAP.json │ │ ├── check_201_WRAP_MATCH.json │ │ ├── check_201_WRAP_WRAP.json │ │ ├── check_202_MATCH_MATCH.json │ │ ├── check_202_MATCH_WRAP.json │ │ ├── check_202_WRAP_MATCH.json │ │ ├── check_202_WRAP_WRAP.json │ │ ├── check_203_MATCH_MATCH.json │ │ ├── check_203_MATCH_WRAP.json │ │ ├── check_203_WRAP_MATCH.json │ │ ├── check_203_WRAP_WRAP.json │ │ ├── check_204_MATCH_MATCH.json │ │ ├── check_204_MATCH_WRAP.json │ │ ├── check_204_WRAP_MATCH.json │ │ ├── check_204_WRAP_WRAP.json │ │ ├── check_205_MATCH_MATCH.json │ │ ├── check_205_MATCH_WRAP.json │ │ ├── check_205_WRAP_MATCH.json │ │ ├── check_205_WRAP_WRAP.json │ │ ├── check_206_MATCH_MATCH.json │ │ ├── check_206_MATCH_WRAP.json │ │ ├── check_206_WRAP_MATCH.json │ │ ├── check_206_WRAP_WRAP.json │ │ ├── check_207_MATCH_MATCH.json │ │ ├── check_207_MATCH_WRAP.json │ │ ├── check_207_WRAP_MATCH.json │ │ ├── check_207_WRAP_WRAP.json │ │ ├── check_208_MATCH_MATCH.json │ │ ├── check_208_MATCH_WRAP.json │ │ ├── check_208_WRAP_MATCH.json │ │ ├── check_208_WRAP_WRAP.json │ │ ├── check_209_MATCH_MATCH.json │ │ ├── check_209_MATCH_WRAP.json │ │ ├── check_209_WRAP_MATCH.json │ │ ├── check_209_WRAP_WRAP.json │ │ ├── check_210_MATCH_MATCH.json │ │ ├── check_210_MATCH_WRAP.json │ │ ├── check_210_WRAP_MATCH.json │ │ ├── check_210_WRAP_WRAP.json │ │ ├── check_212_MATCH_MATCH.json │ │ ├── check_212_MATCH_WRAP.json │ │ ├── check_212_WRAP_MATCH.json │ │ ├── check_212_WRAP_WRAP.json │ │ ├── check_213_MATCH_MATCH.json │ │ ├── check_213_MATCH_WRAP.json │ │ ├── check_213_WRAP_MATCH.json │ │ ├── check_213_WRAP_WRAP.json │ │ ├── check_214_MATCH_MATCH.json │ │ ├── check_214_MATCH_WRAP.json │ │ ├── check_214_WRAP_MATCH.json │ │ ├── check_214_WRAP_WRAP.json │ │ ├── check_215_MATCH_MATCH.json │ │ ├── check_215_MATCH_WRAP.json │ │ ├── check_215_WRAP_MATCH.json │ │ ├── check_215_WRAP_WRAP.json │ │ ├── check_216_MATCH_MATCH.json │ │ ├── check_216_MATCH_WRAP.json │ │ ├── check_216_WRAP_MATCH.json │ │ ├── check_216_WRAP_WRAP.json │ │ ├── check_217_MATCH_MATCH.json │ │ ├── check_217_MATCH_WRAP.json │ │ ├── check_217_WRAP_MATCH.json │ │ ├── check_217_WRAP_WRAP.json │ │ ├── check_218_MATCH_MATCH.json │ │ ├── check_218_MATCH_WRAP.json │ │ ├── check_218_WRAP_MATCH.json │ │ ├── check_218_WRAP_WRAP.json │ │ ├── check_219_MATCH_MATCH.json │ │ ├── check_219_MATCH_WRAP.json │ │ ├── check_219_WRAP_MATCH.json │ │ ├── check_219_WRAP_WRAP.json │ │ ├── check_220_MATCH_MATCH.json │ │ ├── check_220_MATCH_WRAP.json │ │ ├── check_220_WRAP_MATCH.json │ │ ├── check_220_WRAP_WRAP.json │ │ ├── check_221_MATCH_MATCH.json │ │ ├── check_221_MATCH_WRAP.json │ │ ├── check_221_WRAP_MATCH.json │ │ ├── check_221_WRAP_WRAP.json │ │ ├── check_222_MATCH_MATCH.json │ │ ├── check_222_MATCH_WRAP.json │ │ ├── check_222_WRAP_MATCH.json │ │ ├── check_222_WRAP_WRAP.json │ │ ├── check_223_MATCH_MATCH.json │ │ ├── check_223_MATCH_WRAP.json │ │ ├── check_223_WRAP_MATCH.json │ │ ├── check_223_WRAP_WRAP.json │ │ ├── check_224_MATCH_MATCH.json │ │ ├── check_224_MATCH_WRAP.json │ │ ├── check_224_WRAP_MATCH.json │ │ ├── check_224_WRAP_WRAP.json │ │ ├── check_225_MATCH_MATCH.json │ │ ├── check_225_MATCH_WRAP.json │ │ ├── check_225_WRAP_MATCH.json │ │ ├── check_225_WRAP_WRAP.json │ │ ├── check_226_MATCH_MATCH.json │ │ ├── check_226_MATCH_WRAP.json │ │ ├── check_226_WRAP_MATCH.json │ │ ├── check_226_WRAP_WRAP.json │ │ ├── check_227_MATCH_MATCH.json │ │ ├── check_227_MATCH_WRAP.json │ │ ├── check_227_WRAP_MATCH.json │ │ ├── check_227_WRAP_WRAP.json │ │ ├── check_228_MATCH_MATCH.json │ │ ├── check_228_MATCH_WRAP.json │ │ ├── check_228_WRAP_MATCH.json │ │ ├── check_228_WRAP_WRAP.json │ │ ├── check_229_MATCH_MATCH.json │ │ ├── check_229_MATCH_WRAP.json │ │ ├── check_229_WRAP_MATCH.json │ │ ├── check_229_WRAP_WRAP.json │ │ ├── check_230_MATCH_MATCH.json │ │ ├── check_230_MATCH_WRAP.json │ │ ├── check_230_WRAP_MATCH.json │ │ ├── check_230_WRAP_WRAP.json │ │ ├── check_231_MATCH_MATCH.json │ │ ├── check_231_MATCH_WRAP.json │ │ ├── check_231_WRAP_MATCH.json │ │ ├── check_231_WRAP_WRAP.json │ │ ├── check_232_MATCH_MATCH.json │ │ ├── check_232_MATCH_WRAP.json │ │ ├── check_232_WRAP_MATCH.json │ │ ├── check_232_WRAP_WRAP.json │ │ ├── check_233_MATCH_MATCH.json │ │ ├── check_233_MATCH_WRAP.json │ │ ├── check_233_WRAP_MATCH.json │ │ ├── check_233_WRAP_WRAP.json │ │ ├── check_234_MATCH_MATCH.json │ │ ├── check_234_MATCH_WRAP.json │ │ ├── check_234_WRAP_MATCH.json │ │ ├── check_234_WRAP_WRAP.json │ │ ├── check_235_MATCH_MATCH.json │ │ ├── check_235_MATCH_WRAP.json │ │ ├── check_235_WRAP_MATCH.json │ │ ├── check_235_WRAP_WRAP.json │ │ ├── check_236_MATCH_MATCH.json │ │ ├── check_236_MATCH_WRAP.json │ │ ├── check_236_WRAP_MATCH.json │ │ ├── check_236_WRAP_WRAP.json │ │ ├── check_237_MATCH_MATCH.json │ │ ├── check_237_MATCH_WRAP.json │ │ ├── check_237_WRAP_MATCH.json │ │ ├── check_237_WRAP_WRAP.json │ │ ├── check_238_MATCH_MATCH.json │ │ ├── check_238_MATCH_WRAP.json │ │ ├── check_238_WRAP_MATCH.json │ │ ├── check_238_WRAP_WRAP.json │ │ ├── check_239_MATCH_MATCH.json │ │ ├── check_239_MATCH_WRAP.json │ │ ├── check_239_WRAP_MATCH.json │ │ ├── check_239_WRAP_WRAP.json │ │ ├── check_240_MATCH_MATCH.json │ │ ├── check_240_MATCH_WRAP.json │ │ ├── check_240_WRAP_MATCH.json │ │ ├── check_240_WRAP_WRAP.json │ │ ├── check_241_MATCH_MATCH.json │ │ ├── check_241_MATCH_WRAP.json │ │ ├── check_241_WRAP_MATCH.json │ │ ├── check_241_WRAP_WRAP.json │ │ ├── check_242_MATCH_MATCH.json │ │ ├── check_242_MATCH_WRAP.json │ │ ├── check_242_WRAP_MATCH.json │ │ ├── check_242_WRAP_WRAP.json │ │ ├── check_243_MATCH_MATCH.json │ │ ├── check_243_MATCH_WRAP.json │ │ ├── check_243_WRAP_MATCH.json │ │ ├── check_243_WRAP_WRAP.json │ │ ├── check_244_MATCH_MATCH.json │ │ ├── check_244_MATCH_WRAP.json │ │ ├── check_244_WRAP_MATCH.json │ │ ├── check_244_WRAP_WRAP.json │ │ ├── check_245_MATCH_MATCH.json │ │ ├── check_245_MATCH_WRAP.json │ │ ├── check_245_WRAP_MATCH.json │ │ ├── check_245_WRAP_WRAP.json │ │ ├── check_246_MATCH_MATCH.json │ │ ├── check_246_MATCH_WRAP.json │ │ ├── check_246_WRAP_MATCH.json │ │ ├── check_246_WRAP_WRAP.json │ │ ├── check_247_MATCH_MATCH.json │ │ ├── check_247_MATCH_WRAP.json │ │ ├── check_247_WRAP_MATCH.json │ │ ├── check_247_WRAP_WRAP.json │ │ ├── check_248_MATCH_MATCH.json │ │ ├── check_248_MATCH_WRAP.json │ │ ├── check_248_WRAP_MATCH.json │ │ ├── check_248_WRAP_WRAP.json │ │ ├── check_249_MATCH_MATCH.json │ │ ├── check_249_MATCH_WRAP.json │ │ ├── check_249_WRAP_MATCH.json │ │ ├── check_249_WRAP_WRAP.json │ │ ├── check_250_MATCH_MATCH.json │ │ ├── check_250_MATCH_WRAP.json │ │ ├── check_250_WRAP_MATCH.json │ │ ├── check_250_WRAP_WRAP.json │ │ ├── check_251_MATCH_MATCH.json │ │ ├── check_251_MATCH_WRAP.json │ │ ├── check_251_WRAP_MATCH.json │ │ ├── check_251_WRAP_WRAP.json │ │ ├── check_252_MATCH_MATCH.json │ │ ├── check_252_MATCH_WRAP.json │ │ ├── check_252_WRAP_MATCH.json │ │ ├── check_252_WRAP_WRAP.json │ │ ├── check_253_MATCH_MATCH.json │ │ ├── check_253_MATCH_WRAP.json │ │ ├── check_253_WRAP_MATCH.json │ │ ├── check_253_WRAP_WRAP.json │ │ ├── check_254_MATCH_MATCH.json │ │ ├── check_254_MATCH_WRAP.json │ │ ├── check_254_WRAP_MATCH.json │ │ ├── check_254_WRAP_WRAP.json │ │ ├── check_255_MATCH_MATCH.json │ │ ├── check_255_MATCH_WRAP.json │ │ ├── check_255_WRAP_MATCH.json │ │ ├── check_255_WRAP_WRAP.json │ │ ├── check_256_MATCH_MATCH.json │ │ ├── check_256_MATCH_WRAP.json │ │ ├── check_256_WRAP_MATCH.json │ │ ├── check_256_WRAP_WRAP.json │ │ ├── check_257_MATCH_MATCH.json │ │ ├── check_257_MATCH_WRAP.json │ │ ├── check_257_WRAP_MATCH.json │ │ ├── check_257_WRAP_WRAP.json │ │ ├── check_258_MATCH_MATCH.json │ │ ├── check_258_MATCH_WRAP.json │ │ ├── check_258_WRAP_MATCH.json │ │ ├── check_258_WRAP_WRAP.json │ │ ├── check_259_MATCH_MATCH.json │ │ ├── check_259_MATCH_WRAP.json │ │ ├── check_259_WRAP_MATCH.json │ │ ├── check_259_WRAP_WRAP.json │ │ ├── check_260_MATCH_MATCH.json │ │ ├── check_260_MATCH_WRAP.json │ │ ├── check_260_WRAP_MATCH.json │ │ ├── check_260_WRAP_WRAP.json │ │ ├── check_261_MATCH_MATCH.json │ │ ├── check_261_MATCH_WRAP.json │ │ ├── check_261_WRAP_MATCH.json │ │ ├── check_261_WRAP_WRAP.json │ │ ├── check_262_MATCH_MATCH.json │ │ ├── check_262_MATCH_WRAP.json │ │ ├── check_262_WRAP_MATCH.json │ │ ├── check_262_WRAP_WRAP.json │ │ ├── check_263_MATCH_MATCH.json │ │ ├── check_263_MATCH_WRAP.json │ │ ├── check_263_WRAP_MATCH.json │ │ ├── check_263_WRAP_WRAP.json │ │ ├── check_264_MATCH_MATCH.json │ │ ├── check_264_MATCH_WRAP.json │ │ ├── check_264_WRAP_MATCH.json │ │ ├── check_264_WRAP_WRAP.json │ │ ├── check_265_MATCH_MATCH.json │ │ ├── check_265_MATCH_WRAP.json │ │ ├── check_265_WRAP_MATCH.json │ │ ├── check_265_WRAP_WRAP.json │ │ ├── check_266_MATCH_MATCH.json │ │ ├── check_266_MATCH_WRAP.json │ │ ├── check_266_WRAP_MATCH.json │ │ ├── check_266_WRAP_WRAP.json │ │ ├── check_267_MATCH_MATCH.json │ │ ├── check_267_MATCH_WRAP.json │ │ ├── check_267_WRAP_MATCH.json │ │ ├── check_267_WRAP_WRAP.json │ │ ├── check_268_MATCH_MATCH.json │ │ ├── check_268_MATCH_WRAP.json │ │ ├── check_268_WRAP_MATCH.json │ │ ├── check_268_WRAP_WRAP.json │ │ ├── check_269_MATCH_MATCH.json │ │ ├── check_269_MATCH_WRAP.json │ │ ├── check_269_WRAP_MATCH.json │ │ ├── check_269_WRAP_WRAP.json │ │ ├── check_270_MATCH_MATCH.json │ │ ├── check_270_MATCH_WRAP.json │ │ ├── check_270_WRAP_MATCH.json │ │ ├── check_270_WRAP_WRAP.json │ │ ├── check_271_MATCH_MATCH.json │ │ ├── check_271_MATCH_WRAP.json │ │ ├── check_271_WRAP_MATCH.json │ │ ├── check_271_WRAP_WRAP.json │ │ ├── check_272_MATCH_MATCH.json │ │ ├── check_272_MATCH_WRAP.json │ │ ├── check_272_WRAP_MATCH.json │ │ ├── check_272_WRAP_WRAP.json │ │ ├── check_273_MATCH_MATCH.json │ │ ├── check_273_MATCH_WRAP.json │ │ ├── check_273_WRAP_MATCH.json │ │ ├── check_273_WRAP_WRAP.json │ │ ├── check_274_MATCH_MATCH.json │ │ ├── check_274_MATCH_WRAP.json │ │ ├── check_274_WRAP_MATCH.json │ │ ├── check_274_WRAP_WRAP.json │ │ ├── check_275_MATCH_MATCH.json │ │ ├── check_275_MATCH_WRAP.json │ │ ├── check_275_WRAP_MATCH.json │ │ ├── check_275_WRAP_WRAP.json │ │ ├── check_276_MATCH_MATCH.json │ │ ├── check_276_MATCH_WRAP.json │ │ ├── check_276_WRAP_MATCH.json │ │ ├── check_276_WRAP_WRAP.json │ │ ├── check_277_MATCH_MATCH.json │ │ ├── check_277_MATCH_WRAP.json │ │ ├── check_277_WRAP_MATCH.json │ │ ├── check_277_WRAP_WRAP.json │ │ ├── check_278_MATCH_MATCH.json │ │ ├── check_278_MATCH_WRAP.json │ │ ├── check_278_WRAP_MATCH.json │ │ ├── check_278_WRAP_WRAP.json │ │ ├── check_279_MATCH_MATCH.json │ │ ├── check_279_MATCH_WRAP.json │ │ ├── check_279_WRAP_MATCH.json │ │ ├── check_279_WRAP_WRAP.json │ │ ├── check_280_MATCH_MATCH.json │ │ ├── check_280_MATCH_WRAP.json │ │ ├── check_280_WRAP_MATCH.json │ │ ├── check_280_WRAP_WRAP.json │ │ ├── check_281_MATCH_MATCH.json │ │ ├── check_281_MATCH_WRAP.json │ │ ├── check_281_WRAP_MATCH.json │ │ ├── check_281_WRAP_WRAP.json │ │ ├── check_282_MATCH_MATCH.json │ │ ├── check_282_MATCH_WRAP.json │ │ ├── check_282_WRAP_MATCH.json │ │ ├── check_282_WRAP_WRAP.json │ │ ├── check_283_MATCH_MATCH.json │ │ ├── check_283_MATCH_WRAP.json │ │ ├── check_283_WRAP_MATCH.json │ │ ├── check_283_WRAP_WRAP.json │ │ ├── check_284_MATCH_MATCH.json │ │ ├── check_284_MATCH_WRAP.json │ │ ├── check_284_WRAP_MATCH.json │ │ ├── check_284_WRAP_WRAP.json │ │ ├── check_285_MATCH_MATCH.json │ │ ├── check_285_MATCH_WRAP.json │ │ ├── check_285_WRAP_MATCH.json │ │ ├── check_285_WRAP_WRAP.json │ │ ├── check_286_MATCH_MATCH.json │ │ ├── check_286_MATCH_WRAP.json │ │ ├── check_286_WRAP_MATCH.json │ │ ├── check_286_WRAP_WRAP.json │ │ ├── check_287_MATCH_MATCH.json │ │ ├── check_287_MATCH_WRAP.json │ │ ├── check_287_WRAP_MATCH.json │ │ ├── check_287_WRAP_WRAP.json │ │ ├── check_288_MATCH_MATCH.json │ │ ├── check_288_MATCH_WRAP.json │ │ ├── check_288_WRAP_MATCH.json │ │ ├── check_288_WRAP_WRAP.json │ │ ├── check_289_MATCH_MATCH.json │ │ ├── check_289_MATCH_WRAP.json │ │ ├── check_289_WRAP_MATCH.json │ │ ├── check_289_WRAP_WRAP.json │ │ ├── check_290_MATCH_MATCH.json │ │ ├── check_290_MATCH_WRAP.json │ │ ├── check_290_WRAP_MATCH.json │ │ ├── check_290_WRAP_WRAP.json │ │ ├── check_291_MATCH_MATCH.json │ │ ├── check_291_MATCH_WRAP.json │ │ ├── check_291_WRAP_MATCH.json │ │ ├── check_291_WRAP_WRAP.json │ │ ├── check_292_MATCH_MATCH.json │ │ ├── check_292_MATCH_WRAP.json │ │ ├── check_292_WRAP_MATCH.json │ │ ├── check_292_WRAP_WRAP.json │ │ ├── check_293_MATCH_MATCH.json │ │ ├── check_293_MATCH_WRAP.json │ │ ├── check_293_WRAP_MATCH.json │ │ ├── check_293_WRAP_WRAP.json │ │ ├── check_294_MATCH_MATCH.json │ │ ├── check_294_MATCH_WRAP.json │ │ ├── check_294_WRAP_MATCH.json │ │ ├── check_294_WRAP_WRAP.json │ │ ├── check_295_MATCH_MATCH.json │ │ ├── check_295_MATCH_WRAP.json │ │ ├── check_295_WRAP_MATCH.json │ │ ├── check_295_WRAP_WRAP.json │ │ ├── check_296_MATCH_MATCH.json │ │ ├── check_296_MATCH_WRAP.json │ │ ├── check_296_WRAP_MATCH.json │ │ ├── check_296_WRAP_WRAP.json │ │ ├── check_297_MATCH_MATCH.json │ │ ├── check_297_MATCH_WRAP.json │ │ ├── check_297_WRAP_MATCH.json │ │ ├── check_297_WRAP_WRAP.json │ │ ├── check_298_MATCH_MATCH.json │ │ ├── check_298_MATCH_WRAP.json │ │ ├── check_298_WRAP_MATCH.json │ │ ├── check_298_WRAP_WRAP.json │ │ ├── check_299_MATCH_MATCH.json │ │ ├── check_299_MATCH_WRAP.json │ │ ├── check_299_WRAP_MATCH.json │ │ ├── check_299_WRAP_WRAP.json │ │ ├── check_300_MATCH_MATCH.json │ │ ├── check_300_MATCH_WRAP.json │ │ ├── check_300_WRAP_MATCH.json │ │ ├── check_300_WRAP_WRAP.json │ │ ├── check_301_MATCH_MATCH.json │ │ ├── check_301_MATCH_WRAP.json │ │ ├── check_301_WRAP_MATCH.json │ │ ├── check_301_WRAP_WRAP.json │ │ ├── check_302_MATCH_MATCH.json │ │ ├── check_302_MATCH_WRAP.json │ │ ├── check_302_WRAP_MATCH.json │ │ ├── check_302_WRAP_WRAP.json │ │ ├── check_303_MATCH_MATCH.json │ │ ├── check_303_MATCH_WRAP.json │ │ ├── check_303_WRAP_MATCH.json │ │ ├── check_303_WRAP_WRAP.json │ │ ├── check_304_MATCH_MATCH.json │ │ ├── check_304_MATCH_WRAP.json │ │ ├── check_304_WRAP_MATCH.json │ │ ├── check_304_WRAP_WRAP.json │ │ ├── check_305_MATCH_MATCH.json │ │ ├── check_305_MATCH_WRAP.json │ │ ├── check_305_WRAP_MATCH.json │ │ ├── check_305_WRAP_WRAP.json │ │ ├── check_306_MATCH_MATCH.json │ │ ├── check_306_MATCH_WRAP.json │ │ ├── check_306_WRAP_MATCH.json │ │ ├── check_306_WRAP_WRAP.json │ │ ├── check_307_MATCH_MATCH.json │ │ ├── check_307_MATCH_WRAP.json │ │ ├── check_307_WRAP_MATCH.json │ │ ├── check_307_WRAP_WRAP.json │ │ ├── check_308_MATCH_MATCH.json │ │ ├── check_308_MATCH_WRAP.json │ │ ├── check_308_WRAP_MATCH.json │ │ ├── check_308_WRAP_WRAP.json │ │ ├── check_309_MATCH_MATCH.json │ │ ├── check_309_MATCH_WRAP.json │ │ ├── check_309_WRAP_MATCH.json │ │ ├── check_309_WRAP_WRAP.json │ │ ├── check_310_MATCH_MATCH.json │ │ ├── check_310_MATCH_WRAP.json │ │ ├── check_310_WRAP_MATCH.json │ │ ├── check_310_WRAP_WRAP.json │ │ ├── check_311_MATCH_MATCH.json │ │ ├── check_311_MATCH_WRAP.json │ │ ├── check_311_WRAP_MATCH.json │ │ ├── check_311_WRAP_WRAP.json │ │ ├── check_312_MATCH_MATCH.json │ │ ├── check_312_MATCH_WRAP.json │ │ ├── check_312_WRAP_MATCH.json │ │ ├── check_312_WRAP_WRAP.json │ │ ├── check_313_MATCH_MATCH.json │ │ ├── check_313_MATCH_WRAP.json │ │ ├── check_313_WRAP_MATCH.json │ │ ├── check_313_WRAP_WRAP.json │ │ ├── check_314_MATCH_MATCH.json │ │ ├── check_314_MATCH_WRAP.json │ │ ├── check_314_WRAP_MATCH.json │ │ ├── check_314_WRAP_WRAP.json │ │ ├── check_315_MATCH_MATCH.json │ │ ├── check_315_MATCH_WRAP.json │ │ ├── check_315_WRAP_MATCH.json │ │ ├── check_315_WRAP_WRAP.json │ │ ├── check_316_MATCH_MATCH.json │ │ ├── check_316_MATCH_WRAP.json │ │ ├── check_316_WRAP_MATCH.json │ │ ├── check_316_WRAP_WRAP.json │ │ ├── check_317_MATCH_MATCH.json │ │ ├── check_317_MATCH_WRAP.json │ │ ├── check_317_WRAP_MATCH.json │ │ ├── check_317_WRAP_WRAP.json │ │ ├── check_318_MATCH_MATCH.json │ │ ├── check_318_MATCH_WRAP.json │ │ ├── check_318_WRAP_MATCH.json │ │ ├── check_318_WRAP_WRAP.json │ │ ├── check_319_MATCH_MATCH.json │ │ ├── check_319_MATCH_WRAP.json │ │ ├── check_319_WRAP_MATCH.json │ │ ├── check_319_WRAP_WRAP.json │ │ ├── check_320_MATCH_MATCH.json │ │ ├── check_320_MATCH_WRAP.json │ │ ├── check_320_WRAP_MATCH.json │ │ ├── check_320_WRAP_WRAP.json │ │ ├── check_321_MATCH_MATCH.json │ │ ├── check_321_MATCH_WRAP.json │ │ ├── check_321_WRAP_MATCH.json │ │ ├── check_321_WRAP_WRAP.json │ │ ├── check_322_MATCH_MATCH.json │ │ ├── check_322_MATCH_WRAP.json │ │ ├── check_322_WRAP_MATCH.json │ │ ├── check_322_WRAP_WRAP.json │ │ ├── check_323_MATCH_MATCH.json │ │ ├── check_323_MATCH_WRAP.json │ │ ├── check_323_WRAP_MATCH.json │ │ ├── check_323_WRAP_WRAP.json │ │ ├── check_324_MATCH_MATCH.json │ │ ├── check_324_MATCH_WRAP.json │ │ ├── check_324_WRAP_MATCH.json │ │ ├── check_324_WRAP_WRAP.json │ │ ├── check_325_MATCH_MATCH.json │ │ ├── check_325_MATCH_WRAP.json │ │ ├── check_325_WRAP_MATCH.json │ │ ├── check_325_WRAP_WRAP.json │ │ ├── check_326_MATCH_MATCH.json │ │ ├── check_326_MATCH_WRAP.json │ │ ├── check_326_WRAP_MATCH.json │ │ ├── check_326_WRAP_WRAP.json │ │ ├── check_327_MATCH_MATCH.json │ │ ├── check_327_MATCH_WRAP.json │ │ ├── check_327_WRAP_MATCH.json │ │ ├── check_327_WRAP_WRAP.json │ │ ├── check_328_MATCH_MATCH.json │ │ ├── check_328_MATCH_WRAP.json │ │ ├── check_328_WRAP_MATCH.json │ │ ├── check_328_WRAP_WRAP.json │ │ ├── check_329_MATCH_MATCH.json │ │ ├── check_329_MATCH_WRAP.json │ │ ├── check_329_WRAP_MATCH.json │ │ ├── check_329_WRAP_WRAP.json │ │ ├── check_330_MATCH_MATCH.json │ │ ├── check_330_MATCH_WRAP.json │ │ ├── check_330_WRAP_MATCH.json │ │ ├── check_330_WRAP_WRAP.json │ │ ├── check_331_MATCH_MATCH.json │ │ ├── check_331_MATCH_WRAP.json │ │ ├── check_331_WRAP_MATCH.json │ │ ├── check_331_WRAP_WRAP.json │ │ ├── check_332_MATCH_MATCH.json │ │ ├── check_332_MATCH_WRAP.json │ │ ├── check_332_WRAP_MATCH.json │ │ ├── check_332_WRAP_WRAP.json │ │ ├── check_333_MATCH_MATCH.json │ │ ├── check_333_MATCH_WRAP.json │ │ ├── check_333_WRAP_MATCH.json │ │ ├── check_333_WRAP_WRAP.json │ │ ├── check_334_MATCH_MATCH.json │ │ ├── check_334_MATCH_WRAP.json │ │ ├── check_334_WRAP_MATCH.json │ │ ├── check_334_WRAP_WRAP.json │ │ ├── check_335_MATCH_MATCH.json │ │ ├── check_335_MATCH_WRAP.json │ │ ├── check_335_WRAP_MATCH.json │ │ ├── check_335_WRAP_WRAP.json │ │ ├── check_336_MATCH_MATCH.json │ │ ├── check_336_MATCH_WRAP.json │ │ ├── check_336_WRAP_MATCH.json │ │ ├── check_336_WRAP_WRAP.json │ │ ├── check_337_MATCH_MATCH.json │ │ ├── check_337_MATCH_WRAP.json │ │ ├── check_337_WRAP_MATCH.json │ │ ├── check_337_WRAP_WRAP.json │ │ ├── check_338_MATCH_MATCH.json │ │ ├── check_338_MATCH_WRAP.json │ │ ├── check_338_WRAP_MATCH.json │ │ ├── check_338_WRAP_WRAP.json │ │ ├── check_339_MATCH_MATCH.json │ │ ├── check_339_MATCH_WRAP.json │ │ ├── check_339_WRAP_MATCH.json │ │ ├── check_339_WRAP_WRAP.json │ │ ├── check_340_MATCH_MATCH.json │ │ ├── check_340_MATCH_WRAP.json │ │ ├── check_340_WRAP_MATCH.json │ │ ├── check_340_WRAP_WRAP.json │ │ ├── check_341_MATCH_MATCH.json │ │ ├── check_341_MATCH_WRAP.json │ │ ├── check_341_WRAP_MATCH.json │ │ ├── check_341_WRAP_WRAP.json │ │ ├── check_342_MATCH_MATCH.json │ │ ├── check_342_MATCH_WRAP.json │ │ ├── check_342_WRAP_MATCH.json │ │ ├── check_342_WRAP_WRAP.json │ │ ├── check_343_MATCH_MATCH.json │ │ ├── check_343_MATCH_WRAP.json │ │ ├── check_343_WRAP_MATCH.json │ │ ├── check_343_WRAP_WRAP.json │ │ ├── check_344_MATCH_MATCH.json │ │ ├── check_344_MATCH_WRAP.json │ │ ├── check_344_WRAP_MATCH.json │ │ ├── check_344_WRAP_WRAP.json │ │ ├── check_345_MATCH_MATCH.json │ │ ├── check_345_MATCH_WRAP.json │ │ ├── check_345_WRAP_MATCH.json │ │ ├── check_345_WRAP_WRAP.json │ │ ├── check_346_MATCH_MATCH.json │ │ ├── check_346_MATCH_WRAP.json │ │ ├── check_346_WRAP_MATCH.json │ │ ├── check_346_WRAP_WRAP.json │ │ ├── check_347_MATCH_MATCH.json │ │ ├── check_347_MATCH_WRAP.json │ │ ├── check_347_WRAP_MATCH.json │ │ ├── check_347_WRAP_WRAP.json │ │ ├── check_348_MATCH_MATCH.json │ │ ├── check_348_MATCH_WRAP.json │ │ ├── check_348_WRAP_MATCH.json │ │ ├── check_348_WRAP_WRAP.json │ │ ├── check_349_MATCH_MATCH.json │ │ ├── check_349_MATCH_WRAP.json │ │ ├── check_349_WRAP_MATCH.json │ │ ├── check_349_WRAP_WRAP.json │ │ ├── check_350_MATCH_MATCH.json │ │ ├── check_350_MATCH_WRAP.json │ │ ├── check_350_WRAP_MATCH.json │ │ ├── check_350_WRAP_WRAP.json │ │ ├── check_351_MATCH_MATCH.json │ │ ├── check_351_MATCH_WRAP.json │ │ ├── check_351_WRAP_MATCH.json │ │ ├── check_351_WRAP_WRAP.json │ │ ├── check_352_MATCH_MATCH.json │ │ ├── check_352_MATCH_WRAP.json │ │ ├── check_352_WRAP_MATCH.json │ │ ├── check_352_WRAP_WRAP.json │ │ ├── check_353_MATCH_MATCH.json │ │ ├── check_353_MATCH_WRAP.json │ │ ├── check_353_WRAP_MATCH.json │ │ ├── check_353_WRAP_WRAP.json │ │ ├── check_354_MATCH_MATCH.json │ │ ├── check_354_MATCH_WRAP.json │ │ ├── check_354_WRAP_MATCH.json │ │ ├── check_354_WRAP_WRAP.json │ │ ├── check_355_MATCH_MATCH.json │ │ ├── check_355_MATCH_WRAP.json │ │ ├── check_355_WRAP_MATCH.json │ │ ├── check_355_WRAP_WRAP.json │ │ ├── check_356_MATCH_MATCH.json │ │ ├── check_356_MATCH_WRAP.json │ │ ├── check_356_WRAP_MATCH.json │ │ ├── check_356_WRAP_WRAP.json │ │ ├── check_357_MATCH_MATCH.json │ │ ├── check_357_MATCH_WRAP.json │ │ ├── check_357_WRAP_MATCH.json │ │ ├── check_357_WRAP_WRAP.json │ │ ├── check_358_MATCH_MATCH.json │ │ ├── check_358_MATCH_WRAP.json │ │ ├── check_358_WRAP_MATCH.json │ │ ├── check_358_WRAP_WRAP.json │ │ ├── check_359_MATCH_MATCH.json │ │ ├── check_359_MATCH_WRAP.json │ │ ├── check_359_WRAP_MATCH.json │ │ ├── check_359_WRAP_WRAP.json │ │ ├── check_360_MATCH_MATCH.json │ │ ├── check_360_MATCH_WRAP.json │ │ ├── check_360_WRAP_MATCH.json │ │ ├── check_360_WRAP_WRAP.json │ │ ├── check_361_MATCH_MATCH.json │ │ ├── check_361_MATCH_WRAP.json │ │ ├── check_361_WRAP_MATCH.json │ │ ├── check_361_WRAP_WRAP.json │ │ ├── check_362_MATCH_MATCH.json │ │ ├── check_362_MATCH_WRAP.json │ │ ├── check_362_WRAP_MATCH.json │ │ ├── check_362_WRAP_WRAP.json │ │ ├── check_363_MATCH_MATCH.json │ │ ├── check_363_MATCH_WRAP.json │ │ ├── check_363_WRAP_MATCH.json │ │ ├── check_363_WRAP_WRAP.json │ │ ├── check_364_MATCH_MATCH.json │ │ ├── check_364_MATCH_WRAP.json │ │ ├── check_364_WRAP_MATCH.json │ │ ├── check_364_WRAP_WRAP.json │ │ ├── check_365_MATCH_MATCH.json │ │ ├── check_365_MATCH_WRAP.json │ │ ├── check_365_WRAP_MATCH.json │ │ ├── check_365_WRAP_WRAP.json │ │ ├── check_366_MATCH_MATCH.json │ │ ├── check_366_MATCH_WRAP.json │ │ ├── check_366_WRAP_MATCH.json │ │ ├── check_366_WRAP_WRAP.json │ │ ├── check_367_MATCH_MATCH.json │ │ ├── check_367_MATCH_WRAP.json │ │ ├── check_367_WRAP_MATCH.json │ │ ├── check_367_WRAP_WRAP.json │ │ ├── check_368_MATCH_MATCH.json │ │ ├── check_368_MATCH_WRAP.json │ │ ├── check_368_WRAP_MATCH.json │ │ ├── check_368_WRAP_WRAP.json │ │ ├── check_369_MATCH_MATCH.json │ │ ├── check_369_MATCH_WRAP.json │ │ ├── check_369_WRAP_MATCH.json │ │ ├── check_369_WRAP_WRAP.json │ │ ├── check_370_MATCH_MATCH.json │ │ ├── check_370_MATCH_WRAP.json │ │ ├── check_370_WRAP_MATCH.json │ │ ├── check_370_WRAP_WRAP.json │ │ ├── check_371_MATCH_MATCH.json │ │ ├── check_371_MATCH_WRAP.json │ │ ├── check_371_WRAP_MATCH.json │ │ ├── check_371_WRAP_WRAP.json │ │ ├── check_372_MATCH_MATCH.json │ │ ├── check_372_MATCH_WRAP.json │ │ ├── check_372_WRAP_MATCH.json │ │ ├── check_372_WRAP_WRAP.json │ │ ├── check_373_MATCH_MATCH.json │ │ ├── check_373_MATCH_WRAP.json │ │ ├── check_373_WRAP_MATCH.json │ │ ├── check_373_WRAP_WRAP.json │ │ ├── check_374_MATCH_MATCH.json │ │ ├── check_374_MATCH_WRAP.json │ │ ├── check_374_WRAP_MATCH.json │ │ ├── check_374_WRAP_WRAP.json │ │ ├── check_375_MATCH_MATCH.json │ │ ├── check_375_MATCH_WRAP.json │ │ ├── check_375_WRAP_MATCH.json │ │ ├── check_375_WRAP_WRAP.json │ │ ├── check_376_MATCH_MATCH.json │ │ ├── check_376_MATCH_WRAP.json │ │ ├── check_376_WRAP_MATCH.json │ │ ├── check_376_WRAP_WRAP.json │ │ ├── check_377_MATCH_MATCH.json │ │ ├── check_377_MATCH_WRAP.json │ │ ├── check_377_WRAP_MATCH.json │ │ ├── check_377_WRAP_WRAP.json │ │ ├── check_378_MATCH_MATCH.json │ │ ├── check_378_MATCH_WRAP.json │ │ ├── check_378_WRAP_MATCH.json │ │ ├── check_378_WRAP_WRAP.json │ │ ├── check_379_MATCH_MATCH.json │ │ ├── check_379_MATCH_WRAP.json │ │ ├── check_379_WRAP_MATCH.json │ │ ├── check_379_WRAP_WRAP.json │ │ ├── check_380_MATCH_MATCH.json │ │ ├── check_380_MATCH_WRAP.json │ │ ├── check_380_WRAP_MATCH.json │ │ ├── check_380_WRAP_WRAP.json │ │ ├── check_381_MATCH_MATCH.json │ │ ├── check_381_MATCH_WRAP.json │ │ ├── check_381_WRAP_MATCH.json │ │ ├── check_381_WRAP_WRAP.json │ │ ├── check_382_MATCH_MATCH.json │ │ ├── check_382_MATCH_WRAP.json │ │ ├── check_382_WRAP_MATCH.json │ │ ├── check_382_WRAP_WRAP.json │ │ ├── check_383_MATCH_MATCH.json │ │ ├── check_383_MATCH_WRAP.json │ │ ├── check_383_WRAP_MATCH.json │ │ ├── check_383_WRAP_WRAP.json │ │ ├── check_384_MATCH_MATCH.json │ │ ├── check_384_MATCH_WRAP.json │ │ ├── check_384_WRAP_MATCH.json │ │ ├── check_384_WRAP_WRAP.json │ │ ├── check_385_MATCH_MATCH.json │ │ ├── check_385_MATCH_WRAP.json │ │ ├── check_385_WRAP_MATCH.json │ │ ├── check_385_WRAP_WRAP.json │ │ ├── check_386_MATCH_MATCH.json │ │ ├── check_386_MATCH_WRAP.json │ │ ├── check_386_WRAP_MATCH.json │ │ ├── check_386_WRAP_WRAP.json │ │ ├── check_387_MATCH_MATCH.json │ │ ├── check_387_MATCH_WRAP.json │ │ ├── check_387_WRAP_MATCH.json │ │ ├── check_387_WRAP_WRAP.json │ │ ├── check_388_MATCH_MATCH.json │ │ ├── check_388_MATCH_WRAP.json │ │ ├── check_388_WRAP_MATCH.json │ │ ├── check_388_WRAP_WRAP.json │ │ ├── check_389_MATCH_MATCH.json │ │ ├── check_389_MATCH_WRAP.json │ │ ├── check_389_WRAP_MATCH.json │ │ ├── check_389_WRAP_WRAP.json │ │ ├── check_390_MATCH_MATCH.json │ │ ├── check_390_MATCH_WRAP.json │ │ ├── check_390_WRAP_MATCH.json │ │ ├── check_390_WRAP_WRAP.json │ │ ├── check_391_MATCH_MATCH.json │ │ ├── check_391_MATCH_WRAP.json │ │ ├── check_391_WRAP_MATCH.json │ │ ├── check_391_WRAP_WRAP.json │ │ ├── check_394_MATCH_MATCH.json │ │ ├── check_394_MATCH_WRAP.json │ │ ├── check_394_WRAP_MATCH.json │ │ ├── check_394_WRAP_WRAP.json │ │ ├── check_395_MATCH_MATCH.json │ │ ├── check_395_MATCH_WRAP.json │ │ ├── check_395_WRAP_MATCH.json │ │ ├── check_395_WRAP_WRAP.json │ │ ├── check_396_MATCH_MATCH.json │ │ ├── check_396_MATCH_WRAP.json │ │ ├── check_396_WRAP_MATCH.json │ │ ├── check_396_WRAP_WRAP.json │ │ ├── check_397_MATCH_MATCH.json │ │ ├── check_397_MATCH_WRAP.json │ │ ├── check_397_WRAP_MATCH.json │ │ ├── check_397_WRAP_WRAP.json │ │ ├── check_398_MATCH_MATCH.json │ │ ├── check_398_MATCH_WRAP.json │ │ ├── check_398_WRAP_MATCH.json │ │ ├── check_398_WRAP_WRAP.json │ │ ├── check_400_MATCH_MATCH.json │ │ ├── check_400_MATCH_WRAP.json │ │ ├── check_400_WRAP_MATCH.json │ │ ├── check_400_WRAP_WRAP.json │ │ ├── check_401_MATCH_MATCH.json │ │ ├── check_401_MATCH_WRAP.json │ │ ├── check_401_WRAP_MATCH.json │ │ ├── check_401_WRAP_WRAP.json │ │ ├── check_402_MATCH_MATCH.json │ │ ├── check_402_MATCH_WRAP.json │ │ ├── check_402_WRAP_MATCH.json │ │ ├── check_402_WRAP_WRAP.json │ │ ├── check_403_MATCH_MATCH.json │ │ ├── check_403_MATCH_WRAP.json │ │ ├── check_403_WRAP_MATCH.json │ │ ├── check_403_WRAP_WRAP.json │ │ ├── check_404_MATCH_MATCH.json │ │ ├── check_404_MATCH_WRAP.json │ │ ├── check_404_WRAP_MATCH.json │ │ ├── check_404_WRAP_WRAP.json │ │ ├── check_405_MATCH_MATCH.json │ │ ├── check_405_MATCH_WRAP.json │ │ ├── check_405_WRAP_MATCH.json │ │ ├── check_405_WRAP_WRAP.json │ │ ├── check_406_MATCH_MATCH.json │ │ ├── check_406_MATCH_WRAP.json │ │ ├── check_406_WRAP_MATCH.json │ │ ├── check_406_WRAP_WRAP.json │ │ ├── check_407_MATCH_MATCH.json │ │ ├── check_407_MATCH_WRAP.json │ │ ├── check_407_WRAP_MATCH.json │ │ ├── check_407_WRAP_WRAP.json │ │ ├── check_408_MATCH_MATCH.json │ │ ├── check_408_MATCH_WRAP.json │ │ ├── check_408_WRAP_MATCH.json │ │ ├── check_408_WRAP_WRAP.json │ │ ├── check_409_MATCH_MATCH.json │ │ ├── check_409_MATCH_WRAP.json │ │ ├── check_409_WRAP_MATCH.json │ │ ├── check_409_WRAP_WRAP.json │ │ ├── check_410_MATCH_MATCH.json │ │ ├── check_410_MATCH_WRAP.json │ │ ├── check_410_WRAP_MATCH.json │ │ ├── check_410_WRAP_WRAP.json │ │ ├── check_411_MATCH_MATCH.json │ │ ├── check_411_MATCH_WRAP.json │ │ ├── check_411_WRAP_MATCH.json │ │ ├── check_411_WRAP_WRAP.json │ │ ├── check_412_MATCH_MATCH.json │ │ ├── check_412_MATCH_WRAP.json │ │ ├── check_412_WRAP_MATCH.json │ │ ├── check_412_WRAP_WRAP.json │ │ ├── check_413_MATCH_MATCH.json │ │ ├── check_413_MATCH_WRAP.json │ │ ├── check_413_WRAP_MATCH.json │ │ ├── check_413_WRAP_WRAP.json │ │ ├── check_414_MATCH_MATCH.json │ │ ├── check_414_MATCH_WRAP.json │ │ ├── check_414_WRAP_MATCH.json │ │ ├── check_414_WRAP_WRAP.json │ │ ├── check_415_MATCH_MATCH.json │ │ ├── check_415_MATCH_WRAP.json │ │ ├── check_415_WRAP_MATCH.json │ │ ├── check_415_WRAP_WRAP.json │ │ ├── check_416_MATCH_MATCH.json │ │ ├── check_416_MATCH_WRAP.json │ │ ├── check_416_WRAP_MATCH.json │ │ ├── check_416_WRAP_WRAP.json │ │ ├── check_417_MATCH_MATCH.json │ │ ├── check_417_MATCH_WRAP.json │ │ ├── check_417_WRAP_MATCH.json │ │ ├── check_417_WRAP_WRAP.json │ │ ├── check_418_MATCH_MATCH.json │ │ ├── check_418_MATCH_WRAP.json │ │ ├── check_418_WRAP_MATCH.json │ │ ├── check_418_WRAP_WRAP.json │ │ ├── check_419_MATCH_MATCH.json │ │ ├── check_419_MATCH_WRAP.json │ │ ├── check_419_WRAP_MATCH.json │ │ ├── check_419_WRAP_WRAP.json │ │ ├── check_420_MATCH_MATCH.json │ │ ├── check_420_MATCH_WRAP.json │ │ ├── check_420_WRAP_MATCH.json │ │ ├── check_420_WRAP_WRAP.json │ │ ├── check_421_MATCH_MATCH.json │ │ ├── check_421_MATCH_WRAP.json │ │ ├── check_421_WRAP_MATCH.json │ │ ├── check_421_WRAP_WRAP.json │ │ ├── check_422_MATCH_MATCH.json │ │ ├── check_422_MATCH_WRAP.json │ │ ├── check_422_WRAP_MATCH.json │ │ ├── check_422_WRAP_WRAP.json │ │ ├── check_423_MATCH_MATCH.json │ │ ├── check_423_MATCH_WRAP.json │ │ ├── check_423_WRAP_MATCH.json │ │ ├── check_423_WRAP_WRAP.json │ │ ├── check_424_MATCH_MATCH.json │ │ ├── check_424_MATCH_WRAP.json │ │ ├── check_424_WRAP_MATCH.json │ │ ├── check_424_WRAP_WRAP.json │ │ ├── check_425_MATCH_MATCH.json │ │ ├── check_425_MATCH_WRAP.json │ │ ├── check_425_WRAP_MATCH.json │ │ ├── check_425_WRAP_WRAP.json │ │ ├── check_426_MATCH_MATCH.json │ │ ├── check_426_MATCH_WRAP.json │ │ ├── check_426_WRAP_MATCH.json │ │ ├── check_426_WRAP_WRAP.json │ │ ├── check_427_MATCH_MATCH.json │ │ ├── check_427_MATCH_WRAP.json │ │ ├── check_427_WRAP_MATCH.json │ │ ├── check_427_WRAP_WRAP.json │ │ ├── check_430_MATCH_MATCH.json │ │ ├── check_430_MATCH_WRAP.json │ │ ├── check_430_WRAP_MATCH.json │ │ ├── check_430_WRAP_WRAP.json │ │ ├── check_431_MATCH_MATCH.json │ │ ├── check_431_MATCH_WRAP.json │ │ ├── check_431_WRAP_MATCH.json │ │ ├── check_431_WRAP_WRAP.json │ │ ├── check_432_MATCH_MATCH.json │ │ ├── check_432_MATCH_WRAP.json │ │ ├── check_432_WRAP_MATCH.json │ │ ├── check_432_WRAP_WRAP.json │ │ ├── check_433_MATCH_MATCH.json │ │ ├── check_433_MATCH_WRAP.json │ │ ├── check_433_WRAP_MATCH.json │ │ ├── check_433_WRAP_WRAP.json │ │ ├── check_434_MATCH_MATCH.json │ │ ├── check_434_MATCH_WRAP.json │ │ ├── check_434_WRAP_MATCH.json │ │ ├── check_434_WRAP_WRAP.json │ │ ├── check_435_MATCH_MATCH.json │ │ ├── check_435_MATCH_WRAP.json │ │ ├── check_435_WRAP_MATCH.json │ │ ├── check_435_WRAP_WRAP.json │ │ ├── check_436_MATCH_MATCH.json │ │ ├── check_436_MATCH_WRAP.json │ │ ├── check_436_WRAP_MATCH.json │ │ ├── check_436_WRAP_WRAP.json │ │ ├── check_437_MATCH_MATCH.json │ │ ├── check_437_MATCH_WRAP.json │ │ ├── check_437_WRAP_MATCH.json │ │ ├── check_437_WRAP_WRAP.json │ │ ├── check_438_MATCH_MATCH.json │ │ ├── check_438_MATCH_WRAP.json │ │ ├── check_438_WRAP_MATCH.json │ │ ├── check_438_WRAP_WRAP.json │ │ ├── check_439_MATCH_MATCH.json │ │ ├── check_439_MATCH_WRAP.json │ │ ├── check_439_WRAP_MATCH.json │ │ ├── check_439_WRAP_WRAP.json │ │ ├── check_440_MATCH_MATCH.json │ │ ├── check_440_MATCH_WRAP.json │ │ ├── check_440_WRAP_MATCH.json │ │ ├── check_440_WRAP_WRAP.json │ │ ├── check_441_MATCH_MATCH.json │ │ ├── check_441_MATCH_WRAP.json │ │ ├── check_441_WRAP_MATCH.json │ │ ├── check_441_WRAP_WRAP.json │ │ ├── check_442_MATCH_MATCH.json │ │ ├── check_442_MATCH_WRAP.json │ │ ├── check_442_WRAP_MATCH.json │ │ ├── check_442_WRAP_WRAP.json │ │ ├── check_443_MATCH_MATCH.json │ │ ├── check_443_MATCH_WRAP.json │ │ ├── check_443_WRAP_MATCH.json │ │ ├── check_443_WRAP_WRAP.json │ │ ├── check_444_MATCH_MATCH.json │ │ ├── check_444_MATCH_WRAP.json │ │ ├── check_444_WRAP_MATCH.json │ │ ├── check_444_WRAP_WRAP.json │ │ ├── check_445_MATCH_MATCH.json │ │ ├── check_445_MATCH_WRAP.json │ │ ├── check_445_WRAP_MATCH.json │ │ ├── check_445_WRAP_WRAP.json │ │ ├── check_446_MATCH_MATCH.json │ │ ├── check_446_MATCH_WRAP.json │ │ ├── check_446_WRAP_MATCH.json │ │ ├── check_446_WRAP_WRAP.json │ │ ├── check_447_MATCH_MATCH.json │ │ ├── check_447_MATCH_WRAP.json │ │ ├── check_447_WRAP_MATCH.json │ │ └── check_447_WRAP_WRAP.json │ ├── settings.gradle │ └── src │ │ ├── main │ │ └── java │ │ │ └── androidx │ │ │ └── constraintlayout │ │ │ └── validation │ │ │ ├── BoxPlotView.java │ │ │ ├── DeviceConnection.java │ │ │ ├── Display.java │ │ │ ├── GraphView.java │ │ │ └── Main.java │ │ └── test │ │ └── java │ │ └── androidx │ │ └── constraintlayout │ │ └── validation │ │ └── SampleTest.java ├── graph3d │ ├── .idea │ │ ├── .gitignore │ │ └── uiDesigner.xml │ ├── android │ │ └── support │ │ │ └── constraintLayout │ │ │ └── extlib │ │ │ └── graph3d │ │ │ ├── Graph.java │ │ │ ├── Matrix.java │ │ │ ├── Object3D.java │ │ │ ├── Quaternion.java │ │ │ ├── Scene3D.java │ │ │ ├── VectorUtil.java │ │ │ ├── ViewMatrix.java │ │ │ └── objects │ │ │ ├── AxisBox.java │ │ │ └── Surface3D.java │ ├── com │ │ └── support │ │ │ └── constraintlayout │ │ │ └── extlib │ │ │ └── graph3d │ │ │ ├── Graph3dPanel.java │ │ │ └── Main.java │ └── out │ │ └── production │ │ └── graph3d │ │ └── .idea │ │ ├── .gitignore │ │ └── uiDesigner.xml └── interpolationEngines │ ├── Readme.md │ ├── interpolationEngines.iml │ └── src │ ├── main │ └── kotlin │ │ ├── curves │ │ ├── ArcSpline.kt │ │ ├── Cycles.kt │ │ ├── Easing.kt │ │ ├── LinearCurve.kt │ │ ├── MonoSpline.kt │ │ ├── Schlick.kt │ │ ├── Spline.kt │ │ └── StepCurve.kt │ │ └── plot │ │ └── GraphPrint.java │ └── test │ └── kotlin │ └── test │ ├── ArcSplineTest.java │ ├── CycleTest.java │ ├── MonoSplineTest.java │ └── SplineTest.java ├── projects ├── CalculatorExperiments │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── android │ │ │ │ └── support │ │ │ │ └── constraint │ │ │ │ └── calc │ │ │ │ ├── CalcEngine.java │ │ │ │ ├── Graph2D.java │ │ │ │ ├── MainActivity.java │ │ │ │ └── g3d │ │ │ │ ├── Graph3D.java │ │ │ │ ├── Matrix.java │ │ │ │ ├── Quaternion.java │ │ │ │ ├── SurfaceGen.java │ │ │ │ ├── VectorUtil.java │ │ │ │ └── ViewMatrix.java │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── adjust_range.xml │ │ │ ├── arrow.xml │ │ │ ├── calc_calculate.xml │ │ │ ├── ic_baseline_settings_24.xml │ │ │ ├── ic_battery.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_menu.xml │ │ │ └── message.xml │ │ │ ├── font │ │ │ └── didact_gothic.xml │ │ │ ├── layout-land │ │ │ ├── calc.xml │ │ │ ├── design2.xml │ │ │ └── fold.xml │ │ │ ├── layout-sw480dp-land │ │ │ ├── calc.xml │ │ │ ├── design2.xml │ │ │ └── fold.xml │ │ │ ├── layout-sw480dp │ │ │ ├── advance_buttons.xml │ │ │ ├── basic_buttons.xml │ │ │ ├── calc.xml │ │ │ ├── design2.xml │ │ │ └── fold.xml │ │ │ ├── layout │ │ │ ├── advance_buttons.xml │ │ │ ├── basic_buttons.xml │ │ │ ├── calc.xml │ │ │ ├── design2.xml │ │ │ ├── fold.xml │ │ │ └── fold_orig.xml │ │ │ ├── menu │ │ │ └── skin_menu.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ ├── ids.xml │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── font_certs.xml │ │ │ ├── preloaded_fonts.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── calc_scene.xml │ │ │ ├── design2_scene.xml │ │ │ ├── fold_front_land_scene.xml │ │ │ ├── fold_land_scene.xml │ │ │ └── fold_scene.xml │ ├── build.gradle │ ├── constraintlayout │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── consumer-rules.pro │ │ └── proguard-rules.pro │ ├── core │ │ ├── .gitignore │ │ └── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── CameraExperiments │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── codeStyles │ │ │ ├── Project.xml │ │ │ └── codeStyleConfig.xml │ │ └── deploymentTargetDropDown.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── androidx │ │ │ │ └── demo │ │ │ │ └── mycamera │ │ │ │ ├── CameraPreview.java │ │ │ │ ├── ContactPhotoActivity.java │ │ │ │ └── FullscreenActivity.java │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── circle.xml │ │ │ ├── flash_off.xml │ │ │ ├── flip.xml │ │ │ ├── ic_baseline_photo_camera_back_24.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── menu.xml │ │ │ ├── space.jpg │ │ │ └── take_picture.xml │ │ │ ├── layout │ │ │ ├── activity_fullscreen.xml │ │ │ └── contact_photo.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── activity_fullscreen_scene.xml │ │ │ └── contact_photo_scene.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── CarouselExperiments │ ├── .gitignore │ ├── .idea │ │ └── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── androidx │ │ │ │ └── constraintlayout │ │ │ │ └── experiments │ │ │ │ ├── CarouselHelperActivity.kt │ │ │ │ ├── CircularFlowDemoActivity.kt │ │ │ │ ├── Loader.java │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable │ │ │ ├── bryce_canyon.jpg │ │ │ ├── cathedral_rock.jpg │ │ │ ├── death_valley.jpg │ │ │ ├── fitzgerald_marine_reserve.jpg │ │ │ ├── golden_gate_bridge.jpg │ │ │ ├── goldengate.jpg │ │ │ ├── grand_canyon.jpg │ │ │ ├── horseshoe_bend.jpg │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ ├── muir_beach.jpg │ │ │ ├── rainbow_falls.jpg │ │ │ ├── rockaway_beach.jpg │ │ │ ├── sf_coast.jpg │ │ │ ├── shipwreck_1.jpg │ │ │ └── shipwreck_2.jpg │ │ │ ├── layout │ │ │ ├── activity_carousel_helper.xml │ │ │ ├── activity_circular_flow_demo.xml │ │ │ ├── activity_main.xml │ │ │ ├── demo_010_carousel.xml │ │ │ ├── demo_020_carousel.xml │ │ │ ├── demo_030_carousel.xml │ │ │ ├── demo_040_carousel.xml │ │ │ ├── demo_050_carousel.xml │ │ │ └── demo_060_carousel.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── activity_carousel_helper_scene.xml │ │ │ ├── demo_010_carousel_scene.xml │ │ │ ├── demo_020_carousel_scene.xml │ │ │ ├── demo_030_carousel_scene.xml │ │ │ ├── demo_040_carousel_scene.xml │ │ │ ├── demo_050_carousel_scene.xml │ │ │ └── demo_060_carousel_scene.xml │ ├── build.gradle │ ├── constraintlayout │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── consumer-rules.pro │ │ └── proguard-rules.pro │ ├── core │ │ ├── .gitignore │ │ └── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── ComposeConstraintLayout │ ├── .gitignore │ ├── .idea │ │ ├── androidTestResultsUserPreferences.xml │ │ ├── codeStyles │ │ │ ├── Project.xml │ │ │ └── codeStyleConfig.xml │ │ ├── copyright │ │ │ ├── aosp.xml │ │ │ └── profiles_settings.xml │ │ └── inspectionProfiles │ │ │ └── Project_Default.xml │ ├── README.MD │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ ├── androidx │ │ │ │ │ └── constraintlayout │ │ │ │ │ │ ├── coreAndroid │ │ │ │ │ │ └── PhoneState.java │ │ │ │ │ │ └── extension │ │ │ │ │ │ └── util │ │ │ │ │ │ ├── UiDelegate.java │ │ │ │ │ │ ├── Vp.java │ │ │ │ │ │ ├── VpGraphCompose.kt │ │ │ │ │ │ └── VpGraphCore.kt │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── constraintlayout │ │ │ │ │ ├── AttributesDemo.kt │ │ │ │ │ ├── Bug01Activity.kt │ │ │ │ │ ├── Bug01Composable.kt │ │ │ │ │ ├── ConstraintMotionProps.kt │ │ │ │ │ ├── CyclesDemo.kt │ │ │ │ │ ├── DemoCoreDSL01.kt │ │ │ │ │ ├── DemoCoreDSL02.kt │ │ │ │ │ ├── DemoList.kt │ │ │ │ │ ├── FlowDemo.kt │ │ │ │ │ ├── FlowDemo2.kt │ │ │ │ │ ├── FlowDemo3.kt │ │ │ │ │ ├── FlowDemo4.kt │ │ │ │ │ ├── FlowDslDemo.kt │ │ │ │ │ ├── GridDemo.kt │ │ │ │ │ ├── GridDslDemo.kt │ │ │ │ │ ├── GridDslMedium.kt │ │ │ │ │ ├── GridJsonMedium.kt │ │ │ │ │ ├── GridTestDemo.kt │ │ │ │ │ ├── IntroDemoDsl.kt │ │ │ │ │ ├── IntroDemoJson.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── MotionCarouselDemos.kt │ │ │ │ │ ├── MotionComposeExamples.kt │ │ │ │ │ ├── MotionDemo.kt │ │ │ │ │ ├── MotionDemo2.kt │ │ │ │ │ ├── MotionDemo3.kt │ │ │ │ │ ├── MotionFlowDemo.kt │ │ │ │ │ ├── MotionGridDemo.kt │ │ │ │ │ ├── MotionGridDslDemo.kt │ │ │ │ │ ├── MotionGridTestDemo.kt │ │ │ │ │ ├── MotionLayoutJsonPlayer.kt │ │ │ │ │ ├── MotionStatesExample.kt │ │ │ │ │ ├── OnSwipeExperiment.kt │ │ │ │ │ ├── PreferWrap.kt │ │ │ │ │ ├── ResizeExamples.kt │ │ │ │ │ ├── RowColumnDemo.kt │ │ │ │ │ ├── RowColumnDslDemo.kt │ │ │ │ │ ├── constraint │ │ │ │ │ └── dsl │ │ │ │ │ │ ├── Ratio.kt │ │ │ │ │ │ └── Transforms.kt │ │ │ │ │ ├── demos │ │ │ │ │ ├── Demo3.kt │ │ │ │ │ └── Occelator.kt │ │ │ │ │ ├── issues │ │ │ │ │ └── Issue507.kt │ │ │ │ │ ├── link │ │ │ │ │ └── MotionLink.java │ │ │ │ │ ├── motion │ │ │ │ │ └── dsl │ │ │ │ │ │ ├── ExtendingConstraintSets.kt │ │ │ │ │ │ ├── Transforms.kt │ │ │ │ │ │ └── transition │ │ │ │ │ │ ├── Common.kt │ │ │ │ │ │ ├── KeyAttributesDsl.kt │ │ │ │ │ │ ├── KeyCyclesDsl.kt │ │ │ │ │ │ └── KeyPositionsDsl.kt │ │ │ │ │ ├── test.kt │ │ │ │ │ ├── test2.kt │ │ │ │ │ ├── test3.kt │ │ │ │ │ ├── test4.kt │ │ │ │ │ └── verification │ │ │ │ │ ├── AnchorTest01.kt │ │ │ │ │ ├── BarrierTest01.kt │ │ │ │ │ ├── MotionTest01.kt │ │ │ │ │ ├── VTest.kt │ │ │ │ │ ├── VTest02.kt │ │ │ │ │ ├── VerifyActivity.kt │ │ │ │ │ ├── VerifyMotion.kt │ │ │ │ │ ├── VerticalBaseTest01.kt │ │ │ │ │ └── VerticalBaseTest02.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── ic_login.xml │ │ │ │ ├── ic_phone.xml │ │ │ │ ├── intercom_snooze.xml │ │ │ │ └── pepper.jpg │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── raw │ │ │ │ ├── anchortest01 │ │ │ │ ├── anchortest02 │ │ │ │ ├── anchortest03 │ │ │ │ ├── anchortest04 │ │ │ │ ├── anchortest05 │ │ │ │ ├── barriertest01 │ │ │ │ ├── mtest01 │ │ │ │ ├── mtest02 │ │ │ │ ├── mtest03 │ │ │ │ ├── mtest04 │ │ │ │ ├── mtest05 │ │ │ │ ├── mtest06 │ │ │ │ ├── test1 │ │ │ │ ├── test2 │ │ │ │ ├── test3 │ │ │ │ ├── test4 │ │ │ │ ├── test5 │ │ │ │ ├── test6 │ │ │ │ ├── test7 │ │ │ │ ├── test8 │ │ │ │ ├── vbasetest01 │ │ │ │ ├── vbasetest02 │ │ │ │ ├── vbasetest03 │ │ │ │ ├── vbasetest04 │ │ │ │ ├── vbasetest05 │ │ │ │ ├── vbasetest06 │ │ │ │ └── vbasetest07 │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── constraintlayout │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── compose │ │ └── build.gradle │ ├── constraintlayout │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── consumer-rules.pro │ │ └── proguard-rules.pro │ ├── core │ │ ├── .gitignore │ │ └── build.gradle │ ├── dsl-verification │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── consumer-rules.pro │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsl_verification │ │ │ │ ├── MotionVerificationTest.kt │ │ │ │ ├── VerificationTest.kt │ │ │ │ └── VerificationUtils.kt │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsl_verification │ │ │ │ ├── CommonPreviewUtilsCopy.kt │ │ │ │ ├── ComposableInvocator.kt │ │ │ │ ├── constraint │ │ │ │ ├── AspectRatio.kt │ │ │ │ ├── Barriers.kt │ │ │ │ ├── Chains.kt │ │ │ │ ├── CommonConstraintSets.kt │ │ │ │ ├── Dimensions.kt │ │ │ │ ├── Guidelines.kt │ │ │ │ ├── LoginUi.kt │ │ │ │ ├── Rtl.kt │ │ │ │ └── Visibility.kt │ │ │ │ └── motion │ │ │ │ ├── NewMessage.kt │ │ │ │ ├── TestUtil.kt │ │ │ │ └── TextResize.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_login.xml │ │ │ └── raw │ │ │ ├── motion_results.txt │ │ │ └── results.txt │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── macrobenchmark-app │ │ ├── .gitignore │ │ ├── benchmark │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── motionlayout │ │ │ │ └── benchmark │ │ │ │ ├── CollapsibleToolbarTest.kt │ │ │ │ ├── MotionLayoutMacrobenchmark.kt │ │ │ │ └── NewMessageTest.kt │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── macrobenchmark │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── macrobenchmark │ │ │ │ │ ├── CollapsibleToolbar.kt │ │ │ │ │ ├── MotionLayoutBenchmarkActivity.kt │ │ │ │ │ ├── Tips.md │ │ │ │ │ ├── newmessage │ │ │ │ │ ├── NewMessage.kt │ │ │ │ │ └── NewMessageState.kt │ │ │ │ │ ├── testutils │ │ │ │ │ └── components │ │ │ │ │ │ ├── BooleanSelector.kt │ │ │ │ │ │ └── TestableButton.kt │ │ │ │ │ └── ui │ │ │ │ │ ├── components │ │ │ │ │ ├── CardSample.kt │ │ │ │ │ └── SearchBar.kt │ │ │ │ │ ├── sampledata │ │ │ │ │ ├── Images.kt │ │ │ │ │ ├── Strings.kt │ │ │ │ │ └── Time.kt │ │ │ │ │ └── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Shape.kt │ │ │ │ │ ├── Theme.kt │ │ │ │ │ └── Type.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── avatar_1.png │ │ │ │ ├── avatar_10.png │ │ │ │ ├── avatar_11.png │ │ │ │ ├── avatar_12.png │ │ │ │ ├── avatar_13.png │ │ │ │ ├── avatar_14.png │ │ │ │ ├── avatar_15.png │ │ │ │ ├── avatar_16.png │ │ │ │ ├── avatar_2.png │ │ │ │ ├── avatar_3.png │ │ │ │ ├── avatar_4.png │ │ │ │ ├── avatar_5.png │ │ │ │ ├── avatar_6.png │ │ │ │ ├── avatar_7.png │ │ │ │ ├── avatar_8.png │ │ │ │ ├── avatar_9.png │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── ic_no_profile.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── macrobenchmark │ │ │ └── ExampleUnitTest.kt │ ├── schema │ │ └── schema.json │ ├── settings.gradle │ └── tools │ │ └── build.gradle ├── ConstraintLayoutValidation │ ├── .gitignore │ ├── .idea │ │ └── deploymentTargetDropDown.xml │ ├── Convert.sh │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── androidx │ │ │ │ └── constraintlayout │ │ │ │ └── validation │ │ │ │ └── SampleTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── androidx │ │ │ │ │ └── constraintlayout │ │ │ │ │ └── validation │ │ │ │ │ ├── Adapter339.kt │ │ │ │ │ ├── CLFragment.kt │ │ │ │ │ ├── CLFragment_443.kt │ │ │ │ │ ├── CheckDumpJson.java │ │ │ │ │ ├── ConstraintLayoutToJason.java │ │ │ │ │ ├── ConstraintLayoutWithInsetsFix.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── MainActivity_440.kt │ │ │ │ │ ├── MyLinearLayout.kt │ │ │ │ │ ├── RoundBoxInsetLayout.java │ │ │ │ │ ├── Server.java │ │ │ │ │ ├── TestTextView.java │ │ │ │ │ └── TestView.kt │ │ │ └── res │ │ │ │ ├── drawable-nodpi │ │ │ │ └── big_image.png │ │ │ │ ├── drawable-v24 │ │ │ │ ├── background.xml │ │ │ │ ├── button_background.xml │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ ├── shape_test.xml │ │ │ │ └── test.png │ │ │ │ ├── drawable │ │ │ │ ├── bryce_canyon.jpg │ │ │ │ ├── ic_add_black_24dp.xml │ │ │ │ ├── ic_android_black_24dp.xml │ │ │ │ ├── ic_android_black_54dp.xml │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── check_000.xml │ │ │ │ ├── check_001.xml │ │ │ │ ├── check_002.xml │ │ │ │ ├── check_003.xml │ │ │ │ ├── check_004.xml │ │ │ │ ├── check_005.xml │ │ │ │ ├── check_006.xml │ │ │ │ ├── check_007.xml │ │ │ │ ├── check_008.xml │ │ │ │ ├── check_009.xml │ │ │ │ ├── check_010.xml │ │ │ │ ├── check_011.xml │ │ │ │ ├── check_012.xml │ │ │ │ ├── check_013.xml │ │ │ │ ├── check_014.xml │ │ │ │ ├── check_015.xml │ │ │ │ ├── check_016.xml │ │ │ │ ├── check_017.xml │ │ │ │ ├── check_018.xml │ │ │ │ ├── check_019.xml │ │ │ │ ├── check_020.xml │ │ │ │ ├── check_021.xml │ │ │ │ ├── check_022.xml │ │ │ │ ├── check_023.xml │ │ │ │ ├── check_024.xml │ │ │ │ ├── check_025.xml │ │ │ │ ├── check_026.xml │ │ │ │ ├── check_027.xml │ │ │ │ ├── check_028.xml │ │ │ │ ├── check_029.xml │ │ │ │ ├── check_030.xml │ │ │ │ ├── check_031.xml │ │ │ │ ├── check_032.xml │ │ │ │ ├── check_033.xml │ │ │ │ ├── check_034.xml │ │ │ │ ├── check_035.xml │ │ │ │ ├── check_036.xml │ │ │ │ ├── check_037.xml │ │ │ │ ├── check_038.xml │ │ │ │ ├── check_039.xml │ │ │ │ ├── check_040.xml │ │ │ │ ├── check_041.xml │ │ │ │ ├── check_042.xml │ │ │ │ ├── check_043.xml │ │ │ │ ├── check_044.xml │ │ │ │ ├── check_045.xml │ │ │ │ ├── check_046.xml │ │ │ │ ├── check_047.xml │ │ │ │ ├── check_048.xml │ │ │ │ ├── check_049.xml │ │ │ │ ├── check_050.xml │ │ │ │ ├── check_051.xml │ │ │ │ ├── check_052.xml │ │ │ │ ├── check_053.xml │ │ │ │ ├── check_054.xml │ │ │ │ ├── check_055.xml │ │ │ │ ├── check_056.xml │ │ │ │ ├── check_057.xml │ │ │ │ ├── check_058.xml │ │ │ │ ├── check_059.xml │ │ │ │ ├── check_060.xml │ │ │ │ ├── check_061.xml │ │ │ │ ├── check_062.xml │ │ │ │ ├── check_063.xml │ │ │ │ ├── check_064.xml │ │ │ │ ├── check_065.xml │ │ │ │ ├── check_066.xml │ │ │ │ ├── check_067.xml │ │ │ │ ├── check_068.xml │ │ │ │ ├── check_069.xml │ │ │ │ ├── check_070.xml │ │ │ │ ├── check_071.xml │ │ │ │ ├── check_072.xml │ │ │ │ ├── check_073.xml │ │ │ │ ├── check_074.xml │ │ │ │ ├── check_075.xml │ │ │ │ ├── check_076.xml │ │ │ │ ├── check_077.xml │ │ │ │ ├── check_078.xml │ │ │ │ ├── check_079.xml │ │ │ │ ├── check_080.xml │ │ │ │ ├── check_081.xml │ │ │ │ ├── check_082.xml │ │ │ │ ├── check_083.xml │ │ │ │ ├── check_084.xml │ │ │ │ ├── check_085.xml │ │ │ │ ├── check_086.xml │ │ │ │ ├── check_087.xml │ │ │ │ ├── check_088.xml │ │ │ │ ├── check_089.xml │ │ │ │ ├── check_090.xml │ │ │ │ ├── check_091.xml │ │ │ │ ├── check_092.xml │ │ │ │ ├── check_093.xml │ │ │ │ ├── check_094.xml │ │ │ │ ├── check_095.xml │ │ │ │ ├── check_096.xml │ │ │ │ ├── check_097.xml │ │ │ │ ├── check_098.xml │ │ │ │ ├── check_099.xml │ │ │ │ ├── check_100.xml │ │ │ │ ├── check_101.xml │ │ │ │ ├── check_102.xml │ │ │ │ ├── check_103.xml │ │ │ │ ├── check_104.xml │ │ │ │ ├── check_105.xml │ │ │ │ ├── check_106.xml │ │ │ │ ├── check_107.xml │ │ │ │ ├── check_108.xml │ │ │ │ ├── check_109.xml │ │ │ │ ├── check_110.xml │ │ │ │ ├── check_111.xml │ │ │ │ ├── check_112.xml │ │ │ │ ├── check_113.xml │ │ │ │ ├── check_114.xml │ │ │ │ ├── check_115.xml │ │ │ │ ├── check_116.xml │ │ │ │ ├── check_117.xml │ │ │ │ ├── check_118.xml │ │ │ │ ├── check_119.xml │ │ │ │ ├── check_120.xml │ │ │ │ ├── check_121.xml │ │ │ │ ├── check_122.xml │ │ │ │ ├── check_123.xml │ │ │ │ ├── check_124.xml │ │ │ │ ├── check_125.xml │ │ │ │ ├── check_126.xml │ │ │ │ ├── check_127.xml │ │ │ │ ├── check_128.xml │ │ │ │ ├── check_129.xml │ │ │ │ ├── check_130.xml │ │ │ │ ├── check_131.xml │ │ │ │ ├── check_132.xml │ │ │ │ ├── check_133.xml │ │ │ │ ├── check_134.xml │ │ │ │ ├── check_135.xml │ │ │ │ ├── check_136.xml │ │ │ │ ├── check_137.xml │ │ │ │ ├── check_138.xml │ │ │ │ ├── check_139.xml │ │ │ │ ├── check_140.xml │ │ │ │ ├── check_141.xml │ │ │ │ ├── check_142.xml │ │ │ │ ├── check_143.xml │ │ │ │ ├── check_144.xml │ │ │ │ ├── check_145.xml │ │ │ │ ├── check_146.xml │ │ │ │ ├── check_147.xml │ │ │ │ ├── check_148.xml │ │ │ │ ├── check_149.xml │ │ │ │ ├── check_150.xml │ │ │ │ ├── check_151.xml │ │ │ │ ├── check_152.xml │ │ │ │ ├── check_153.xml │ │ │ │ ├── check_154.xml │ │ │ │ ├── check_155.xml │ │ │ │ ├── check_156.xml │ │ │ │ ├── check_157.xml │ │ │ │ ├── check_158.xml │ │ │ │ ├── check_159.xml │ │ │ │ ├── check_160.xml │ │ │ │ ├── check_161.xml │ │ │ │ ├── check_162.xml │ │ │ │ ├── check_163.xml │ │ │ │ ├── check_164.xml │ │ │ │ ├── check_165.xml │ │ │ │ ├── check_166.xml │ │ │ │ ├── check_167.xml │ │ │ │ ├── check_168.xml │ │ │ │ ├── check_169.xml │ │ │ │ ├── check_170.xml │ │ │ │ ├── check_171.xml │ │ │ │ ├── check_172.xml │ │ │ │ ├── check_173.xml │ │ │ │ ├── check_174.xml │ │ │ │ ├── check_175.xml │ │ │ │ ├── check_176.xml │ │ │ │ ├── check_177.xml │ │ │ │ ├── check_178.xml │ │ │ │ ├── check_179.xml │ │ │ │ ├── check_180.xml │ │ │ │ ├── check_181.xml │ │ │ │ ├── check_182.xml │ │ │ │ ├── check_183.xml │ │ │ │ ├── check_184.xml │ │ │ │ ├── check_185.xml │ │ │ │ ├── check_186.xml │ │ │ │ ├── check_187.xml │ │ │ │ ├── check_188.xml │ │ │ │ ├── check_189.xml │ │ │ │ ├── check_190.xml │ │ │ │ ├── check_191.xml │ │ │ │ ├── check_192.xml │ │ │ │ ├── check_193.xml │ │ │ │ ├── check_194.xml │ │ │ │ ├── check_195.xml │ │ │ │ ├── check_196.xml │ │ │ │ ├── check_197.xml │ │ │ │ ├── check_198.xml │ │ │ │ ├── check_199.xml │ │ │ │ ├── check_200.xml │ │ │ │ ├── check_201.xml │ │ │ │ ├── check_202.xml │ │ │ │ ├── check_203.xml │ │ │ │ ├── check_204.xml │ │ │ │ ├── check_205.xml │ │ │ │ ├── check_206.xml │ │ │ │ ├── check_207.xml │ │ │ │ ├── check_208.xml │ │ │ │ ├── check_209.xml │ │ │ │ ├── check_210.xml │ │ │ │ ├── check_212.xml │ │ │ │ ├── check_213.xml │ │ │ │ ├── check_214.xml │ │ │ │ ├── check_215.xml │ │ │ │ ├── check_216.xml │ │ │ │ ├── check_217.xml │ │ │ │ ├── check_218.xml │ │ │ │ ├── check_219.xml │ │ │ │ ├── check_220.xml │ │ │ │ ├── check_221.xml │ │ │ │ ├── check_222.xml │ │ │ │ ├── check_223.xml │ │ │ │ ├── check_224.xml │ │ │ │ ├── check_225.xml │ │ │ │ ├── check_226.xml │ │ │ │ ├── check_227.xml │ │ │ │ ├── check_228.xml │ │ │ │ ├── check_229.xml │ │ │ │ ├── check_230.xml │ │ │ │ ├── check_231.xml │ │ │ │ ├── check_232.xml │ │ │ │ ├── check_233.xml │ │ │ │ ├── check_234.xml │ │ │ │ ├── check_235.xml │ │ │ │ ├── check_236.xml │ │ │ │ ├── check_237.xml │ │ │ │ ├── check_238.xml │ │ │ │ ├── check_239.xml │ │ │ │ ├── check_240.xml │ │ │ │ ├── check_241.xml │ │ │ │ ├── check_242.xml │ │ │ │ ├── check_243.xml │ │ │ │ ├── check_244.xml │ │ │ │ ├── check_245.xml │ │ │ │ ├── check_246.xml │ │ │ │ ├── check_247.xml │ │ │ │ ├── check_248.xml │ │ │ │ ├── check_249.xml │ │ │ │ ├── check_250.xml │ │ │ │ ├── check_251.xml │ │ │ │ ├── check_252.xml │ │ │ │ ├── check_253.xml │ │ │ │ ├── check_254.xml │ │ │ │ ├── check_255.xml │ │ │ │ ├── check_256.xml │ │ │ │ ├── check_257.xml │ │ │ │ ├── check_258.xml │ │ │ │ ├── check_259.xml │ │ │ │ ├── check_260.xml │ │ │ │ ├── check_261.xml │ │ │ │ ├── check_262.xml │ │ │ │ ├── check_263.xml │ │ │ │ ├── check_264.xml │ │ │ │ ├── check_265.xml │ │ │ │ ├── check_266.xml │ │ │ │ ├── check_267.xml │ │ │ │ ├── check_268.xml │ │ │ │ ├── check_269.xml │ │ │ │ ├── check_270.xml │ │ │ │ ├── check_271.xml │ │ │ │ ├── check_272.xml │ │ │ │ ├── check_273.xml │ │ │ │ ├── check_274.xml │ │ │ │ ├── check_275.xml │ │ │ │ ├── check_276.xml │ │ │ │ ├── check_277.xml │ │ │ │ ├── check_278.xml │ │ │ │ ├── check_279.xml │ │ │ │ ├── check_280.xml │ │ │ │ ├── check_281.xml │ │ │ │ ├── check_282.xml │ │ │ │ ├── check_283.xml │ │ │ │ ├── check_284.xml │ │ │ │ ├── check_285.xml │ │ │ │ ├── check_286.xml │ │ │ │ ├── check_287.xml │ │ │ │ ├── check_288.xml │ │ │ │ ├── check_289.xml │ │ │ │ ├── check_290.xml │ │ │ │ ├── check_291.xml │ │ │ │ ├── check_292.xml │ │ │ │ ├── check_293.xml │ │ │ │ ├── check_294.xml │ │ │ │ ├── check_295.xml │ │ │ │ ├── check_296.xml │ │ │ │ ├── check_297.xml │ │ │ │ ├── check_298.xml │ │ │ │ ├── check_299.xml │ │ │ │ ├── check_300.xml │ │ │ │ ├── check_301.xml │ │ │ │ ├── check_302.xml │ │ │ │ ├── check_303.xml │ │ │ │ ├── check_304.xml │ │ │ │ ├── check_305.xml │ │ │ │ ├── check_306.xml │ │ │ │ ├── check_307.xml │ │ │ │ ├── check_308.xml │ │ │ │ ├── check_309.xml │ │ │ │ ├── check_310.xml │ │ │ │ ├── check_311.xml │ │ │ │ ├── check_312.xml │ │ │ │ ├── check_313.xml │ │ │ │ ├── check_314.xml │ │ │ │ ├── check_315.xml │ │ │ │ ├── check_316.xml │ │ │ │ ├── check_317.xml │ │ │ │ ├── check_318.xml │ │ │ │ ├── check_319.xml │ │ │ │ ├── check_320.xml │ │ │ │ ├── check_321.xml │ │ │ │ ├── check_322.xml │ │ │ │ ├── check_323.xml │ │ │ │ ├── check_324.xml │ │ │ │ ├── check_325.xml │ │ │ │ ├── check_326.xml │ │ │ │ ├── check_327.xml │ │ │ │ ├── check_328.xml │ │ │ │ ├── check_329.xml │ │ │ │ ├── check_330.xml │ │ │ │ ├── check_331.xml │ │ │ │ ├── check_332.xml │ │ │ │ ├── check_333.xml │ │ │ │ ├── check_334.xml │ │ │ │ ├── check_335.xml │ │ │ │ ├── check_336.xml │ │ │ │ ├── check_337.xml │ │ │ │ ├── check_338.xml │ │ │ │ ├── check_339.xml │ │ │ │ ├── check_340.xml │ │ │ │ ├── check_341.xml │ │ │ │ ├── check_342.xml │ │ │ │ ├── check_343.xml │ │ │ │ ├── check_344.xml │ │ │ │ ├── check_345.xml │ │ │ │ ├── check_346.xml │ │ │ │ ├── check_347.xml │ │ │ │ ├── check_348.xml │ │ │ │ ├── check_349.xml │ │ │ │ ├── check_350.xml │ │ │ │ ├── check_351.xml │ │ │ │ ├── check_352.xml │ │ │ │ ├── check_353.xml │ │ │ │ ├── check_354.xml │ │ │ │ ├── check_355.xml │ │ │ │ ├── check_356.xml │ │ │ │ ├── check_357.xml │ │ │ │ ├── check_358.xml │ │ │ │ ├── check_359.xml │ │ │ │ ├── check_360.xml │ │ │ │ ├── check_361.xml │ │ │ │ ├── check_362.xml │ │ │ │ ├── check_363.xml │ │ │ │ ├── check_364.xml │ │ │ │ ├── check_365.xml │ │ │ │ ├── check_366.xml │ │ │ │ ├── check_367.xml │ │ │ │ ├── check_368.xml │ │ │ │ ├── check_369.xml │ │ │ │ ├── check_370.xml │ │ │ │ ├── check_371.xml │ │ │ │ ├── check_372.xml │ │ │ │ ├── check_373.xml │ │ │ │ ├── check_374.xml │ │ │ │ ├── check_375.xml │ │ │ │ ├── check_376.xml │ │ │ │ ├── check_377.xml │ │ │ │ ├── check_378.xml │ │ │ │ ├── check_379.xml │ │ │ │ ├── check_380.xml │ │ │ │ ├── check_381.xml │ │ │ │ ├── check_382.xml │ │ │ │ ├── check_383.xml │ │ │ │ ├── check_384.xml │ │ │ │ ├── check_385.xml │ │ │ │ ├── check_386.xml │ │ │ │ ├── check_387.xml │ │ │ │ ├── check_388.xml │ │ │ │ ├── check_389.xml │ │ │ │ ├── check_390.xml │ │ │ │ ├── check_391.xml │ │ │ │ ├── check_394.xml │ │ │ │ ├── check_395.xml │ │ │ │ ├── check_396.xml │ │ │ │ ├── check_397.xml │ │ │ │ ├── check_398.xml │ │ │ │ ├── check_399.xml │ │ │ │ ├── check_400.xml │ │ │ │ ├── check_401.xml │ │ │ │ ├── check_402.xml │ │ │ │ ├── check_403.xml │ │ │ │ ├── check_404.xml │ │ │ │ ├── check_405.xml │ │ │ │ ├── check_406.xml │ │ │ │ ├── check_407.xml │ │ │ │ ├── check_408.xml │ │ │ │ ├── check_409.xml │ │ │ │ ├── check_410.xml │ │ │ │ ├── check_411.xml │ │ │ │ ├── check_412.xml │ │ │ │ ├── check_413.xml │ │ │ │ ├── check_414.xml │ │ │ │ ├── check_415.xml │ │ │ │ ├── check_416.xml │ │ │ │ ├── check_417.xml │ │ │ │ ├── check_418.xml │ │ │ │ ├── check_419.xml │ │ │ │ ├── check_420.xml │ │ │ │ ├── check_421.xml │ │ │ │ ├── check_422.xml │ │ │ │ ├── check_423.xml │ │ │ │ ├── check_424.xml │ │ │ │ ├── check_425.xml │ │ │ │ ├── check_426.xml │ │ │ │ ├── check_427.xml │ │ │ │ ├── check_430.xml │ │ │ │ ├── check_431.xml │ │ │ │ ├── check_432.xml │ │ │ │ ├── check_433.xml │ │ │ │ ├── check_434.xml │ │ │ │ ├── check_435.xml │ │ │ │ ├── check_436.xml │ │ │ │ ├── check_437.xml │ │ │ │ ├── check_438.xml │ │ │ │ ├── check_439.xml │ │ │ │ ├── check_440.xml │ │ │ │ ├── check_441.xml │ │ │ │ ├── check_442.xml │ │ │ │ ├── check_443.xml │ │ │ │ ├── check_444.xml │ │ │ │ ├── check_445.xml │ │ │ │ ├── check_446.xml │ │ │ │ ├── check_447.xml │ │ │ │ ├── common_check_256.xml │ │ │ │ ├── fragment_check_397.xml │ │ │ │ ├── fragment_check_443_big.xml │ │ │ │ ├── fragment_check_443_small.xml │ │ │ │ ├── include_guideline_title_start.xml │ │ │ │ ├── include_remote_control.xml │ │ │ │ ├── list_item_339.xml │ │ │ │ ├── list_item_check_396.xml │ │ │ │ ├── list_item_check_396b.xml │ │ │ │ ├── list_item_switch_check_281.xml │ │ │ │ └── no_check_211.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── ids.xml │ │ │ │ ├── integers.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── styles.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── developertemplate │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── constraintlayout │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── consumer-rules.pro │ │ └── proguard-rules.pro │ ├── core │ │ ├── .gitignore │ │ └── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── DeveloperTemplate │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── developertemplate │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── developertemplate │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── developertemplate │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── constraintlayout │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── consumer-rules.pro │ │ └── proguard-rules.pro │ ├── core │ │ ├── .gitignore │ │ └── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── FoldableExperiments │ ├── .gitignore │ ├── .idea │ │ └── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── experiments │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── experiments │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_main2.xml │ │ │ │ ├── item.xml │ │ │ │ └── test.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── activity_main2_scene.xml │ │ │ │ └── test_scene.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── experiments │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── GridExperiments │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── androidx │ │ │ │ └── constraintlayout │ │ │ │ └── validation │ │ │ │ └── SampleTest.kt │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── android │ │ │ │ └── support │ │ │ │ └── constraint │ │ │ │ └── app │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable │ │ │ ├── avatar.png │ │ │ ├── background.xml │ │ │ ├── bird.png │ │ │ ├── black_background.xml │ │ │ ├── cat.png │ │ │ ├── dog.png │ │ │ └── profile_32.png │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── calculator.xml │ │ │ ├── calendar.xml │ │ │ ├── calendar_dates.xml │ │ │ ├── cat_card.xml │ │ │ ├── column.xml │ │ │ ├── column_in_row.xml │ │ │ ├── dialer.xml │ │ │ ├── dog_card.xml │ │ │ ├── keypad.xml │ │ │ ├── medium.xml │ │ │ ├── profile.xml │ │ │ ├── profile_card.xml │ │ │ ├── responsive.xml │ │ │ ├── row.xml │ │ │ ├── row_in_column.xml │ │ │ ├── search.xml │ │ │ └── view_only.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ └── themes.xml │ ├── build.gradle │ ├── constraintlayout │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── proguard-rules.pro │ ├── core │ │ ├── .gitignore │ │ └── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── MotionLayoutExperiments │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── androidx │ │ │ │ └── constraintlayout │ │ │ │ └── validation │ │ │ │ └── SampleTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── android │ │ │ │ │ └── support │ │ │ │ │ ├── constraint │ │ │ │ │ └── app │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ └── motionlayout │ │ │ │ │ └── experiments │ │ │ │ │ ├── MotionBlur.java │ │ │ │ │ └── TextMorph.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ ├── blue_grad.xml │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── arrow.xml │ │ │ │ ├── background.png │ │ │ │ ├── bgd.png │ │ │ │ ├── cat.jpg │ │ │ │ ├── cube.xml │ │ │ │ ├── dial.xml │ │ │ │ ├── dial_hook.xml │ │ │ │ ├── dot.xml │ │ │ │ ├── earth.png │ │ │ │ ├── globe.xml │ │ │ │ ├── hoford.jpg │ │ │ │ ├── ic_airplane.xml │ │ │ │ ├── ic_baseline_settings_24.xml │ │ │ │ ├── ic_battery.xml │ │ │ │ ├── ic_bluetooth.xml │ │ │ │ ├── ic_cast.xml │ │ │ │ ├── ic_cell.xml │ │ │ │ ├── ic_disturb.xml │ │ │ │ ├── ic_flash.xml │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── ic_screen_rotation.xml │ │ │ │ ├── ic_wifi.xml │ │ │ │ ├── img3.jpg │ │ │ │ ├── message.xml │ │ │ │ ├── moon.png │ │ │ │ ├── mountain.jpg │ │ │ │ ├── mountainblur.jpg │ │ │ │ ├── mountainblur2.jpg │ │ │ │ ├── phone_missed.xml │ │ │ │ ├── rainbow.xml │ │ │ │ ├── rainbow2.xml │ │ │ │ ├── rainbow_t.xml │ │ │ │ ├── rounded.xml │ │ │ │ ├── star8.xml │ │ │ │ ├── sun.png │ │ │ │ ├── triangle.xml │ │ │ │ ├── watch_face.xml │ │ │ │ ├── watch_hand.xml │ │ │ │ └── white_grad.xml │ │ │ │ ├── font │ │ │ │ └── didact_gothic.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── demo_010_clock.xml │ │ │ │ ├── demo_020_imagepage.xml │ │ │ │ ├── demo_030_orbit.xml │ │ │ │ ├── demo_040_dial.xml │ │ │ │ ├── demo_050_octopattern.xml │ │ │ │ ├── demo_060_flying_cards.xml │ │ │ │ ├── demo_070_motion_echo.xml │ │ │ │ ├── demo_080_text.xml │ │ │ │ ├── demo_090_login.xml │ │ │ │ ├── demo_100_keypad.xml │ │ │ │ ├── demo_110_menu.xml │ │ │ │ └── demo_120_text.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── font_certs.xml │ │ │ │ ├── preloaded_fonts.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── demo_010_clock_scene.xml │ │ │ │ ├── demo_020_imagepage_scene.xml │ │ │ │ ├── demo_030_orbit_scene.xml │ │ │ │ ├── demo_040_dial_scene.xml │ │ │ │ ├── demo_050_octopattern_scene.xml │ │ │ │ ├── demo_060_flying_cards_scene.xml │ │ │ │ ├── demo_070_motion_echo_scene.xml │ │ │ │ ├── demo_080_text_scene.xml │ │ │ │ ├── demo_090_login_scene.xml │ │ │ │ ├── demo_100_keypad_scene.xml │ │ │ │ ├── demo_110_menu_scene.xml │ │ │ │ └── demo_120_text_scene.xml │ │ │ └── test │ │ │ └── java │ │ │ └── android │ │ │ └── support │ │ │ └── constraint │ │ │ └── core │ │ │ └── test │ │ │ └── MotionLayoutUtilsUnitTest.java │ ├── build.gradle │ ├── constraintlayout │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── consumer-rules.pro │ │ └── proguard-rules.pro │ ├── core │ │ ├── .gitignore │ │ └── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── MotionLayoutVerification │ ├── .gitignore │ ├── .idea │ │ └── codeStyles │ │ │ ├── Project.xml │ │ │ └── codeStyleConfig.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── androidx │ │ │ │ └── constraintlayout │ │ │ │ └── validation │ │ │ │ └── SampleTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── android │ │ │ │ │ └── support │ │ │ │ │ └── constraint │ │ │ │ │ └── app │ │ │ │ │ ├── Bug010.java │ │ │ │ │ ├── ButtonDriveAnimate.java │ │ │ │ │ ├── CheckArc.java │ │ │ │ │ ├── CheckCLPlugin.java │ │ │ │ │ ├── CheckCSTypes.java │ │ │ │ │ ├── CheckCallbackActivity.java │ │ │ │ │ ├── CheckDumpJson.java │ │ │ │ │ ├── CheckPerformanceMetric.java │ │ │ │ │ ├── CheckSetProgress.java │ │ │ │ │ ├── CheckSetStates.java │ │ │ │ │ ├── CheckSharedValues.java │ │ │ │ │ ├── ConstraintLayoutToJason.java │ │ │ │ │ ├── ConstraintSetDif.java │ │ │ │ │ ├── ConstraintSetVerify.java │ │ │ │ │ ├── CustomSwipeClick.java │ │ │ │ │ ├── CustomVerify.java │ │ │ │ │ ├── DebugButton.java │ │ │ │ │ ├── FullScreenActivity.java │ │ │ │ │ ├── MotionLayoutToJason.java │ │ │ │ │ ├── MyConstraintLayout.java │ │ │ │ │ ├── OnCreateTransiton.java │ │ │ │ │ ├── ParseLayouts.java │ │ │ │ │ ├── RotationActivity.java │ │ │ │ │ ├── RotationAngular.java │ │ │ │ │ ├── RotationRotateToToolbar.java │ │ │ │ │ ├── RotationToolbar.java │ │ │ │ │ ├── RotationUsingRotateTo.java │ │ │ │ │ ├── StackTrak.java │ │ │ │ │ ├── SubMotion.java │ │ │ │ │ ├── Utils.java │ │ │ │ │ └── VerificationActivity.java │ │ │ └── res │ │ │ │ ├── anim │ │ │ │ └── my_custom.xml │ │ │ │ ├── drawable-v24 │ │ │ │ ├── blue_grad.xml │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── arrow.xml │ │ │ │ ├── avatar_1_raster.png │ │ │ │ ├── avatar_2_raster.png │ │ │ │ ├── avatar_3_raster.png │ │ │ │ ├── avatar_4_raster.png │ │ │ │ ├── avatar_5_raster.png │ │ │ │ ├── avatar_6_raster.png │ │ │ │ ├── avatar_7_raster.png │ │ │ │ ├── avatar_8_raster.png │ │ │ │ ├── bgd.png │ │ │ │ ├── cat.jpg │ │ │ │ ├── cube.xml │ │ │ │ ├── dial.xml │ │ │ │ ├── dial_hook.xml │ │ │ │ ├── earth.png │ │ │ │ ├── globe.xml │ │ │ │ ├── hoford.jpg │ │ │ │ ├── ic_airplane.xml │ │ │ │ ├── ic_android.xml │ │ │ │ ├── ic_android_black_24dp.xml │ │ │ │ ├── ic_baseline_6_ft_apart_24.xml │ │ │ │ ├── ic_baseline_ac_unit_24.xml │ │ │ │ ├── ic_baseline_adb_24.xml │ │ │ │ ├── ic_baseline_double_arrow_24.xml │ │ │ │ ├── ic_baseline_redo_24.xml │ │ │ │ ├── ic_baseline_settings_24.xml │ │ │ │ ├── ic_baseline_undo_24.xml │ │ │ │ ├── ic_battery.xml │ │ │ │ ├── ic_bluetooth.xml │ │ │ │ ├── ic_cast.xml │ │ │ │ ├── ic_cell.xml │ │ │ │ ├── ic_disturb.xml │ │ │ │ ├── ic_double_arrow.xml │ │ │ │ ├── ic_flash.xml │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── ic_screen_rotation.xml │ │ │ │ ├── ic_wifi.xml │ │ │ │ ├── img3.jpg │ │ │ │ ├── moon.png │ │ │ │ ├── rainbow.xml │ │ │ │ ├── rainbow2.xml │ │ │ │ ├── rainbow_t.xml │ │ │ │ ├── shape_white.xml │ │ │ │ ├── shape_white_gray.xml │ │ │ │ ├── star8.xml │ │ │ │ ├── sun.png │ │ │ │ ├── texture1.xml │ │ │ │ ├── texture2.xml │ │ │ │ ├── texture3.xml │ │ │ │ ├── texture4.xml │ │ │ │ ├── triangle.xml │ │ │ │ ├── watch_face.xml │ │ │ │ └── watch_hand.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── basic_cl_001.xml │ │ │ │ ├── basic_cl_002.xml │ │ │ │ ├── bug_000.xml │ │ │ │ ├── bug_001.xml │ │ │ │ ├── bug_002.xml │ │ │ │ ├── bug_003.xml │ │ │ │ ├── bug_004.xml │ │ │ │ ├── bug_005.xml │ │ │ │ ├── bug_006.xml │ │ │ │ ├── bug_007.xml │ │ │ │ ├── bug_010.xml │ │ │ │ ├── bug_011.xml │ │ │ │ ├── bug_013.xml │ │ │ │ ├── bug_014.xml │ │ │ │ ├── bug_015.xml │ │ │ │ ├── bug_016.xml │ │ │ │ ├── bug_020.xml │ │ │ │ ├── check_cl01.xml │ │ │ │ ├── constraint_set_01.xml │ │ │ │ ├── keypad_fade.xml │ │ │ │ ├── margin_001.xml │ │ │ │ ├── margin_002.xml │ │ │ │ ├── perf_001.xml │ │ │ │ ├── perf_002.xml │ │ │ │ ├── perf_003.xml │ │ │ │ ├── perf_004.xml │ │ │ │ ├── perf_005.xml │ │ │ │ ├── perf_010.xml │ │ │ │ ├── perf_020.xml │ │ │ │ ├── perf_030.xml │ │ │ │ ├── perf_040.xml │ │ │ │ ├── poc_001.xml │ │ │ │ ├── v_000.xml │ │ │ │ ├── verification_000.xml │ │ │ │ ├── verification_001.xml │ │ │ │ ├── verification_002.xml │ │ │ │ ├── verification_003.xml │ │ │ │ ├── verification_004.xml │ │ │ │ ├── verification_005.xml │ │ │ │ ├── verification_006.xml │ │ │ │ ├── verification_007.xml │ │ │ │ ├── verification_007_cl1.xml │ │ │ │ ├── verification_007_cl2.xml │ │ │ │ ├── verification_008.xml │ │ │ │ ├── verification_009.xml │ │ │ │ ├── verification_010.xml │ │ │ │ ├── verification_011.xml │ │ │ │ ├── verification_012.xml │ │ │ │ ├── verification_013.xml │ │ │ │ ├── verification_014.xml │ │ │ │ ├── verification_015.xml │ │ │ │ ├── verification_016.xml │ │ │ │ ├── verification_017.xml │ │ │ │ ├── verification_018.xml │ │ │ │ ├── verification_019.xml │ │ │ │ ├── verification_020.xml │ │ │ │ ├── verification_021.xml │ │ │ │ ├── verification_022.xml │ │ │ │ ├── verification_023.xml │ │ │ │ ├── verification_024.xml │ │ │ │ ├── verification_025.xml │ │ │ │ ├── verification_026.xml │ │ │ │ ├── verification_027.xml │ │ │ │ ├── verification_028.xml │ │ │ │ ├── verification_029.xml │ │ │ │ ├── verification_030.xml │ │ │ │ ├── verification_031.xml │ │ │ │ ├── verification_032.xml │ │ │ │ ├── verification_033.xml │ │ │ │ ├── verification_034.xml │ │ │ │ ├── verification_035.xml │ │ │ │ ├── verification_036.xml │ │ │ │ ├── verification_037.xml │ │ │ │ ├── verification_038.xml │ │ │ │ ├── verification_039.xml │ │ │ │ ├── verification_040.xml │ │ │ │ ├── verification_041.xml │ │ │ │ ├── verification_042.xml │ │ │ │ ├── verification_043.xml │ │ │ │ ├── verification_045.xml │ │ │ │ ├── verification_050.xml │ │ │ │ ├── verification_051.xml │ │ │ │ ├── verification_052.xml │ │ │ │ ├── verification_055.xml │ │ │ │ ├── verification_056.xml │ │ │ │ ├── verification_057.xml │ │ │ │ ├── verification_060.xml │ │ │ │ ├── verification_061.xml │ │ │ │ ├── verification_062.xml │ │ │ │ ├── verification_063.xml │ │ │ │ ├── verification_064.xml │ │ │ │ ├── verification_065.xml │ │ │ │ ├── verification_070.xml │ │ │ │ ├── verification_071.xml │ │ │ │ ├── verification_075.xml │ │ │ │ ├── verification_080.xml │ │ │ │ ├── verification_090.xml │ │ │ │ ├── verification_091.xml │ │ │ │ ├── verification_095.xml │ │ │ │ ├── verification_096.xml │ │ │ │ ├── verification_097.xml │ │ │ │ ├── verification_098.xml │ │ │ │ ├── verification_101.xml │ │ │ │ ├── verification_110.xml │ │ │ │ ├── verification_111.xml │ │ │ │ ├── verification_120.xml │ │ │ │ ├── verification_130.xml │ │ │ │ ├── verification_130cl.xml │ │ │ │ ├── verification_131.xml │ │ │ │ ├── verification_150.xml │ │ │ │ ├── verification_200.xml │ │ │ │ ├── verification_201.xml │ │ │ │ ├── verification_202.xml │ │ │ │ ├── verification_203.xml │ │ │ │ ├── verification_204.xml │ │ │ │ ├── verification_205.xml │ │ │ │ ├── verification_22a.xml │ │ │ │ ├── verification_300.xml │ │ │ │ ├── verification_300a.xml │ │ │ │ ├── verification_301.xml │ │ │ │ ├── verification_302.xml │ │ │ │ ├── verification_303.xml │ │ │ │ ├── verification_304.xml │ │ │ │ ├── verification_305.xml │ │ │ │ ├── verification_306.xml │ │ │ │ ├── verification_307.xml │ │ │ │ ├── verification_308.xml │ │ │ │ ├── verification_309.xml │ │ │ │ ├── verification_310.xml │ │ │ │ ├── verification_311.xml │ │ │ │ ├── verification_350.xml │ │ │ │ ├── verification_360.xml │ │ │ │ ├── verification_370.xml │ │ │ │ ├── verification_400.xml │ │ │ │ ├── verification_450.xml │ │ │ │ ├── verification_450a.xml │ │ │ │ ├── verification_500.xml │ │ │ │ ├── verification_501.xml │ │ │ │ ├── verification_502.xml │ │ │ │ ├── verification_503.xml │ │ │ │ ├── verification_800.xml │ │ │ │ ├── verification_801.xml │ │ │ │ ├── verification_900.xml │ │ │ │ ├── verification_901.xml │ │ │ │ ├── verification_910.xml │ │ │ │ ├── verification_911.xml │ │ │ │ ├── verification_912.xml │ │ │ │ ├── verification_913.xml │ │ │ │ ├── verification_914.xml │ │ │ │ ├── verification_915.xml │ │ │ │ ├── verification_916.xml │ │ │ │ ├── verification_917.xml │ │ │ │ ├── verification_920.xml │ │ │ │ ├── verification_921.xml │ │ │ │ ├── verification_922.xml │ │ │ │ ├── verification_930.xml │ │ │ │ └── verification_931.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── bug_000_scene.xml │ │ │ │ ├── bug_001_scene.xml │ │ │ │ ├── bug_002_scene.xml │ │ │ │ ├── bug_003_scene.xml │ │ │ │ ├── bug_004_scene.xml │ │ │ │ ├── bug_005_scene.xml │ │ │ │ ├── bug_006_scene.xml │ │ │ │ ├── bug_007_scene.xml │ │ │ │ ├── bug_008_scene.xml │ │ │ │ ├── bug_010_scene.xml │ │ │ │ ├── bug_011_scene.xml │ │ │ │ ├── bug_015_scene.xml │ │ │ │ ├── keypad_scene.xml │ │ │ │ ├── main_scene.xml │ │ │ │ ├── margin_002_scene.xml │ │ │ │ ├── poc_scene_001.xml │ │ │ │ ├── verification_scene_000.xml │ │ │ │ ├── verification_scene_001.xml │ │ │ │ ├── verification_scene_002.xml │ │ │ │ ├── verification_scene_003.xml │ │ │ │ ├── verification_scene_004.xml │ │ │ │ ├── verification_scene_005.xml │ │ │ │ ├── verification_scene_006.xml │ │ │ │ ├── verification_scene_007.xml │ │ │ │ ├── verification_scene_008.xml │ │ │ │ ├── verification_scene_009.xml │ │ │ │ ├── verification_scene_010.xml │ │ │ │ ├── verification_scene_011.xml │ │ │ │ ├── verification_scene_012.xml │ │ │ │ ├── verification_scene_013.xml │ │ │ │ ├── verification_scene_014.xml │ │ │ │ ├── verification_scene_015.xml │ │ │ │ ├── verification_scene_016.xml │ │ │ │ ├── verification_scene_017a.xml │ │ │ │ ├── verification_scene_017b.xml │ │ │ │ ├── verification_scene_018.xml │ │ │ │ ├── verification_scene_019.xml │ │ │ │ ├── verification_scene_020.xml │ │ │ │ ├── verification_scene_021.xml │ │ │ │ ├── verification_scene_023.xml │ │ │ │ ├── verification_scene_024.xml │ │ │ │ ├── verification_scene_025.xml │ │ │ │ ├── verification_scene_026.xml │ │ │ │ ├── verification_scene_027.xml │ │ │ │ ├── verification_scene_028.xml │ │ │ │ ├── verification_scene_029.xml │ │ │ │ ├── verification_scene_030.xml │ │ │ │ ├── verification_scene_031.xml │ │ │ │ ├── verification_scene_032.xml │ │ │ │ ├── verification_scene_033.xml │ │ │ │ ├── verification_scene_034.xml │ │ │ │ ├── verification_scene_035.xml │ │ │ │ ├── verification_scene_036.xml │ │ │ │ ├── verification_scene_037.xml │ │ │ │ ├── verification_scene_038.xml │ │ │ │ ├── verification_scene_039.xml │ │ │ │ ├── verification_scene_040.xml │ │ │ │ ├── verification_scene_041.xml │ │ │ │ ├── verification_scene_042.xml │ │ │ │ ├── verification_scene_043.xml │ │ │ │ ├── verification_scene_045.xml │ │ │ │ ├── verification_scene_050.xml │ │ │ │ ├── verification_scene_052.xml │ │ │ │ ├── verification_scene_055.xml │ │ │ │ ├── verification_scene_056.xml │ │ │ │ ├── verification_scene_057.xml │ │ │ │ ├── verification_scene_060.xml │ │ │ │ ├── verification_scene_061.xml │ │ │ │ ├── verification_scene_062.xml │ │ │ │ ├── verification_scene_063.xml │ │ │ │ ├── verification_scene_064.xml │ │ │ │ ├── verification_scene_065.xml │ │ │ │ ├── verification_scene_070.xml │ │ │ │ ├── verification_scene_071.xml │ │ │ │ ├── verification_scene_075.xml │ │ │ │ ├── verification_scene_080.xml │ │ │ │ ├── verification_scene_090.xml │ │ │ │ ├── verification_scene_091.xml │ │ │ │ ├── verification_scene_095.xml │ │ │ │ ├── verification_scene_096.xml │ │ │ │ ├── verification_scene_097.xml │ │ │ │ ├── verification_scene_098.xml │ │ │ │ ├── verification_scene_098l.xml │ │ │ │ ├── verification_scene_098r.xml │ │ │ │ ├── verification_scene_101.xml │ │ │ │ ├── verification_scene_110.xml │ │ │ │ ├── verification_scene_111.xml │ │ │ │ ├── verification_scene_130.xml │ │ │ │ ├── verification_scene_131.xml │ │ │ │ ├── verification_scene_150.xml │ │ │ │ ├── verification_scene_200.xml │ │ │ │ ├── verification_scene_201.xml │ │ │ │ ├── verification_scene_202.xml │ │ │ │ ├── verification_scene_203.xml │ │ │ │ ├── verification_scene_204.xml │ │ │ │ ├── verification_scene_205.xml │ │ │ │ ├── verification_scene_21c.xml │ │ │ │ ├── verification_scene_23a.xml │ │ │ │ ├── verification_scene_300.xml │ │ │ │ ├── verification_scene_301.xml │ │ │ │ ├── verification_scene_303.xml │ │ │ │ ├── verification_scene_304.xml │ │ │ │ ├── verification_scene_305.xml │ │ │ │ ├── verification_scene_306.xml │ │ │ │ ├── verification_scene_308.xml │ │ │ │ ├── verification_scene_309.xml │ │ │ │ ├── verification_scene_310.xml │ │ │ │ ├── verification_scene_311.xml │ │ │ │ ├── verification_scene_350.xml │ │ │ │ ├── verification_scene_360.xml │ │ │ │ ├── verification_scene_370.xml │ │ │ │ ├── verification_scene_400.xml │ │ │ │ ├── verification_scene_450.xml │ │ │ │ ├── verification_scene_450a.xml │ │ │ │ ├── verification_scene_500.xml │ │ │ │ ├── verification_scene_501.xml │ │ │ │ ├── verification_scene_502.xml │ │ │ │ ├── verification_scene_503.xml │ │ │ │ ├── verification_scene_503b.xml │ │ │ │ ├── verification_scene_503c.xml │ │ │ │ ├── verification_scene_800.xml │ │ │ │ ├── verification_scene_801.xml │ │ │ │ ├── verification_scene_80a.xml │ │ │ │ ├── verification_scene_900.xml │ │ │ │ ├── verification_scene_901.xml │ │ │ │ ├── verification_scene_910.xml │ │ │ │ ├── verification_scene_911.xml │ │ │ │ ├── verification_scene_912.xml │ │ │ │ ├── verification_scene_913.xml │ │ │ │ ├── verification_scene_914.xml │ │ │ │ ├── verification_scene_915.xml │ │ │ │ ├── verification_scene_916.xml │ │ │ │ ├── verification_scene_920.xml │ │ │ │ ├── verification_scene_921.xml │ │ │ │ ├── verification_scene_922.xml │ │ │ │ ├── verification_scene_930.xml │ │ │ │ ├── verification_scene_931.xml │ │ │ │ └── verification_scene_95a.xml │ │ │ └── test │ │ │ └── java │ │ │ └── android │ │ │ └── support │ │ │ └── constraint │ │ │ └── core │ │ │ └── test │ │ │ └── MotionLayoutUtilsUnitTest.java │ ├── build.gradle │ ├── constraintlayout │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── consumer-rules.pro │ │ └── proguard-rules.pro │ ├── core │ │ ├── .gitignore │ │ └── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── RecyclerViewExperiments │ └── .idea │ │ └── encodings.xml └── ViewTransitionExperiments │ ├── .gitignore │ ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── android │ │ │ └── support │ │ │ └── constraint │ │ │ └── app │ │ │ ├── Demo00vt.java │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable-v24 │ │ ├── blue_grad.xml │ │ ├── gradient.xml │ │ ├── ic_launcher_foreground.xml │ │ └── top_grad.xml │ │ ├── drawable │ │ ├── arrow.xml │ │ ├── background.png │ │ ├── cat.jpg │ │ ├── cube.xml │ │ ├── dial.xml │ │ ├── dial_hook.xml │ │ ├── dot.xml │ │ ├── globe.xml │ │ ├── hoford.jpg │ │ ├── ic_airplane.xml │ │ ├── ic_baseline_settings_24.xml │ │ ├── ic_battery.xml │ │ ├── ic_bluetooth.xml │ │ ├── ic_cast.xml │ │ ├── ic_cell.xml │ │ ├── ic_disturb.xml │ │ ├── ic_flash.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_screen_rotation.xml │ │ ├── ic_wifi.xml │ │ ├── img3.jpg │ │ ├── message.xml │ │ └── star8.xml │ │ ├── layout │ │ └── demo_0_vt.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ └── demo_0_vt_scene.xml │ ├── build.gradle │ ├── constraintlayout │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ └── proguard-rules.pro │ ├── core │ ├── .gitignore │ └── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── toolsAndroid └── CLAnalyst ├── .gitignore ├── .idea ├── .gitignore ├── androidTestResultsUserPreferences.xml └── deploymentTargetDropDown.xml ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── android │ │ └── support │ │ └── clanalyst │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── android │ │ │ └── support │ │ │ └── clanalyst │ │ │ ├── DumpCL.java │ │ │ └── MainActivity.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-anydpi-v33 │ │ └── ic_launcher.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── android │ └── support │ └── clanalyst │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/core.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/.github/workflows/core.yml -------------------------------------------------------------------------------- /.github/workflows/experiment-calculator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/.github/workflows/experiment-calculator.yml -------------------------------------------------------------------------------- /.github/workflows/experiment-foldable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/.github/workflows/experiment-foldable.yaml -------------------------------------------------------------------------------- /.github/workflows/experiment-motionlayout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/.github/workflows/experiment-motionlayout.yaml -------------------------------------------------------------------------------- /.github/workflows/experiment-viewtransition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/.github/workflows/experiment-viewtransition.yaml -------------------------------------------------------------------------------- /.github/workflows/old/desktop-cycle-editor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/.github/workflows/old/desktop-cycle-editor.yml -------------------------------------------------------------------------------- /.github/workflows/old/desktop-validation-tool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/.github/workflows/old/desktop-validation-tool.yaml -------------------------------------------------------------------------------- /.github/workflows/old/experiment-carousel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/.github/workflows/old/experiment-carousel.yaml -------------------------------------------------------------------------------- /.github/workflows/old/validation-constraintlayout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/.github/workflows/old/validation-constraintlayout.yaml -------------------------------------------------------------------------------- /.github/workflows/old/validation-motionlayout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/.github/workflows/old/validation-motionlayout.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/README.md -------------------------------------------------------------------------------- /constraintlayout/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /constraintlayout/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /constraintlayout/.idea/copyright/aosp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/.idea/copyright/aosp.xml -------------------------------------------------------------------------------- /constraintlayout/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /constraintlayout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/README.md -------------------------------------------------------------------------------- /constraintlayout/build-logic/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/build-logic/build.gradle -------------------------------------------------------------------------------- /constraintlayout/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/build.gradle -------------------------------------------------------------------------------- /constraintlayout/compose/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /constraintlayout/compose/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/compose/build.gradle -------------------------------------------------------------------------------- /constraintlayout/compose/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/compose/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /constraintlayout/constraintlayout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/constraintlayout/README.md -------------------------------------------------------------------------------- /constraintlayout/constraintlayout/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/constraintlayout/build.gradle -------------------------------------------------------------------------------- /constraintlayout/constraintlayout/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/constraintlayout/lint.xml -------------------------------------------------------------------------------- /constraintlayout/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/core/build.gradle -------------------------------------------------------------------------------- /constraintlayout/core/src/test/resources/check00.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/core/src/test/resources/check00.xml -------------------------------------------------------------------------------- /constraintlayout/core/src/test/resources/check01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/core/src/test/resources/check01.xml -------------------------------------------------------------------------------- /constraintlayout/core/src/test/resources/check02.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/core/src/test/resources/check02.xml -------------------------------------------------------------------------------- /constraintlayout/core/src/test/resources/check03.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/core/src/test/resources/check03.xml -------------------------------------------------------------------------------- /constraintlayout/core/src/test/resources/check04.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/core/src/test/resources/check04.xml -------------------------------------------------------------------------------- /constraintlayout/core/src/test/resources/check05.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/core/src/test/resources/check05.xml -------------------------------------------------------------------------------- /constraintlayout/core/src/test/resources/check06.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/core/src/test/resources/check06.xml -------------------------------------------------------------------------------- /constraintlayout/core/src/test/resources/check07.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/core/src/test/resources/check07.xml -------------------------------------------------------------------------------- /constraintlayout/core/src/test/resources/check08.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/core/src/test/resources/check08.xml -------------------------------------------------------------------------------- /constraintlayout/core/src/test/resources/check09.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/core/src/test/resources/check09.xml -------------------------------------------------------------------------------- /constraintlayout/core/src/test/resources/check10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/core/src/test/resources/check10.xml -------------------------------------------------------------------------------- /constraintlayout/core/src/test/resources/check12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/core/src/test/resources/check12.xml -------------------------------------------------------------------------------- /constraintlayout/core/src/test/resources/check13.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/core/src/test/resources/check13.xml -------------------------------------------------------------------------------- /constraintlayout/core/src/test/resources/check16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/core/src/test/resources/check16.xml -------------------------------------------------------------------------------- /constraintlayout/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/gradle.properties -------------------------------------------------------------------------------- /constraintlayout/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /constraintlayout/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /constraintlayout/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/gradlew -------------------------------------------------------------------------------- /constraintlayout/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/gradlew.bat -------------------------------------------------------------------------------- /constraintlayout/localBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/localBuild.sh -------------------------------------------------------------------------------- /constraintlayout/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/settings.gradle -------------------------------------------------------------------------------- /constraintlayout/swing/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/swing/build.gradle -------------------------------------------------------------------------------- /constraintlayout/tools/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/constraintlayout/tools/build.gradle -------------------------------------------------------------------------------- /demoProjects/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /demoProjects/ComposeAnimatedDragAndDrop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeAnimatedDragAndDrop/.gitignore -------------------------------------------------------------------------------- /demoProjects/ComposeAnimatedDragAndDrop/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /demoProjects/ComposeAnimatedDragAndDrop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeAnimatedDragAndDrop/README.md -------------------------------------------------------------------------------- /demoProjects/ComposeAnimatedDragAndDrop/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /demoProjects/ComposeAnimatedDragAndDrop/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeAnimatedDragAndDrop/app/build.gradle -------------------------------------------------------------------------------- /demoProjects/ComposeAnimatedDragAndDrop/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeAnimatedDragAndDrop/build.gradle -------------------------------------------------------------------------------- /demoProjects/ComposeAnimatedDragAndDrop/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeAnimatedDragAndDrop/gradle.properties -------------------------------------------------------------------------------- /demoProjects/ComposeAnimatedDragAndDrop/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeAnimatedDragAndDrop/gradlew -------------------------------------------------------------------------------- /demoProjects/ComposeAnimatedDragAndDrop/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeAnimatedDragAndDrop/gradlew.bat -------------------------------------------------------------------------------- /demoProjects/ComposeAnimatedDragAndDrop/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeAnimatedDragAndDrop/settings.gradle -------------------------------------------------------------------------------- /demoProjects/ComposeConstraintLayoutDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeConstraintLayoutDemo/.gitignore -------------------------------------------------------------------------------- /demoProjects/ComposeConstraintLayoutDemo/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /demoProjects/ComposeConstraintLayoutDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /demoProjects/ComposeConstraintLayoutDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeConstraintLayoutDemo/app/build.gradle -------------------------------------------------------------------------------- /demoProjects/ComposeConstraintLayoutDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeConstraintLayoutDemo/build.gradle -------------------------------------------------------------------------------- /demoProjects/ComposeConstraintLayoutDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeConstraintLayoutDemo/gradle.properties -------------------------------------------------------------------------------- /demoProjects/ComposeConstraintLayoutDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeConstraintLayoutDemo/gradlew -------------------------------------------------------------------------------- /demoProjects/ComposeConstraintLayoutDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeConstraintLayoutDemo/gradlew.bat -------------------------------------------------------------------------------- /demoProjects/ComposeConstraintLayoutDemo/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeConstraintLayoutDemo/settings.gradle -------------------------------------------------------------------------------- /demoProjects/ComposeDemos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeDemos/.gitignore -------------------------------------------------------------------------------- /demoProjects/ComposeDemos/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /demoProjects/ComposeDemos/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /demoProjects/ComposeDemos/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeDemos/app/build.gradle -------------------------------------------------------------------------------- /demoProjects/ComposeDemos/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeDemos/app/proguard-rules.pro -------------------------------------------------------------------------------- /demoProjects/ComposeDemos/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeDemos/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /demoProjects/ComposeDemos/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeDemos/build.gradle -------------------------------------------------------------------------------- /demoProjects/ComposeDemos/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeDemos/gradle.properties -------------------------------------------------------------------------------- /demoProjects/ComposeDemos/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeDemos/gradlew -------------------------------------------------------------------------------- /demoProjects/ComposeDemos/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeDemos/gradlew.bat -------------------------------------------------------------------------------- /demoProjects/ComposeDemos/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeDemos/settings.gradle -------------------------------------------------------------------------------- /demoProjects/ComposeGraph3d/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeGraph3d/.gitignore -------------------------------------------------------------------------------- /demoProjects/ComposeGraph3d/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /demoProjects/ComposeGraph3d/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /demoProjects/ComposeGraph3d/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeGraph3d/app/build.gradle -------------------------------------------------------------------------------- /demoProjects/ComposeGraph3d/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeGraph3d/app/proguard-rules.pro -------------------------------------------------------------------------------- /demoProjects/ComposeGraph3d/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeGraph3d/build.gradle -------------------------------------------------------------------------------- /demoProjects/ComposeGraph3d/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeGraph3d/gradle.properties -------------------------------------------------------------------------------- /demoProjects/ComposeGraph3d/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeGraph3d/gradlew -------------------------------------------------------------------------------- /demoProjects/ComposeGraph3d/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeGraph3d/gradlew.bat -------------------------------------------------------------------------------- /demoProjects/ComposeGraph3d/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeGraph3d/settings.gradle -------------------------------------------------------------------------------- /demoProjects/ComposeMail/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeMail/.gitignore -------------------------------------------------------------------------------- /demoProjects/ComposeMail/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /demoProjects/ComposeMail/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeMail/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /demoProjects/ComposeMail/.idea/copyright/aosp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeMail/.idea/copyright/aosp.xml -------------------------------------------------------------------------------- /demoProjects/ComposeMail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeMail/README.md -------------------------------------------------------------------------------- /demoProjects/ComposeMail/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /demoProjects/ComposeMail/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeMail/app/build.gradle -------------------------------------------------------------------------------- /demoProjects/ComposeMail/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeMail/app/proguard-rules.pro -------------------------------------------------------------------------------- /demoProjects/ComposeMail/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeMail/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /demoProjects/ComposeMail/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeMail/build.gradle -------------------------------------------------------------------------------- /demoProjects/ComposeMail/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeMail/gradle.properties -------------------------------------------------------------------------------- /demoProjects/ComposeMail/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeMail/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /demoProjects/ComposeMail/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeMail/gradlew -------------------------------------------------------------------------------- /demoProjects/ComposeMail/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeMail/gradlew.bat -------------------------------------------------------------------------------- /demoProjects/ComposeMail/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ComposeMail/settings.gradle -------------------------------------------------------------------------------- /demoProjects/Drag2D/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2D/.gitignore -------------------------------------------------------------------------------- /demoProjects/Drag2D/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /demoProjects/Drag2D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2D/README.md -------------------------------------------------------------------------------- /demoProjects/Drag2D/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /demoProjects/Drag2D/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2D/app/build.gradle -------------------------------------------------------------------------------- /demoProjects/Drag2D/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2D/app/proguard-rules.pro -------------------------------------------------------------------------------- /demoProjects/Drag2D/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2D/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /demoProjects/Drag2D/app/src/main/res/drawable/window.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2D/app/src/main/res/drawable/window.xml -------------------------------------------------------------------------------- /demoProjects/Drag2D/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2D/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /demoProjects/Drag2D/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2D/build.gradle -------------------------------------------------------------------------------- /demoProjects/Drag2D/engine/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /demoProjects/Drag2D/engine/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2D/engine/build.gradle -------------------------------------------------------------------------------- /demoProjects/Drag2D/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2D/gradle.properties -------------------------------------------------------------------------------- /demoProjects/Drag2D/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2D/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /demoProjects/Drag2D/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2D/gradlew -------------------------------------------------------------------------------- /demoProjects/Drag2D/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2D/gradlew.bat -------------------------------------------------------------------------------- /demoProjects/Drag2D/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2D/settings.gradle -------------------------------------------------------------------------------- /demoProjects/Drag2DCompose/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2DCompose/.gitignore -------------------------------------------------------------------------------- /demoProjects/Drag2DCompose/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /demoProjects/Drag2DCompose/.idea/copyright/aosp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2DCompose/.idea/copyright/aosp.xml -------------------------------------------------------------------------------- /demoProjects/Drag2DCompose/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2DCompose/.idea/kotlinc.xml -------------------------------------------------------------------------------- /demoProjects/Drag2DCompose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2DCompose/README.md -------------------------------------------------------------------------------- /demoProjects/Drag2DCompose/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /demoProjects/Drag2DCompose/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2DCompose/app/build.gradle -------------------------------------------------------------------------------- /demoProjects/Drag2DCompose/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2DCompose/app/proguard-rules.pro -------------------------------------------------------------------------------- /demoProjects/Drag2DCompose/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2DCompose/build.gradle -------------------------------------------------------------------------------- /demoProjects/Drag2DCompose/compose-impl/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /demoProjects/Drag2DCompose/compose-impl/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2DCompose/compose-impl/build.gradle -------------------------------------------------------------------------------- /demoProjects/Drag2DCompose/compose-impl/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demoProjects/Drag2DCompose/compose-impl/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2DCompose/compose-impl/proguard-rules.pro -------------------------------------------------------------------------------- /demoProjects/Drag2DCompose/engine/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /demoProjects/Drag2DCompose/engine/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2DCompose/engine/build.gradle -------------------------------------------------------------------------------- /demoProjects/Drag2DCompose/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2DCompose/gradle.properties -------------------------------------------------------------------------------- /demoProjects/Drag2DCompose/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2DCompose/gradlew -------------------------------------------------------------------------------- /demoProjects/Drag2DCompose/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2DCompose/gradlew.bat -------------------------------------------------------------------------------- /demoProjects/Drag2DCompose/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/Drag2DCompose/settings.gradle -------------------------------------------------------------------------------- /demoProjects/ExampleComposeGrid/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /demoProjects/ExampleComposeGrid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExampleComposeGrid/README.md -------------------------------------------------------------------------------- /demoProjects/ExampleComposeGrid/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /demoProjects/ExampleComposeGrid/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExampleComposeGrid/app/build.gradle -------------------------------------------------------------------------------- /demoProjects/ExampleComposeGrid/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExampleComposeGrid/app/proguard-rules.pro -------------------------------------------------------------------------------- /demoProjects/ExampleComposeGrid/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExampleComposeGrid/build.gradle -------------------------------------------------------------------------------- /demoProjects/ExampleComposeGrid/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExampleComposeGrid/gradle.properties -------------------------------------------------------------------------------- /demoProjects/ExampleComposeGrid/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExampleComposeGrid/gradlew -------------------------------------------------------------------------------- /demoProjects/ExampleComposeGrid/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExampleComposeGrid/gradlew.bat -------------------------------------------------------------------------------- /demoProjects/ExampleComposeGrid/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExampleComposeGrid/settings.gradle -------------------------------------------------------------------------------- /demoProjects/ExamplesComposeConstraintLayout/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesComposeConstraintLayout/.gitignore -------------------------------------------------------------------------------- /demoProjects/ExamplesComposeConstraintLayout/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /demoProjects/ExamplesComposeConstraintLayout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesComposeConstraintLayout/README.md -------------------------------------------------------------------------------- /demoProjects/ExamplesComposeConstraintLayout/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /demoProjects/ExamplesComposeConstraintLayout/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesComposeConstraintLayout/build.gradle -------------------------------------------------------------------------------- /demoProjects/ExamplesComposeConstraintLayout/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesComposeConstraintLayout/gradlew -------------------------------------------------------------------------------- /demoProjects/ExamplesComposeConstraintLayout/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesComposeConstraintLayout/gradlew.bat -------------------------------------------------------------------------------- /demoProjects/ExamplesComposeMotionLayout/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesComposeMotionLayout/.gitignore -------------------------------------------------------------------------------- /demoProjects/ExamplesComposeMotionLayout/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /demoProjects/ExamplesComposeMotionLayout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesComposeMotionLayout/README.md -------------------------------------------------------------------------------- /demoProjects/ExamplesComposeMotionLayout/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /demoProjects/ExamplesComposeMotionLayout/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesComposeMotionLayout/app/build.gradle -------------------------------------------------------------------------------- /demoProjects/ExamplesComposeMotionLayout/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesComposeMotionLayout/build.gradle -------------------------------------------------------------------------------- /demoProjects/ExamplesComposeMotionLayout/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesComposeMotionLayout/gradle.properties -------------------------------------------------------------------------------- /demoProjects/ExamplesComposeMotionLayout/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesComposeMotionLayout/gradlew -------------------------------------------------------------------------------- /demoProjects/ExamplesComposeMotionLayout/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesComposeMotionLayout/gradlew.bat -------------------------------------------------------------------------------- /demoProjects/ExamplesComposeMotionLayout/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesComposeMotionLayout/settings.gradle -------------------------------------------------------------------------------- /demoProjects/ExamplesMotionLayout/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /demoProjects/ExamplesMotionLayout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesMotionLayout/README.md -------------------------------------------------------------------------------- /demoProjects/ExamplesMotionLayout/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /demoProjects/ExamplesMotionLayout/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesMotionLayout/app/build.gradle -------------------------------------------------------------------------------- /demoProjects/ExamplesMotionLayout/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesMotionLayout/app/proguard-rules.pro -------------------------------------------------------------------------------- /demoProjects/ExamplesMotionLayout/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesMotionLayout/build.gradle -------------------------------------------------------------------------------- /demoProjects/ExamplesMotionLayout/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesMotionLayout/gradle.properties -------------------------------------------------------------------------------- /demoProjects/ExamplesMotionLayout/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesMotionLayout/gradlew -------------------------------------------------------------------------------- /demoProjects/ExamplesMotionLayout/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesMotionLayout/gradlew.bat -------------------------------------------------------------------------------- /demoProjects/ExamplesMotionLayout/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesMotionLayout/settings.gradle -------------------------------------------------------------------------------- /demoProjects/ExamplesRecyclerView/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /demoProjects/ExamplesRecyclerView/.idea/.name: -------------------------------------------------------------------------------- 1 | MotionRecycle -------------------------------------------------------------------------------- /demoProjects/ExamplesRecyclerView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesRecyclerView/README.md -------------------------------------------------------------------------------- /demoProjects/ExamplesRecyclerView/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /demoProjects/ExamplesRecyclerView/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesRecyclerView/app/build.gradle -------------------------------------------------------------------------------- /demoProjects/ExamplesRecyclerView/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesRecyclerView/app/proguard-rules.pro -------------------------------------------------------------------------------- /demoProjects/ExamplesRecyclerView/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesRecyclerView/build.gradle -------------------------------------------------------------------------------- /demoProjects/ExamplesRecyclerView/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesRecyclerView/gradle.properties -------------------------------------------------------------------------------- /demoProjects/ExamplesRecyclerView/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesRecyclerView/gradlew -------------------------------------------------------------------------------- /demoProjects/ExamplesRecyclerView/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesRecyclerView/gradlew.bat -------------------------------------------------------------------------------- /demoProjects/ExamplesRecyclerView/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ExamplesRecyclerView/settings.gradle -------------------------------------------------------------------------------- /demoProjects/MotionDemos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/MotionDemos/.gitignore -------------------------------------------------------------------------------- /demoProjects/MotionDemos/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /demoProjects/MotionDemos/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /demoProjects/MotionDemos/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/MotionDemos/app/build.gradle -------------------------------------------------------------------------------- /demoProjects/MotionDemos/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/MotionDemos/app/proguard-rules.pro -------------------------------------------------------------------------------- /demoProjects/MotionDemos/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/MotionDemos/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /demoProjects/MotionDemos/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/MotionDemos/build.gradle -------------------------------------------------------------------------------- /demoProjects/MotionDemos/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/MotionDemos/gradle.properties -------------------------------------------------------------------------------- /demoProjects/MotionDemos/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/MotionDemos/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /demoProjects/MotionDemos/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/MotionDemos/gradlew -------------------------------------------------------------------------------- /demoProjects/MotionDemos/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/MotionDemos/gradlew.bat -------------------------------------------------------------------------------- /demoProjects/MotionDemos/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/MotionDemos/settings.gradle -------------------------------------------------------------------------------- /demoProjects/OpenGLEsGraph3D/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /demoProjects/OpenGLEsGraph3D/.idea/.name: -------------------------------------------------------------------------------- 1 | OpenGLEsGraph3D 2 | -------------------------------------------------------------------------------- /demoProjects/OpenGLEsGraph3D/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /demoProjects/OpenGLEsGraph3D/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/OpenGLEsGraph3D/app/build.gradle -------------------------------------------------------------------------------- /demoProjects/OpenGLEsGraph3D/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/OpenGLEsGraph3D/app/proguard-rules.pro -------------------------------------------------------------------------------- /demoProjects/OpenGLEsGraph3D/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/OpenGLEsGraph3D/build.gradle -------------------------------------------------------------------------------- /demoProjects/OpenGLEsGraph3D/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/OpenGLEsGraph3D/gradle.properties -------------------------------------------------------------------------------- /demoProjects/OpenGLEsGraph3D/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/OpenGLEsGraph3D/gradlew -------------------------------------------------------------------------------- /demoProjects/OpenGLEsGraph3D/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/OpenGLEsGraph3D/gradlew.bat -------------------------------------------------------------------------------- /demoProjects/OpenGLEsGraph3D/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/OpenGLEsGraph3D/settings.gradle -------------------------------------------------------------------------------- /demoProjects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/README.md -------------------------------------------------------------------------------- /demoProjects/ViewsGraph3d/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ViewsGraph3d/.gitignore -------------------------------------------------------------------------------- /demoProjects/ViewsGraph3d/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /demoProjects/ViewsGraph3d/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /demoProjects/ViewsGraph3d/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ViewsGraph3d/app/build.gradle -------------------------------------------------------------------------------- /demoProjects/ViewsGraph3d/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ViewsGraph3d/app/proguard-rules.pro -------------------------------------------------------------------------------- /demoProjects/ViewsGraph3d/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ViewsGraph3d/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /demoProjects/ViewsGraph3d/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ViewsGraph3d/build.gradle -------------------------------------------------------------------------------- /demoProjects/ViewsGraph3d/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ViewsGraph3d/gradle.properties -------------------------------------------------------------------------------- /demoProjects/ViewsGraph3d/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ViewsGraph3d/gradlew -------------------------------------------------------------------------------- /demoProjects/ViewsGraph3d/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ViewsGraph3d/gradlew.bat -------------------------------------------------------------------------------- /demoProjects/ViewsGraph3d/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/demoProjects/ViewsGraph3d/settings.gradle -------------------------------------------------------------------------------- /desktop/ConstraintLayoutInspector/.gitignore: -------------------------------------------------------------------------------- 1 | out/ 2 | lib/ 3 | -------------------------------------------------------------------------------- /desktop/ConstraintLayoutInspector/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /desktop/ConstraintLayoutInspector/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ConstraintLayoutInspector/.idea/kotlinc.xml -------------------------------------------------------------------------------- /desktop/ConstraintLayoutInspector/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ConstraintLayoutInspector/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /desktop/ConstraintLayoutInspector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ConstraintLayoutInspector/README.md -------------------------------------------------------------------------------- /desktop/ConstraintLayoutInspector/images/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ConstraintLayoutInspector/images/resize.png -------------------------------------------------------------------------------- /desktop/CycleEditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/CycleEditor/README.md -------------------------------------------------------------------------------- /desktop/CycleEditor/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/CycleEditor/build.gradle -------------------------------------------------------------------------------- /desktop/CycleEditor/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/CycleEditor/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /desktop/CycleEditor/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/CycleEditor/gradlew -------------------------------------------------------------------------------- /desktop/CycleEditor/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/CycleEditor/gradlew.bat -------------------------------------------------------------------------------- /desktop/CycleEditor/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'CycleEditor' 2 | 3 | -------------------------------------------------------------------------------- /desktop/MotionLayoutCoreValidation/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /desktop/PlotTool/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /desktop/PlotTool/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/PlotTool/.idea/kotlinc.xml -------------------------------------------------------------------------------- /desktop/PlotTool/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/PlotTool/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /desktop/PlotTool/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/PlotTool/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /desktop/SwingDemo/.gitignore: -------------------------------------------------------------------------------- 1 | out/ 2 | lib/ 3 | -------------------------------------------------------------------------------- /desktop/SwingDemo/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /desktop/SwingDemo/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/SwingDemo/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /desktop/SwingDemo/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/SwingDemo/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /desktop/SwingDemo/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/SwingDemo/.idea/kotlinc.xml -------------------------------------------------------------------------------- /desktop/SwingDemo/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/SwingDemo/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /desktop/SwingDemo/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/SwingDemo/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /desktop/SwingDemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/SwingDemo/README.md -------------------------------------------------------------------------------- /desktop/ValidationTool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/README.md -------------------------------------------------------------------------------- /desktop/ValidationTool/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/build.gradle -------------------------------------------------------------------------------- /desktop/ValidationTool/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /desktop/ValidationTool/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/gradlew -------------------------------------------------------------------------------- /desktop/ValidationTool/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/gradlew.bat -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_000_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_000_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_001_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_001_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_002_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_002_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_003_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_003_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_004_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_004_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_005_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_005_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_006_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_006_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_007_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_007_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_008_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_008_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_009_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_009_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_010_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_010_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_011_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_011_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_012_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_012_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_013_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_013_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_014_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_014_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_015_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_015_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_016_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_016_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_017_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_017_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_018_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_018_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_019_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_019_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_020_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_020_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_021_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_021_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_022_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_022_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_023_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_023_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_024_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_024_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_025_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_025_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_026_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_026_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_027_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_027_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_028_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_028_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_029_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_029_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_030_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_030_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_031_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_031_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_032_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_032_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_033_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_033_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_034_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_034_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_035_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_035_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_036_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_036_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_037_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_037_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_038_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_038_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_039_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_039_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_040_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_040_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_041_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_041_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_042_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_042_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_043_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_043_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_044_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_044_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_045_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_045_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_046_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_046_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_047_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_047_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_048_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_048_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_049_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_049_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_050_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_050_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_051_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_051_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_052_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_052_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_053_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_053_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_054_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_054_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_055_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_055_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_056_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_056_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_057_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_057_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_058_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_058_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_059_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_059_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_060_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_060_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_061_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_061_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_062_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_062_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_063_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_063_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_064_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_064_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_065_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_065_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_066_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_066_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_067_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_067_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_068_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_068_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_069_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_069_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_070_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_070_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_071_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_071_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_072_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_072_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_073_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_073_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_074_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_074_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_075_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_075_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_076_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_076_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_077_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_077_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_078_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_078_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_079_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_079_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_080_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_080_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_081_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_081_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_082_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_082_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_083_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_083_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_084_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_084_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_085_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_085_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_086_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_086_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_087_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_087_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_088_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_088_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_089_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_089_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_090_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_090_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_091_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_091_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_092_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_092_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_093_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_093_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_094_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_094_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_095_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_095_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_096_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_096_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_097_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_097_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_098_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_098_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_099_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_099_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_100_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_100_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_101_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_101_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_102_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_102_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_103_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_103_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_104_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_104_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_105_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_105_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_106_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_106_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_107_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_107_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_108_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_108_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_109_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_109_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_110_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_110_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_111_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_111_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_112_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_112_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_113_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_113_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_114_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_114_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_115_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_115_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_116_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_116_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_117_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_117_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_118_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_118_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_119_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_119_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_120_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_120_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_121_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_121_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_122_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_122_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_123_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_123_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_124_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_124_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_125_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_125_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_126_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_126_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_127_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_127_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_128_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_128_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_129_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_129_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_130_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_130_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_131_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_131_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_132_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_132_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_133_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_133_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_134_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_134_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_135_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_135_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_136_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_136_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_137_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_137_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_138_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_138_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_139_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_139_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_140_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_140_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_141_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_141_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_142_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_142_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_143_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_143_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_144_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_144_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_145_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_145_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_146_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_146_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_147_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_147_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_148_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_148_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_149_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_149_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_150_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_150_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_151_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_151_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_152_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_152_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_153_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_153_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_154_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_154_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_155_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_155_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_156_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_156_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_157_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_157_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_158_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_158_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_159_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_159_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_160_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_160_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_161_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_161_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_162_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_162_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_163_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_163_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_164_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_164_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_165_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_165_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_166_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_166_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_167_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_167_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_168_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_168_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_169_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_169_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_170_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_170_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_171_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_171_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_172_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_172_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_173_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_173_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_174_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_174_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_175_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_175_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_176_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_176_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_177_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_177_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_178_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_178_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_179_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_179_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_180_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_180_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_181_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_181_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_182_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_182_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_183_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_183_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_184_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_184_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_185_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_185_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_186_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_186_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_187_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_187_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_188_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_188_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_189_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_189_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_190_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_190_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_191_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_191_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_192_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_192_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_193_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_193_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_194_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_194_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_195_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_195_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_196_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_196_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_197_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_197_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_198_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_198_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_199_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_199_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_200_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_200_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_201_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_201_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_202_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_202_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_203_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_203_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_204_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_204_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_205_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_205_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_206_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_206_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_207_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_207_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_208_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_208_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_209_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_209_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_210_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_210_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_212_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_212_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_213_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_213_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_214_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_214_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_215_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_215_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_216_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_216_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_217_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_217_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_218_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_218_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_219_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_219_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_220_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_220_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_221_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_221_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_222_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_222_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_223_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_223_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_224_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_224_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_225_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_225_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_226_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_226_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_227_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_227_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_228_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_228_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_229_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_229_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_230_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_230_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_231_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_231_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_232_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_232_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_233_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_233_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_234_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_234_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_235_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_235_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_236_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_236_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_237_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_237_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_238_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_238_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_239_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_239_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_240_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_240_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_241_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_241_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_242_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_242_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_243_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_243_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_244_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_244_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_245_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_245_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_246_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_246_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_247_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_247_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_248_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_248_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_249_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_249_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_250_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_250_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_251_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_251_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_252_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_252_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_253_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_253_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_254_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_254_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_255_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_255_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_256_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_256_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_257_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_257_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_258_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_258_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_259_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_259_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_260_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_260_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_261_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_261_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_262_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_262_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_263_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_263_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_264_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_264_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_265_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_265_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_266_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_266_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_267_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_267_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_268_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_268_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_269_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_269_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_270_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_270_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_271_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_271_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_272_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_272_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_273_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_273_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_274_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_274_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_275_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_275_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_276_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_276_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_277_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_277_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_278_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_278_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_279_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_279_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_280_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_280_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_281_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_281_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_282_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_282_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_283_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_283_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_284_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_284_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_285_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_285_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_286_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_286_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_287_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_287_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_288_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_288_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_289_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_289_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_290_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_290_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_291_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_291_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_292_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_292_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_293_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_293_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_294_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_294_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_295_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_295_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_296_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_296_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_297_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_297_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_298_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_298_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_299_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_299_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_300_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_300_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_301_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_301_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_302_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_302_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_303_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_303_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_304_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_304_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_305_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_305_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_306_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_306_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_307_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_307_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_308_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_308_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_309_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_309_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_310_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_310_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_311_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_311_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_312_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_312_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_313_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_313_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_314_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_314_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_315_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_315_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_316_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_316_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_317_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_317_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_318_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_318_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_319_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_319_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_320_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_320_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_321_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_321_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_322_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_322_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_323_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_323_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_324_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_324_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_325_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_325_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_326_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_326_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_327_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_327_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_328_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_328_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_329_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_329_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_330_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_330_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_331_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_331_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_332_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_332_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_333_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_333_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_334_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_334_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_335_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_335_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_336_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_336_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_337_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_337_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_338_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_338_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_339_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_339_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_340_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_340_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_341_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_341_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_342_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_342_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_343_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_343_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_344_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_344_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_345_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_345_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/references/check_346_WRAP_WRAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/ValidationTool/references/check_346_WRAP_WRAP.json -------------------------------------------------------------------------------- /desktop/ValidationTool/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'ValidationTool' 2 | 3 | -------------------------------------------------------------------------------- /desktop/graph3d/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /desktop/graph3d/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/graph3d/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /desktop/graph3d/out/production/graph3d/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /desktop/interpolationEngines/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/interpolationEngines/Readme.md -------------------------------------------------------------------------------- /desktop/interpolationEngines/interpolationEngines.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/desktop/interpolationEngines/interpolationEngines.iml -------------------------------------------------------------------------------- /projects/CalculatorExperiments/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea 3 | app/build 4 | local.properties 5 | -------------------------------------------------------------------------------- /projects/CalculatorExperiments/README.md: -------------------------------------------------------------------------------- 1 | # Calculator Experiments 2 | 3 | -------------------------------------------------------------------------------- /projects/CalculatorExperiments/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CalculatorExperiments/app/build.gradle -------------------------------------------------------------------------------- /projects/CalculatorExperiments/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CalculatorExperiments/build.gradle -------------------------------------------------------------------------------- /projects/CalculatorExperiments/constraintlayout/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/CalculatorExperiments/constraintlayout/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/CalculatorExperiments/core/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/CalculatorExperiments/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CalculatorExperiments/core/build.gradle -------------------------------------------------------------------------------- /projects/CalculatorExperiments/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CalculatorExperiments/gradle.properties -------------------------------------------------------------------------------- /projects/CalculatorExperiments/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CalculatorExperiments/gradlew -------------------------------------------------------------------------------- /projects/CalculatorExperiments/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CalculatorExperiments/gradlew.bat -------------------------------------------------------------------------------- /projects/CalculatorExperiments/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "CalculatorExperiments" 2 | include ':app' 3 | -------------------------------------------------------------------------------- /projects/CameraExperiments/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CameraExperiments/.gitignore -------------------------------------------------------------------------------- /projects/CameraExperiments/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /projects/CameraExperiments/.idea/.name: -------------------------------------------------------------------------------- 1 | MyCamera -------------------------------------------------------------------------------- /projects/CameraExperiments/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CameraExperiments/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /projects/CameraExperiments/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/CameraExperiments/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CameraExperiments/app/build.gradle -------------------------------------------------------------------------------- /projects/CameraExperiments/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CameraExperiments/app/proguard-rules.pro -------------------------------------------------------------------------------- /projects/CameraExperiments/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CameraExperiments/build.gradle -------------------------------------------------------------------------------- /projects/CameraExperiments/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CameraExperiments/gradle.properties -------------------------------------------------------------------------------- /projects/CameraExperiments/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CameraExperiments/gradlew -------------------------------------------------------------------------------- /projects/CameraExperiments/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CameraExperiments/gradlew.bat -------------------------------------------------------------------------------- /projects/CameraExperiments/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CameraExperiments/settings.gradle -------------------------------------------------------------------------------- /projects/CarouselExperiments/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CarouselExperiments/.gitignore -------------------------------------------------------------------------------- /projects/CarouselExperiments/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /projects/CarouselExperiments/README.md: -------------------------------------------------------------------------------- 1 | # ConstraintLayout Validation 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /projects/CarouselExperiments/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /projects/CarouselExperiments/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CarouselExperiments/app/build.gradle -------------------------------------------------------------------------------- /projects/CarouselExperiments/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CarouselExperiments/app/proguard-rules.pro -------------------------------------------------------------------------------- /projects/CarouselExperiments/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CarouselExperiments/build.gradle -------------------------------------------------------------------------------- /projects/CarouselExperiments/constraintlayout/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/CarouselExperiments/constraintlayout/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/CarouselExperiments/core/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/CarouselExperiments/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CarouselExperiments/core/build.gradle -------------------------------------------------------------------------------- /projects/CarouselExperiments/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CarouselExperiments/gradle.properties -------------------------------------------------------------------------------- /projects/CarouselExperiments/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CarouselExperiments/gradlew -------------------------------------------------------------------------------- /projects/CarouselExperiments/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CarouselExperiments/gradlew.bat -------------------------------------------------------------------------------- /projects/CarouselExperiments/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/CarouselExperiments/settings.gradle -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ComposeConstraintLayout/.gitignore -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ComposeConstraintLayout/README.MD -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ComposeConstraintLayout/app/build.gradle -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ComposeConstraintLayout/app/proguard-rules.pro -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ComposeConstraintLayout/build.gradle -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/compose/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ComposeConstraintLayout/compose/build.gradle -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/constraintlayout/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/constraintlayout/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/core/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ComposeConstraintLayout/core/build.gradle -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/dsl-verification/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/dsl-verification/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ComposeConstraintLayout/gradle.properties -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ComposeConstraintLayout/gradlew -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ComposeConstraintLayout/gradlew.bat -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/macrobenchmark-app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/macrobenchmark-app/benchmark/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/schema/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ComposeConstraintLayout/schema/schema.json -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ComposeConstraintLayout/settings.gradle -------------------------------------------------------------------------------- /projects/ComposeConstraintLayout/tools/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ComposeConstraintLayout/tools/build.gradle -------------------------------------------------------------------------------- /projects/ConstraintLayoutValidation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ConstraintLayoutValidation/.gitignore -------------------------------------------------------------------------------- /projects/ConstraintLayoutValidation/Convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ConstraintLayoutValidation/Convert.sh -------------------------------------------------------------------------------- /projects/ConstraintLayoutValidation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ConstraintLayoutValidation/README.md -------------------------------------------------------------------------------- /projects/ConstraintLayoutValidation/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/ConstraintLayoutValidation/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ConstraintLayoutValidation/app/build.gradle -------------------------------------------------------------------------------- /projects/ConstraintLayoutValidation/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ConstraintLayoutValidation/build.gradle -------------------------------------------------------------------------------- /projects/ConstraintLayoutValidation/constraintlayout/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/ConstraintLayoutValidation/constraintlayout/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/ConstraintLayoutValidation/core/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/ConstraintLayoutValidation/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ConstraintLayoutValidation/core/build.gradle -------------------------------------------------------------------------------- /projects/ConstraintLayoutValidation/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ConstraintLayoutValidation/gradle.properties -------------------------------------------------------------------------------- /projects/ConstraintLayoutValidation/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ConstraintLayoutValidation/gradlew -------------------------------------------------------------------------------- /projects/ConstraintLayoutValidation/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ConstraintLayoutValidation/gradlew.bat -------------------------------------------------------------------------------- /projects/ConstraintLayoutValidation/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ConstraintLayoutValidation/settings.gradle -------------------------------------------------------------------------------- /projects/DeveloperTemplate/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/DeveloperTemplate/.gitignore -------------------------------------------------------------------------------- /projects/DeveloperTemplate/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/DeveloperTemplate/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/DeveloperTemplate/app/build.gradle -------------------------------------------------------------------------------- /projects/DeveloperTemplate/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/DeveloperTemplate/app/proguard-rules.pro -------------------------------------------------------------------------------- /projects/DeveloperTemplate/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/DeveloperTemplate/build.gradle -------------------------------------------------------------------------------- /projects/DeveloperTemplate/constraintlayout/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/DeveloperTemplate/constraintlayout/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/DeveloperTemplate/constraintlayout/build.gradle -------------------------------------------------------------------------------- /projects/DeveloperTemplate/constraintlayout/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/DeveloperTemplate/core/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/DeveloperTemplate/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/DeveloperTemplate/core/build.gradle -------------------------------------------------------------------------------- /projects/DeveloperTemplate/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/DeveloperTemplate/gradle.properties -------------------------------------------------------------------------------- /projects/DeveloperTemplate/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/DeveloperTemplate/gradlew -------------------------------------------------------------------------------- /projects/DeveloperTemplate/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/DeveloperTemplate/gradlew.bat -------------------------------------------------------------------------------- /projects/DeveloperTemplate/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/DeveloperTemplate/settings.gradle -------------------------------------------------------------------------------- /projects/FoldableExperiments/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/FoldableExperiments/.gitignore -------------------------------------------------------------------------------- /projects/FoldableExperiments/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /projects/FoldableExperiments/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/FoldableExperiments/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/FoldableExperiments/app/build.gradle -------------------------------------------------------------------------------- /projects/FoldableExperiments/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/FoldableExperiments/app/proguard-rules.pro -------------------------------------------------------------------------------- /projects/FoldableExperiments/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/FoldableExperiments/build.gradle -------------------------------------------------------------------------------- /projects/FoldableExperiments/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/FoldableExperiments/gradle.properties -------------------------------------------------------------------------------- /projects/FoldableExperiments/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/FoldableExperiments/gradlew -------------------------------------------------------------------------------- /projects/FoldableExperiments/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/FoldableExperiments/gradlew.bat -------------------------------------------------------------------------------- /projects/FoldableExperiments/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "FoldableExperiments" 2 | include ':app' 3 | -------------------------------------------------------------------------------- /projects/GridExperiments/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea 3 | app/build 4 | local.properties 5 | -------------------------------------------------------------------------------- /projects/GridExperiments/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/GridExperiments/app/build.gradle -------------------------------------------------------------------------------- /projects/GridExperiments/app/src/main/res/layout/row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/GridExperiments/app/src/main/res/layout/row.xml -------------------------------------------------------------------------------- /projects/GridExperiments/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/GridExperiments/build.gradle -------------------------------------------------------------------------------- /projects/GridExperiments/constraintlayout/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/GridExperiments/constraintlayout/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/GridExperiments/constraintlayout/build.gradle -------------------------------------------------------------------------------- /projects/GridExperiments/core/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/GridExperiments/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/GridExperiments/core/build.gradle -------------------------------------------------------------------------------- /projects/GridExperiments/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/GridExperiments/gradle.properties -------------------------------------------------------------------------------- /projects/GridExperiments/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/GridExperiments/gradlew -------------------------------------------------------------------------------- /projects/GridExperiments/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/GridExperiments/gradlew.bat -------------------------------------------------------------------------------- /projects/GridExperiments/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/GridExperiments/settings.gradle -------------------------------------------------------------------------------- /projects/MotionLayoutExperiments/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea 3 | app/build 4 | local.properties 5 | -------------------------------------------------------------------------------- /projects/MotionLayoutExperiments/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/MotionLayoutExperiments/app/build.gradle -------------------------------------------------------------------------------- /projects/MotionLayoutExperiments/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/MotionLayoutExperiments/build.gradle -------------------------------------------------------------------------------- /projects/MotionLayoutExperiments/constraintlayout/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/MotionLayoutExperiments/constraintlayout/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/MotionLayoutExperiments/core/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/MotionLayoutExperiments/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/MotionLayoutExperiments/core/build.gradle -------------------------------------------------------------------------------- /projects/MotionLayoutExperiments/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/MotionLayoutExperiments/gradle.properties -------------------------------------------------------------------------------- /projects/MotionLayoutExperiments/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/MotionLayoutExperiments/gradlew -------------------------------------------------------------------------------- /projects/MotionLayoutExperiments/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/MotionLayoutExperiments/gradlew.bat -------------------------------------------------------------------------------- /projects/MotionLayoutExperiments/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/MotionLayoutExperiments/settings.gradle -------------------------------------------------------------------------------- /projects/MotionLayoutVerification/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/MotionLayoutVerification/.gitignore -------------------------------------------------------------------------------- /projects/MotionLayoutVerification/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/MotionLayoutVerification/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/MotionLayoutVerification/app/build.gradle -------------------------------------------------------------------------------- /projects/MotionLayoutVerification/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/MotionLayoutVerification/app/proguard-rules.pro -------------------------------------------------------------------------------- /projects/MotionLayoutVerification/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/MotionLayoutVerification/build.gradle -------------------------------------------------------------------------------- /projects/MotionLayoutVerification/constraintlayout/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/MotionLayoutVerification/constraintlayout/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/MotionLayoutVerification/core/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/MotionLayoutVerification/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/MotionLayoutVerification/core/build.gradle -------------------------------------------------------------------------------- /projects/MotionLayoutVerification/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/MotionLayoutVerification/gradle.properties -------------------------------------------------------------------------------- /projects/MotionLayoutVerification/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/MotionLayoutVerification/gradlew -------------------------------------------------------------------------------- /projects/MotionLayoutVerification/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/MotionLayoutVerification/gradlew.bat -------------------------------------------------------------------------------- /projects/MotionLayoutVerification/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/MotionLayoutVerification/settings.gradle -------------------------------------------------------------------------------- /projects/RecyclerViewExperiments/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/RecyclerViewExperiments/.idea/encodings.xml -------------------------------------------------------------------------------- /projects/ViewTransitionExperiments/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea 3 | app/build 4 | local.properties 5 | -------------------------------------------------------------------------------- /projects/ViewTransitionExperiments/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ViewTransitionExperiments/app/build.gradle -------------------------------------------------------------------------------- /projects/ViewTransitionExperiments/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ViewTransitionExperiments/build.gradle -------------------------------------------------------------------------------- /projects/ViewTransitionExperiments/constraintlayout/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/ViewTransitionExperiments/constraintlayout/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/ViewTransitionExperiments/core/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /projects/ViewTransitionExperiments/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ViewTransitionExperiments/core/build.gradle -------------------------------------------------------------------------------- /projects/ViewTransitionExperiments/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ViewTransitionExperiments/gradle.properties -------------------------------------------------------------------------------- /projects/ViewTransitionExperiments/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ViewTransitionExperiments/gradlew -------------------------------------------------------------------------------- /projects/ViewTransitionExperiments/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ViewTransitionExperiments/gradlew.bat -------------------------------------------------------------------------------- /projects/ViewTransitionExperiments/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/projects/ViewTransitionExperiments/settings.gradle -------------------------------------------------------------------------------- /toolsAndroid/CLAnalyst/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/toolsAndroid/CLAnalyst/.gitignore -------------------------------------------------------------------------------- /toolsAndroid/CLAnalyst/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /toolsAndroid/CLAnalyst/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /toolsAndroid/CLAnalyst/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/toolsAndroid/CLAnalyst/app/build.gradle -------------------------------------------------------------------------------- /toolsAndroid/CLAnalyst/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/toolsAndroid/CLAnalyst/app/proguard-rules.pro -------------------------------------------------------------------------------- /toolsAndroid/CLAnalyst/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/toolsAndroid/CLAnalyst/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /toolsAndroid/CLAnalyst/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/toolsAndroid/CLAnalyst/build.gradle -------------------------------------------------------------------------------- /toolsAndroid/CLAnalyst/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/toolsAndroid/CLAnalyst/gradle.properties -------------------------------------------------------------------------------- /toolsAndroid/CLAnalyst/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/toolsAndroid/CLAnalyst/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /toolsAndroid/CLAnalyst/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/toolsAndroid/CLAnalyst/gradlew -------------------------------------------------------------------------------- /toolsAndroid/CLAnalyst/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/toolsAndroid/CLAnalyst/gradlew.bat -------------------------------------------------------------------------------- /toolsAndroid/CLAnalyst/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidx/constraintlayout/HEAD/toolsAndroid/CLAnalyst/settings.gradle --------------------------------------------------------------------------------