├── .gitignore ├── README.md ├── ROS ├── bags │ └── joint_data.bag ├── gazebo_msgs │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── msg │ │ ├── ContactState.msg │ │ ├── ContactsState.msg │ │ ├── LinkState.msg │ │ ├── LinkStates.msg │ │ ├── ModelState.msg │ │ ├── ModelStates.msg │ │ ├── ODEJointProperties.msg │ │ ├── ODEPhysics.msg │ │ ├── PerformanceMetrics.msg │ │ ├── SensorPerformanceMetric.msg │ │ └── WorldState.msg │ ├── package.xml │ └── srv │ │ ├── ApplyBodyWrench.srv │ │ ├── ApplyJointEffort.srv │ │ ├── BodyRequest.srv │ │ ├── DeleteLight.srv │ │ ├── DeleteModel.srv │ │ ├── GetJointProperties.srv │ │ ├── GetLightProperties.srv │ │ ├── GetLinkProperties.srv │ │ ├── GetLinkState.srv │ │ ├── GetModelProperties.srv │ │ ├── GetModelState.srv │ │ ├── GetPhysicsProperties.srv │ │ ├── GetWorldProperties.srv │ │ ├── JointRequest.srv │ │ ├── SetJointProperties.srv │ │ ├── SetJointTrajectory.srv │ │ ├── SetLightProperties.srv │ │ ├── SetLinkProperties.srv │ │ ├── SetLinkState.srv │ │ ├── SetModelConfiguration.srv │ │ ├── SetModelState.srv │ │ ├── SetPhysicsProperties.srv │ │ └── SpawnModel.srv └── spot_msgs │ ├── CMakeLists.txt │ ├── LICENSE │ ├── action │ ├── NavigateTo.action │ └── Trajectory.action │ ├── msg │ ├── BatteryState.msg │ ├── BatteryStateArray.msg │ ├── BehaviorFault.msg │ ├── BehaviorFaultState.msg │ ├── EStopState.msg │ ├── EStopStateArray.msg │ ├── Feedback.msg │ ├── FootState.msg │ ├── FootStateArray.msg │ ├── Lease.msg │ ├── LeaseArray.msg │ ├── LeaseOwner.msg │ ├── LeaseResource.msg │ ├── Metrics.msg │ ├── MobilityParams.msg │ ├── PowerState.msg │ ├── SystemFault.msg │ ├── SystemFaultState.msg │ └── WiFiState.msg │ ├── package.xml │ └── srv │ ├── ClearBehaviorFault.srv │ ├── ListGraph.srv │ ├── SetLocomotion.srv │ └── SetVelocity.srv └── spot_simulation ├── Assets ├── Materials.meta ├── Materials │ ├── flooring.mat │ └── flooring.mat.meta ├── Resources.meta ├── Resources │ ├── GeometryCompassSettings.asset │ ├── GeometryCompassSettings.asset.meta │ ├── ROSConnectionPrefab.prefab │ └── ROSConnectionPrefab.prefab.meta ├── RosMessages.meta ├── RosMessages │ ├── Gazebo.meta │ ├── Gazebo │ │ ├── msg.meta │ │ └── msg │ │ │ ├── ContactStateMsg.cs │ │ │ ├── ContactStateMsg.cs.meta │ │ │ ├── ContactsStateMsg.cs │ │ │ ├── ContactsStateMsg.cs.meta │ │ │ ├── LinkStateMsg.cs │ │ │ ├── LinkStateMsg.cs.meta │ │ │ ├── LinkStatesMsg.cs │ │ │ ├── LinkStatesMsg.cs.meta │ │ │ ├── ModelStateMsg.cs │ │ │ ├── ModelStateMsg.cs.meta │ │ │ ├── ModelStatesMsg.cs │ │ │ └── ModelStatesMsg.cs.meta │ ├── Spot.meta │ └── Spot │ │ ├── msg.meta │ │ └── msg │ │ ├── FeedbackMsg.cs │ │ ├── FeedbackMsg.cs.meta │ │ ├── FootStateArrayMsg.cs │ │ ├── FootStateArrayMsg.cs.meta │ │ ├── FootStateMsg.cs │ │ └── FootStateMsg.cs.meta ├── Scenes.meta ├── Scenes │ ├── SpotScene.unity │ └── SpotScene.unity.meta ├── Spot.meta ├── Spot │ ├── spot1.prefab │ ├── spot1.prefab.meta │ ├── spot_ros-master.meta │ └── spot_ros-master │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── Materials.meta │ │ ├── Materials │ │ ├── Default.mat │ │ └── Default.mat.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Spot.urdf │ │ ├── Spot.urdf.meta │ │ ├── cp_spot.jpg │ │ ├── cp_spot.jpg.meta │ │ ├── spot_description.meta │ │ ├── spot_description │ │ ├── CMakeLists.txt │ │ ├── CMakeLists.txt.meta │ │ ├── launch.meta │ │ ├── launch │ │ │ ├── description.launch │ │ │ └── description.launch.meta │ │ ├── meshes.meta │ │ ├── meshes │ │ │ ├── body.dae │ │ │ ├── body.dae.meta │ │ │ ├── body_collision.prefab │ │ │ ├── body_collision.prefab.meta │ │ │ ├── body_collision.stl │ │ │ ├── body_collision.stl.meta │ │ │ ├── body_collision_0.asset │ │ │ ├── body_collision_0.asset.meta │ │ │ ├── body_collision_1.asset │ │ │ ├── body_collision_1.asset.meta │ │ │ ├── front_left_hip.dae │ │ │ ├── front_left_hip.dae.meta │ │ │ ├── front_left_hip_collision.prefab │ │ │ ├── front_left_hip_collision.prefab.meta │ │ │ ├── front_left_hip_collision.stl │ │ │ ├── front_left_hip_collision.stl.meta │ │ │ ├── front_left_hip_collision_0.asset │ │ │ ├── front_left_hip_collision_0.asset.meta │ │ │ ├── front_left_hip_collision_1.asset │ │ │ ├── front_left_hip_collision_1.asset.meta │ │ │ ├── front_left_lower_leg.dae │ │ │ ├── front_left_lower_leg.dae.meta │ │ │ ├── front_left_lower_leg_collision.prefab │ │ │ ├── front_left_lower_leg_collision.prefab.meta │ │ │ ├── front_left_lower_leg_collision.stl │ │ │ ├── front_left_lower_leg_collision.stl.meta │ │ │ ├── front_left_lower_leg_collision_0.asset │ │ │ ├── front_left_lower_leg_collision_0.asset.meta │ │ │ ├── front_left_lower_leg_collision_1.asset │ │ │ ├── front_left_lower_leg_collision_1.asset.meta │ │ │ ├── front_left_lower_leg_collision_2.asset │ │ │ ├── front_left_lower_leg_collision_2.asset.meta │ │ │ ├── front_left_upper_leg.dae │ │ │ ├── front_left_upper_leg.dae.meta │ │ │ ├── front_left_upper_leg_collision.prefab │ │ │ ├── front_left_upper_leg_collision.prefab.meta │ │ │ ├── front_left_upper_leg_collision.stl │ │ │ ├── front_left_upper_leg_collision.stl.meta │ │ │ ├── front_left_upper_leg_collision_0.asset │ │ │ ├── front_left_upper_leg_collision_0.asset.meta │ │ │ ├── front_left_upper_leg_collision_1.asset │ │ │ ├── front_left_upper_leg_collision_1.asset.meta │ │ │ ├── front_left_upper_leg_collision_2.asset │ │ │ ├── front_left_upper_leg_collision_2.asset.meta │ │ │ ├── front_right_hip.dae │ │ │ ├── front_right_hip.dae.meta │ │ │ ├── front_right_hip_collision.prefab │ │ │ ├── front_right_hip_collision.prefab.meta │ │ │ ├── front_right_hip_collision.stl │ │ │ ├── front_right_hip_collision.stl.meta │ │ │ ├── front_right_hip_collision_0.asset │ │ │ ├── front_right_hip_collision_0.asset.meta │ │ │ ├── front_right_hip_collision_1.asset │ │ │ ├── front_right_hip_collision_1.asset.meta │ │ │ ├── front_right_lower_leg.dae │ │ │ ├── front_right_lower_leg.dae.meta │ │ │ ├── front_right_lower_leg_collision.prefab │ │ │ ├── front_right_lower_leg_collision.prefab.meta │ │ │ ├── front_right_lower_leg_collision.stl │ │ │ ├── front_right_lower_leg_collision.stl.meta │ │ │ ├── front_right_lower_leg_collision_0.asset │ │ │ ├── front_right_lower_leg_collision_0.asset.meta │ │ │ ├── front_right_lower_leg_collision_1.asset │ │ │ ├── front_right_lower_leg_collision_1.asset.meta │ │ │ ├── front_right_lower_leg_collision_2.asset │ │ │ ├── front_right_lower_leg_collision_2.asset.meta │ │ │ ├── front_right_upper_leg.dae │ │ │ ├── front_right_upper_leg.dae.meta │ │ │ ├── front_right_upper_leg_collision.prefab │ │ │ ├── front_right_upper_leg_collision.prefab.meta │ │ │ ├── front_right_upper_leg_collision.stl │ │ │ ├── front_right_upper_leg_collision.stl.meta │ │ │ ├── front_right_upper_leg_collision_0.asset │ │ │ ├── front_right_upper_leg_collision_0.asset.meta │ │ │ ├── front_right_upper_leg_collision_1.asset │ │ │ ├── front_right_upper_leg_collision_1.asset.meta │ │ │ ├── front_right_upper_leg_collision_2.asset │ │ │ ├── front_right_upper_leg_collision_2.asset.meta │ │ │ ├── rear_left_hip.dae │ │ │ ├── rear_left_hip.dae.meta │ │ │ ├── rear_left_hip_collision.prefab │ │ │ ├── rear_left_hip_collision.prefab.meta │ │ │ ├── rear_left_hip_collision.stl │ │ │ ├── rear_left_hip_collision.stl.meta │ │ │ ├── rear_left_hip_collision_0.asset │ │ │ ├── rear_left_hip_collision_0.asset.meta │ │ │ ├── rear_left_hip_collision_1.asset │ │ │ ├── rear_left_hip_collision_1.asset.meta │ │ │ ├── rear_left_lower_leg.dae │ │ │ ├── rear_left_lower_leg.dae.meta │ │ │ ├── rear_left_lower_leg_collision.prefab │ │ │ ├── rear_left_lower_leg_collision.prefab.meta │ │ │ ├── rear_left_lower_leg_collision.stl │ │ │ ├── rear_left_lower_leg_collision.stl.meta │ │ │ ├── rear_left_lower_leg_collision_0.asset │ │ │ ├── rear_left_lower_leg_collision_0.asset.meta │ │ │ ├── rear_left_lower_leg_collision_1.asset │ │ │ ├── rear_left_lower_leg_collision_1.asset.meta │ │ │ ├── rear_left_lower_leg_collision_2.asset │ │ │ ├── rear_left_lower_leg_collision_2.asset.meta │ │ │ ├── rear_left_upper_leg.dae │ │ │ ├── rear_left_upper_leg.dae.meta │ │ │ ├── rear_left_upper_leg_collision.prefab │ │ │ ├── rear_left_upper_leg_collision.prefab.meta │ │ │ ├── rear_left_upper_leg_collision.stl │ │ │ ├── rear_left_upper_leg_collision.stl.meta │ │ │ ├── rear_left_upper_leg_collision_0.asset │ │ │ ├── rear_left_upper_leg_collision_0.asset.meta │ │ │ ├── rear_left_upper_leg_collision_1.asset │ │ │ ├── rear_left_upper_leg_collision_1.asset.meta │ │ │ ├── rear_left_upper_leg_collision_2.asset │ │ │ ├── rear_left_upper_leg_collision_2.asset.meta │ │ │ ├── rear_right_hip.dae │ │ │ ├── rear_right_hip.dae.meta │ │ │ ├── rear_right_hip_collision.prefab │ │ │ ├── rear_right_hip_collision.prefab.meta │ │ │ ├── rear_right_hip_collision.stl │ │ │ ├── rear_right_hip_collision.stl.meta │ │ │ ├── rear_right_hip_collision_0.asset │ │ │ ├── rear_right_hip_collision_0.asset.meta │ │ │ ├── rear_right_hip_collision_1.asset │ │ │ ├── rear_right_hip_collision_1.asset.meta │ │ │ ├── rear_right_lower_leg.dae │ │ │ ├── rear_right_lower_leg.dae.meta │ │ │ ├── rear_right_lower_leg_collision.prefab │ │ │ ├── rear_right_lower_leg_collision.prefab.meta │ │ │ ├── rear_right_lower_leg_collision.stl │ │ │ ├── rear_right_lower_leg_collision.stl.meta │ │ │ ├── rear_right_lower_leg_collision_0.asset │ │ │ ├── rear_right_lower_leg_collision_0.asset.meta │ │ │ ├── rear_right_lower_leg_collision_1.asset │ │ │ ├── rear_right_lower_leg_collision_1.asset.meta │ │ │ ├── rear_right_lower_leg_collision_2.asset │ │ │ ├── rear_right_lower_leg_collision_2.asset.meta │ │ │ ├── rear_right_upper_leg.dae │ │ │ ├── rear_right_upper_leg.dae.meta │ │ │ ├── rear_right_upper_leg_collision.prefab │ │ │ ├── rear_right_upper_leg_collision.prefab.meta │ │ │ ├── rear_right_upper_leg_collision.stl │ │ │ ├── rear_right_upper_leg_collision.stl.meta │ │ │ ├── rear_right_upper_leg_collision_0.asset │ │ │ ├── rear_right_upper_leg_collision_0.asset.meta │ │ │ ├── rear_right_upper_leg_collision_1.asset │ │ │ ├── rear_right_upper_leg_collision_1.asset.meta │ │ │ ├── rear_right_upper_leg_collision_2.asset │ │ │ ├── rear_right_upper_leg_collision_2.asset.meta │ │ │ ├── spot_mat.png │ │ │ └── spot_mat.png.meta │ │ ├── package.xml │ │ ├── package.xml.meta │ │ ├── urdf.meta │ │ └── urdf │ │ │ ├── empty.urdf │ │ │ ├── empty.urdf.meta │ │ │ ├── spot.urdf.xacro │ │ │ └── spot.urdf.xacro.meta │ │ ├── spot_viz.meta │ │ └── spot_viz │ │ ├── CMakeLists.txt │ │ ├── CMakeLists.txt.meta │ │ ├── launch.meta │ │ ├── launch │ │ ├── view_model.launch │ │ ├── view_model.launch.meta │ │ ├── view_robot.launch │ │ └── view_robot.launch.meta │ │ ├── package.xml │ │ ├── package.xml.meta │ │ ├── rviz.meta │ │ └── rviz │ │ ├── model.rviz │ │ ├── model.rviz.meta │ │ ├── robot.rviz │ │ └── robot.rviz.meta ├── SpotControllerScripts.meta ├── SpotControllerScripts │ ├── ClockPublisher.cs │ ├── ClockPublisher.cs.meta │ ├── FootCollisionPublisher.cs │ ├── FootCollisionPublisher.cs.meta │ ├── FootCollisionSensor.cs │ ├── FootCollisionSensor.cs.meta │ ├── InitializeJointAttributes.cs │ ├── InitializeJointAttributes.cs.meta │ ├── ModelStatePublisher.cs │ ├── ModelStatePublisher.cs.meta │ ├── SpotJointSubscriber.cs │ └── SpotJointSubscriber.cs.meta ├── msgbrowser_settings.asset └── msgbrowser_settings.asset.meta ├── Library ├── APIUpdater │ └── project-dependencies.graph ├── AnnotationManager ├── ArtifactDB ├── ArtifactDB-lock ├── Artifacts │ ├── 10 │ │ ├── 10032f4aa7b00190b337eea5dcece421 │ │ ├── 10214a9b6914f214c96c87a43cbe7809 │ │ ├── 104db003dd928d6425ce82036fe33aff │ │ ├── 1084f8f4b1515eac3b5234d6bffbc7fa │ │ ├── 1099080f54c0e59208609a28115265f3 │ │ ├── 10b99cbc3359490ec0dc7cfdaadc20d5 │ │ ├── 10cd8ce28ddc41e18adc547f7ab4a5de │ │ ├── 10e4c991803df5bc3cd7124fff1949d3 │ │ └── 10f4f3b55502c79a96bf3504c6af357d │ ├── 11 │ │ ├── 11163c4ec3b7ddbb4a17cbc6630f7843 │ │ ├── 112f57fe6406fe85dd8f44b7cd03590a │ │ ├── 1153642f0ebc589bd2aa34074c2451d0 │ │ ├── 117100a04ae9b198c22db4dd4e84fc01 │ │ ├── 117274b0fc3a51f0d1fba52fdebc0506 │ │ ├── 119228bc607a3f87ab27ed863166280d │ │ ├── 11e44eb9105ba46e721cf37e274cc6a9 │ │ └── 11efaa1f8f13ef8fdb711e7e9488e8fd │ ├── 12 │ │ ├── 12010858340450d27c24347250f1afc1 │ │ ├── 12218ed8660eee3696179ef04d57f338 │ │ ├── 122db3fd6726f74870422e3649eb55af │ │ ├── 1254dc3d0a88a39accd0f1e2cc1e5c72 │ │ ├── 12658a95768b61281b1873c878bf0308 │ │ ├── 126b63f4028ec58a87387de1bf79dd87 │ │ ├── 1271887b46bc55d6645f9821b7cd55c6 │ │ ├── 1288e01972eb18d7d70d0f07975f0317 │ │ ├── 128f85c7be490fd0df970f645766a143 │ │ ├── 1290b63276f6fc7a3d4210e16777ac7a │ │ ├── 1293b2fc198f21a831d965010fbd6e21 │ │ ├── 12b8ce494fd67c49e8184d788349a44c │ │ ├── 12cf55b45efa2baf6ba6e8d7efe426a4 │ │ └── 12e00c73044548e6d5fb106b7c6a0f1a │ ├── 13 │ │ ├── 131dc63a523977edc92fd82a9702c31f │ │ ├── 1325f1d47f9a6f134dbe98e3ba42a79a │ │ ├── 132996f8fc14d7985e998ddb86d95c37 │ │ ├── 1341527a852ca9cc26f03ba10e659594 │ │ ├── 1342840f112d1a919299ac85760be246 │ │ ├── 13828eab0ff247c09878c09e672e5c3f │ │ ├── 138294065a3e4bb61aa70b430e548b12 │ │ ├── 138f4410900d616d968fe65dd0fa2919 │ │ └── 13e561d68cc09ddd48c3348774029794 │ ├── 14 │ │ ├── 1421b4d5208aada39d53925aecfa1b42 │ │ ├── 142b847fffc466c718e38595390cb765 │ │ ├── 143f76ee6a746040abefdec977b95e55 │ │ ├── 1469e68e5d3789805fa83faf884dfb8f │ │ ├── 14846a6626aa7e516630d32ee6afa27c │ │ ├── 148a1ba08df7bc97695f823ad2cf80ff │ │ ├── 14c07c1e71ebaf0a1ea61b46bcf09767 │ │ ├── 14d9d3dac6cc92099db1ebc279b137b2 │ │ ├── 14dd9a91880614e6e61bb5aae0a07de0 │ │ ├── 14e6f0b7bbb8346aed7902b8d5664c44 │ │ └── 14ee46b8760c4fb79b97cfe6aed232a2 │ ├── 15 │ │ ├── 1531861560cb2602c1aeb343819ec802 │ │ ├── 15439a0b89a5c8a000c7338a702b68cf │ │ ├── 155f2a30a8d5813e4faf6cb1c4653ef8 │ │ ├── 156ba57e1bf4524344b0cc60f208b758 │ │ ├── 156f5f6c7bc4fedfac9dd3c89760d70a │ │ ├── 15a3043126422d46547ae09816e83d9f │ │ ├── 15ae8b8cb6d1bb63385790a5f5fcd5bc │ │ └── 15ca9308538b2280b2a435f152ca64c1 │ ├── 16 │ │ ├── 1615990affa3e1fa33961196a29846a1 │ │ ├── 167a0ae291f3996811f59825733cf4bd │ │ ├── 168312e8780dee66d3ae618a613f34c1 │ │ ├── 168ba2f16731010d4799860120bb2096 │ │ ├── 16a3a52c0c06c8ebb4e14c2bca4df517 │ │ └── 16cbd591f16e8add27f884c53bcd81bc │ ├── 17 │ │ ├── 171e2ffc28847c92a929129a223f4b30 │ │ ├── 172e2d84ebe6219d6b056af12bcb34c2 │ │ ├── 17400289b87494be981f228113a31f55 │ │ ├── 17546aea90f60a2fcc380e7d14b163ca │ │ ├── 17842fef2b9c05d9865d11c042262eca │ │ ├── 178ead3248f52b1f6c479db585a03148 │ │ ├── 17a2e0c8458cce537a137418a7977507 │ │ ├── 17da73b5bfda6c7e6b196a6392984f40 │ │ ├── 17dd952d0520b6f694ebd474be93e8b0 │ │ ├── 17de5ef6f35503c3c6028233b78daab0 │ │ └── 17e520e5ee775329495d05d9ac7a935e │ ├── 18 │ │ ├── 1832fbf64b8f6897b926df887b543cc0 │ │ ├── 184d5e0e84700d8f78ae7f1887e56840 │ │ ├── 188c4a38defed32e82a10c97b0d9c807 │ │ ├── 1890e1d5504467030c0af8ad1e4da457 │ │ ├── 1893bc00f6fee305e100e7c5dac3571c │ │ ├── 18a9c968dfedde47049bc4863230e32e │ │ ├── 18bb7a3cf2e6c2a0f142673a9e959b84 │ │ ├── 18c21765057963892df5511b240f4c72 │ │ ├── 18d5f0303336dc77a9aae2b1f58350aa │ │ ├── 18daeab82c689f0b6e3f143062536688 │ │ ├── 18e5f4ef7cb7ce9a7b910724b8398b20 │ │ ├── 18ef1f50b0751f90c908190c8e298b0c │ │ ├── 18f0646c59417a055d1f476e9d737ca2 │ │ └── 18f872d86197d29de9ab2865f258a883 │ ├── 19 │ │ ├── 1904a57c07e08df52f35ace14d1e8409 │ │ ├── 192515b15e837e269ef3192099769db6 │ │ ├── 192cad2885e926eb472cc37532507d7e │ │ ├── 195e52720a35ef630b336d82bbce18ac │ │ └── 198bd83fc3c0cceb16a9bd01ead5513e │ ├── 20 │ │ ├── 20052e0f5e080b1aceac82e6225f4116 │ │ ├── 2025297025472bc430e2ff167b5567c0 │ │ ├── 202b58a9833ec4a0b77c0a6c45ea7924 │ │ ├── 2032efcad620b583ce007712b892a9d1 │ │ ├── 203905be19ec486be8467779a708b4bb │ │ ├── 203ed4cbc866aebf4a087b5d87410a36 │ │ ├── 204c451ae5998988fd8cb5b6997b4992 │ │ ├── 20678a23c8cbe160d483f61c8e536029 │ │ ├── 20697a2bd78438f2911a4a767b7a81d7 │ │ ├── 206ef6239658f956420b78c5e6669f78 │ │ ├── 2071128c3129d95af842bfd03bfd15d4 │ │ ├── 20bca5217c9a543133afac8fe6eae2b7 │ │ ├── 20cd7f02804e6e9d4bee10f6c197a90d │ │ ├── 20d7b47e8bc2d820c0c98bb849279264 │ │ ├── 20fdfebbaf881f9a9ef685c4c1f0c456 │ │ └── 20fe9c59eb2dd0cb05602ea5dbf1b33b │ ├── 21 │ │ ├── 21091632ea3f0bd974d62cf3f9c826eb │ │ ├── 212d734abd9bca1865ffce7ed4adc3e6 │ │ ├── 213596ae1bd95820e4f423cd0e7c7b7e │ │ ├── 2138cee4505cdca6d4afec1bb4b826d9 │ │ ├── 2157f34896b26db2f423c341cc99b8d4 │ │ ├── 2178a8a0fa8308fcfa83c6c3cf779a0c │ │ ├── 2186e04605508cca6d9d1d4134069a7f │ │ ├── 2191fe9728f1e2b8a55b6fa24200b931 │ │ ├── 21c3cba578e14ee7d6a37816725e260f │ │ └── 21e41b7c993126cef0eacb3c880a0bb5 │ ├── 22 │ │ ├── 2209539c8c558ff144dcedff834b2bf5 │ │ ├── 221c5b99eff74269fb4c7345b24c1943 │ │ ├── 22248225c36e00bd97268ea839efe805 │ │ ├── 225387e86ada4fe9e7bbd808c3a028db │ │ ├── 22d06ff499cc49595fecd11986e5f675 │ │ └── 22f881781f4805f676ba9212c2c48516 │ ├── 23 │ │ ├── 23044bed32138c2988ed8151b36f619b │ │ ├── 230f6362ccf964f6cffc47a4681e7613 │ │ ├── 23112cc2eca4c1aa1205b2cd59b71609 │ │ ├── 2388281cb4b3928b6b73a22c35c98dbb │ │ ├── 239374beb2d357332ac7360ad35d262e │ │ ├── 23938f8ce252ec234944744d7e94e431 │ │ └── 23e4a20ecabcfa659809e62e7e9ffcc3 │ ├── 24 │ │ ├── 24037665fb7eae41dd227e150a868aaf │ │ ├── 24255cb5669b5f43911c2d1310cfee00 │ │ ├── 245139ec33785112cd32c419bf94e599 │ │ ├── 24668255e3ee10303eb27cd1d861cd30 │ │ ├── 2484471e5d9f27762e43b54d51528785 │ │ └── 24cea80f9bdbe93a738458a5d954fd95 │ ├── 25 │ │ ├── 254fc7af024d17b8d075b3b466749769 │ │ ├── 255f1c1d3b57ae62ee14914653738be5 │ │ ├── 2561177ff1fbd1318c0fb17a6ec76f02 │ │ ├── 2577bff8a5ee0ff059fbbe12ad80825f │ │ ├── 258677b76162fd501e5e73d55e43e6f0 │ │ ├── 25c00d004ce2cd634f599c74917389c9 │ │ ├── 25c7a7ee795b01950bac95219e6465e8 │ │ ├── 25d3f9f6b5218dd8cfef2ddeb53eff8c │ │ ├── 25dcce76eaab7b74022d33843b2f47d5 │ │ └── 25e9286bc6497c34d38f825c4da00343 │ ├── 26 │ │ ├── 260db932db11f65c3550d1afc28c2e6f │ │ ├── 260f11c30af5d68aee5d6e6d6a73c95a │ │ ├── 2653bbb0a10b2d998ed811d1661f0a68 │ │ ├── 267809e9d7ef0cd33996e47fc629d194 │ │ ├── 2694c850c57d88e0cbbb623fc2897feb │ │ ├── 269b3af2484e30a6cea83c3321f9d1df │ │ ├── 26afda304f8b7e86ee4dce124e7a1b68 │ │ ├── 26bb46573a8a61672ded18f33f5826a7 │ │ └── 26bb94871a0e22813f507ada541130e9 │ ├── 27 │ │ ├── 27134fbab8dead470b759a8b5146838d │ │ ├── 277a7de4df435f68cc39c4305e757d22 │ │ ├── 279c7a6c77d1655fd114cca414527f5d │ │ ├── 279d112a2b3c06d9782f275cdb79245e │ │ ├── 27a68e16d79ee290f512e085d8e33bd2 │ │ └── 27db795b98fc207d4969712696080018 │ ├── 28 │ │ ├── 284b04a609a05967fde2dc2f29fb4832 │ │ ├── 288868ace3788dd7d6b89f4be59a704a │ │ ├── 28a23b7a8ccd2b67cb5de39b61248101 │ │ ├── 28c0990bf0a9ad7e39444b8869bd6344 │ │ ├── 28e3aa942b9771b28cb15ccb35dbc6a3 │ │ ├── 28e67a2b85079fff5f0dc3f0efcb1c04 │ │ ├── 28e9fcbbda5a2557ae9897f9c078fadf │ │ ├── 28f36da3e213b1dabd5aec6bc24f4171 │ │ └── 28ff9c75fc1c28b272b07bf3f7b72827 │ ├── 29 │ │ ├── 294806a623b0fadbc7138778ac55a743 │ │ ├── 294f94428261f558b3d6a6cfe97c1d31 │ │ ├── 295523c96dc9cc8f474c55023ccc7e6f │ │ ├── 296da1b9b0d6f2f791b24938ce620b92 │ │ ├── 2970b9db3b84d128811e53edf26b1914 │ │ ├── 297c7e66d97f616a8dc2d2a95fa7628c │ │ ├── 297f0d0632fae1b4616d25c04a154cdb │ │ ├── 29d1f5afffba85a948f4208f87c38ba0 │ │ ├── 29da69a5dedfd830ac770a3fa3bd52d0 │ │ └── 29e045f0153224542584f56840e55e0a │ ├── 30 │ │ ├── 301299d1b7a8a954392cddb560c4f561 │ │ ├── 3029f3b4ebd77865195a030f4f98bd2d │ │ ├── 30716c5a3b399a0bb60eea8bd9952415 │ │ ├── 30892d2413e76466fb273ee105ae5ec8 │ │ ├── 308f732158628213adeb625a130f1178 │ │ ├── 30bf89a6aabf74faf4421e8f72ade30b │ │ ├── 30d115e06e1be459acde46d6cdb7e056 │ │ └── 30d4d6a617f7daf6f45fd6985d8d951a │ ├── 31 │ │ ├── 3105c85cf3a7ac709e264b26245a8e63 │ │ ├── 31177d0f78de65bd54c13b828ace1af9 │ │ ├── 31436406361d1e7b02703cde7ab5c100 │ │ ├── 314903ae24c68ea50324aeadb44d3c88 │ │ ├── 3152c98d08c61794502c2dc06be4a855 │ │ ├── 3180cbfd3ad35dd9ecaf7f7fb5c91774 │ │ ├── 3189bebc6067aef85ba110b3dccf5efc │ │ ├── 318a37f0ddef74e649a873af1e3c0a01 │ │ ├── 31cb55152154006ec42c5e04ab226809 │ │ ├── 31d970e3ef6228c36daeb72ee1432f73 │ │ ├── 31e92cc18f96a74baac814a65892f2a4 │ │ ├── 31f72379d017648af5842932b938c37e │ │ └── 31f8fe9d8df9f14cfc00512a48047408 │ ├── 32 │ │ ├── 321b34253a5dc867d9b0632683279ee6 │ │ ├── 32546803babc7065e7a23d7500fc635a │ │ ├── 32751123395b9276c12310081a59cd85 │ │ ├── 32946d5a4fcf5c83f2625f7743d5b678 │ │ ├── 32bb5fcaaa17627704ab097d938b1521 │ │ ├── 32cab0e36d062c1317bd6347ece82c6b │ │ ├── 32d71f4599e2345d501b63acdff22705 │ │ ├── 32daa9ce0f2aa5dcc5ef4673fb237e51 │ │ └── 32ff03a6d70b9ca69b4f2a0a01862540 │ ├── 33 │ │ ├── 33014153a97fd44cf5edd330c7c8defd │ │ ├── 3319b12a4c48048751151bce9905045a │ │ ├── 3328b6dcde46c73db22d1aef802e9d14 │ │ ├── 333c5dd60c2fd3c7e8e072971c57ac83 │ │ ├── 3360ed1579dc22575ec63e0d5e367865 │ │ ├── 3388bc6320e3f9791f662135f6fa04f1 │ │ ├── 339c6a93e56d767e0cc9c5085732eeb0 │ │ ├── 33ac77091ae3da093f236c82184d2760 │ │ └── 33bba564e1e7f6e37181495c37ccdc1e │ ├── 34 │ │ ├── 3413083e9cf67e388d2d818d5f294dc1 │ │ ├── 34409d45dcd45ed511dcc7af205e367d │ │ ├── 345d4d7c93694ef6af1dd46554e19732 │ │ ├── 34781956079d4c23012f87f9f331ff9d │ │ ├── 3482e9c6a0dc4f2b0d4babf081845a60 │ │ ├── 34939a513bf70246efbc66f606b1303b │ │ ├── 34ae3104e351a0fdcd50cc0f0d3a0729 │ │ └── 34dfe30dde289c0a47a81e0530d6706b │ ├── 35 │ │ ├── 35203786154a544e15dfe527599f971c │ │ ├── 35222b8d5497e5e35467791208b8ebb6 │ │ ├── 35229f46813a7afa20dddf21d8a86475 │ │ ├── 353b267af82920df866ade2c58ede2d2 │ │ ├── 354aae5ac4b6bc59f6b96bd3bc532304 │ │ ├── 3551b2e20dfc17ca6ce6f0ea70200619 │ │ ├── 35740d3599c9c552a85f49e77f1661c7 │ │ ├── 357dfe23ed56fa9b062243ff10ec0043 │ │ ├── 35aa86df4d70c7f53317dc380f0a899a │ │ ├── 35c86656bde22d12ad98ab8a3a14d6dc │ │ ├── 35cfecff5dedb87611b783c6d15f1af2 │ │ ├── 35e68f76b729195ebfe35982888efffa │ │ └── 35fbc210a3aae5b46330d35e7ba3ab61 │ ├── 36 │ │ ├── 360855e3b989eb7c21371443b682ea92 │ │ ├── 364c716084100ce38411c3f8d84465a5 │ │ ├── 365b2898af7907e15d51e20c06d5bd68 │ │ ├── 3679e55e496fe54f28c2a59c1236fa81 │ │ ├── 367b2548810ad53e3564aaadb58a0c12 │ │ ├── 36952f9218a12bf981ea0a1e30726a31 │ │ ├── 36958fbefc33181300fff4dbc551a542 │ │ ├── 36bf80ad9302bb14dd8fe03d7174a1ad │ │ ├── 36d6b1debe35e98796a65f81643035bc │ │ └── 36e85f461755c6760bfff6008fae5f5b │ ├── 37 │ │ ├── 3700a06331ae623ce9f726821cf3b190 │ │ ├── 3741225d6d9f68298b537929b5d3477a │ │ ├── 3754da33646b28af32f78bea05033784 │ │ ├── 375f9d9de6b816d6a8c487f7266804f5 │ │ ├── 3774e5836297b76009a4f29061af442d │ │ ├── 378a4f570391be578af11b408bb4ee29 │ │ ├── 379971c93f0ad85dc646a4428cd17fec │ │ ├── 37a4d4037bd836f7b68056ea7ce6900b │ │ ├── 37be302a6d929f1dec7420b7aba9904e │ │ ├── 37ccd2695b32f3f0220f6cc4923894b0 │ │ ├── 37d30ebb2b2ba64fa161083710df6dd7 │ │ ├── 37d3dbecb55f60dd1b7e450e4f12fbb2 │ │ ├── 37d55ba25ad389f118211aa4c5732821 │ │ ├── 37e53c1a8f7377ff4461d60f951bddf7 │ │ ├── 37e5a587c23f7f4e4e04b7e79ae4156f │ │ ├── 37f51fd82d01f6dc2d3d2c1d80efdbf4 │ │ └── 37f6722f86032313bd31aee3ad528196 │ ├── 38 │ │ ├── 383e2140cbda6e865257b83a7f4b7067 │ │ ├── 3852c22ab500b00db286caecb01ca2fb │ │ ├── 3858f45e28c30ec6647c6ea3a165b362 │ │ ├── 38606b01d6ec66ae8025ef4cac53a5c0 │ │ ├── 386c9a80f696d415c383b14dc8cdf65e │ │ ├── 3877699b59e8abffaefb061ec52ec0c4 │ │ ├── 387b4d440ed59bd44cf1857cfd3d8c36 │ │ ├── 38abc5af69d2b103133476a5e5c184a8 │ │ ├── 38c3d3ee5740affd2915374fa7717a31 │ │ ├── 38d5c7a67aa6275df87ef4c77946469e │ │ ├── 38e1180d9e5f90f69d20740f10c771d1 │ │ └── 38fc6eb9e80843821a04b276c96214f1 │ ├── 39 │ │ ├── 39424cfa6681dfdf597d9e76b052e9c2 │ │ ├── 394e3e52c990b4dbdc151afa3b9d4549 │ │ ├── 39584812182a6edb92239b5a45f83a87 │ │ ├── 395b6d81eebca632830122938cad76b9 │ │ ├── 39849838b030452b07dc8ac72bab8286 │ │ ├── 398bba9a167f91a9af08177ceb776a3b │ │ └── 399a0e00712b9710da48788b39e4b4aa │ ├── 40 │ │ ├── 40bebe9d859282a695c879a79de4ca7b │ │ ├── 40c2bced0e9da8e68d9aaa3f417e0400 │ │ ├── 40e45751761ee8d63daa99ca346cfdad │ │ ├── 40ecd3bec408007bafc824e901bc0e1c │ │ └── 40ee3b46d5a6af6c73f8a8471cdff359 │ ├── 41 │ │ ├── 4116804a21bade53c35f08f335bdd5fc │ │ ├── 4120f993080f23b57fe87b113b5151e2 │ │ ├── 412539c603d4b05871a91d3ee30283f8 │ │ ├── 41287151e7e58afe8bf3c8d3b7d69ac4 │ │ ├── 414f930f83aaca79d8ec53b68287b281 │ │ ├── 4172209eaafbd9ffd90bf0842a66208f │ │ ├── 4180d7aeae15b8d407af072575cf380f │ │ ├── 418f743f7f65de20b91026bd8facde86 │ │ ├── 41aeed7fbb57d43f96f8961682c418ed │ │ ├── 41b29b13262d37bc0b17e549d141abf1 │ │ ├── 41d4f8b9e11aad2533d25528d4536a11 │ │ └── 41f3aab9a6ddcb0aed8e526baa0c7805 │ ├── 42 │ │ ├── 4216129d42fac737e97391952a48e77b │ │ ├── 422ebc45fbdd7cbd9b4210956025b291 │ │ ├── 424de58a9484864496f9f44a87db5c3a │ │ ├── 4261a2754f42f42408435c71f0291e75 │ │ ├── 429e06dd38120bceb83c420097924cfe │ │ ├── 42cbdf2e938a486b69ecbee279c0a4ca │ │ └── 42df7cc0f3639c8a035dac8847d778e9 │ ├── 43 │ │ ├── 43097e938159764dd444e211b29998ff │ │ ├── 4336f6d53f3fe726961527b9eac8f35d │ │ ├── 433fdd200c3517db7bd698dfa5771dc9 │ │ ├── 437cbe3d9b5e5cdbbcd3ab4fac2cb764 │ │ ├── 43d03835b60c4373ce1a0a85bdfef3c5 │ │ ├── 43dd65a364cab97b74f49435525294e7 │ │ └── 43fd1525486edec287e5dc61ce0df92e │ ├── 44 │ │ ├── 441519402681b15f39217a6a21ae98f5 │ │ ├── 444067f418d7c8a627db45070770a2b1 │ │ ├── 444ea13c09d21064de142d9c6ff0deea │ │ ├── 445a14e2eb2b97a3e5bf38b0cd883301 │ │ ├── 447ad41e433c1ffc9c3b3912c465b625 │ │ ├── 44bf6935a5677748a9be165c8823c550 │ │ └── 44fc393407f1c97dd0125a404b0aecb3 │ ├── 45 │ │ ├── 4511f09a54f6bfde05511e1e9ed670dd │ │ ├── 45200920a20886a882d072b3689d8f3d │ │ ├── 452845abc924887f15e6d90750baeeef │ │ ├── 456275d19ad0d451a5c3d46db683fb47 │ │ ├── 459b7d6adc9d1ba67d8ef686207a6010 │ │ ├── 45a19fad0076120e5affc5696a25e0e0 │ │ ├── 45af4c91a0a3d09762b05646f6251fd7 │ │ ├── 45b686ecf53b8cae297fe7c877e37a03 │ │ └── 45d38d4999bcdd24bbfe7df55e2c759e │ ├── 46 │ │ ├── 460b70794d52e6fcf2eb0de5185d2c85 │ │ ├── 461bd55a824b563f531733770fd2fd41 │ │ ├── 463e22f70d901917d3aa844a42789215 │ │ ├── 46476452140326dc0ebc5d149a41cb6c │ │ ├── 46655e2851dec3be0f33b9a7f402f803 │ │ ├── 469a7c66a22c0405c1b040f2f76635e1 │ │ ├── 469c1c28b0e9285ad61f27d2563fbb8e │ │ ├── 46be1c7ef79518ef4ff44432e3f2d01b │ │ ├── 46e5b5b551209a60347985898e6d8958 │ │ └── 46fb072674d3200b878418f7b17cb183 │ ├── 47 │ │ ├── 4708390ae0857df18ceea79b0f1d5fd3 │ │ ├── 47360be2cd15951ab87390d943383e51 │ │ ├── 473d4d95b68f086af351ae704075cc46 │ │ ├── 4752f2341d70a29e50094cf040d880b5 │ │ ├── 477ce78bab97aeb3b1b91ff81d95b45c │ │ ├── 477cf6e6bd86dc01cdd8e6b23a78f092 │ │ ├── 478c7ca7ecc884cce3f19ed0d8bfc2d9 │ │ ├── 478db5c3e85d44e93d55a3286e8f7d1b │ │ ├── 47c4f070f88a4beef4e5de8cf732a39c │ │ ├── 47c918b663dfbb0266c748608baf620e │ │ ├── 47dd84122e5dc58cb921a7d4d22636c8 │ │ └── 47ec9ce90dfbd1c0b8b60dd9eaaca7e0 │ ├── 48 │ │ ├── 4801f631224e82614f9d5e4e58f24c06 │ │ ├── 481c55625ddfcb24e0cd58ea7ecd84ab │ │ ├── 48225dcaed5f966d4591148fd4d56ac3 │ │ ├── 4851773376cad126985c15291addf0e1 │ │ ├── 486394ec6b2b2f7e35c4cedea28b3e0f │ │ ├── 4880e8735213bf1a72b105d55c8a69b6 │ │ ├── 489338077da6d09c5d9e73082488a011 │ │ ├── 48979788671b9fd7c8cf735484be0928 │ │ ├── 48c219be912d2f7bb8a50117ada811d8 │ │ └── 48e2adf91576ea0c44a141dfe4712979 │ ├── 49 │ │ ├── 490e5658cb6bb334d993691cdd5d0b61 │ │ ├── 490e8217d81fa7f83299c57e03d53726 │ │ ├── 49247c7ec2fff144df62266814d69931 │ │ ├── 492ca638ff26e314c554314fde07ece9 │ │ ├── 4963e5ee194a031f13a8acd984eb646d │ │ ├── 499ec13ac8bd5c1386c4f7fae02e9e21 │ │ └── 49c7dd2f71bbaa2f999473a27966d0a9 │ ├── 50 │ │ ├── 500da2646ef4214102095209064bd1be │ │ ├── 50188ed58c391f04b8ddc188f7c90c72 │ │ ├── 503095f6246732e3fa017f6f800d0a00 │ │ ├── 5032256270328331b311db6c5cbe9cb0 │ │ ├── 50379aeebddcc1aa3cf3ac02924f4f94 │ │ ├── 505e81f59ee98d11d80e784c31e7f49c │ │ ├── 507c20d336805ec6359bee7f23bc7ee6 │ │ ├── 507ed9101737054b27a644b4aaa6307f │ │ ├── 50c7bd1738a794f088bd3f6f39f2d792 │ │ ├── 50d4dbb764d38d0077d747c03e6b5ecb │ │ ├── 50e0f06fd150448938a471d47c237737 │ │ └── 50e1917cfedb59f7f6fcec19f5c3c05e │ ├── 51 │ │ ├── 510736ada4cb419f92efebc813501c9e │ │ ├── 510fa99da0f15962a071195cd519fd02 │ │ ├── 511aaccba7632af15d527e5404194022 │ │ ├── 511fd9fcb4b17308ec2b8eff3b901381 │ │ ├── 513987e6e732d27e71b2b1975490f2a2 │ │ ├── 5146cc14be66735b2ae0197102f72a23 │ │ ├── 516072c054d8ff397137d5fa2d030a97 │ │ ├── 51829c76260b389189559d9aeebd5c60 │ │ ├── 518b9bad7b33eed701449d4bbaf9c5d6 │ │ ├── 5198211902d79d69d2989dac42d620a4 │ │ ├── 51c69478b506c3fee4aa5221a9a72e38 │ │ └── 51e1466d8e0d810a3c4165cd999db045 │ ├── 52 │ │ ├── 52064db390a9616104712c626f44701e │ │ ├── 5210e49631f02e39d6e2610cc2785b94 │ │ ├── 5216f0ec9923eda1e2f1bf706de1b093 │ │ ├── 5274c3a037a8e10163f1ae1599d9f79f │ │ ├── 5275dd7c7b75aeb3fceee605030ca0b9 │ │ ├── 52ac04b8fee146266c306f2e92c847dd │ │ └── 52dde0eedd104f763061e80485a37457 │ ├── 53 │ │ ├── 5300db853064237eef3c240d0ee4409b │ │ ├── 530586bb1eb40ed52b206b95664ccd3b │ │ ├── 530cb3fe3de440a290c4de62bd231522 │ │ ├── 53236a8ecd41006b9dba214815227da4 │ │ ├── 533f3e6f22ab99bf8adda8ada3c760a8 │ │ ├── 53406ded23080e406dc663dc41e205a1 │ │ ├── 535d6eab06fa70d8b31e08be66808536 │ │ ├── 5375aeeb444e6f64a9b5ba7a18995d74 │ │ ├── 5386a6af6290747f99e25d310d234427 │ │ ├── 5397e36b40ccff386723ca936b8405a2 │ │ ├── 539fea0ff8d3eb5f55d0cfabcefb854a │ │ ├── 53ba52a4b21dc094947b9dc7bb14a8ce │ │ └── 53caddc95f58bbe17620e0af48d9c221 │ ├── 54 │ │ ├── 541964a8e3a80c9647b6e40ed52e8825 │ │ ├── 54406b5afc464c85015694405c6dc13e │ │ ├── 54a8770e30777cbea6265b5619647acd │ │ ├── 54b92fae7a4360fe7764834dcb57171d │ │ ├── 54bbcc6fcd33cbf69b59bdb2951789b1 │ │ ├── 54e709250328e68a0b2fce6b56457270 │ │ └── 54edc3028e535fdd2631ec7c0b03c1e8 │ ├── 55 │ │ ├── 55140ac674fd3c9a10039088a91f4cdf │ │ ├── 5515518de56177cc495292a617bff58c │ │ ├── 552877ea478b0d9456e82fb7a5f162fd │ │ ├── 55399467d15f94cef4603cb2cc4107f4 │ │ ├── 554442200a05649cff2ad087f99cf58b │ │ ├── 55444c689b7909772c4d2a6a39925d3d │ │ ├── 554c500545d362d331872203c964712b │ │ ├── 5555f31fd6694ec78f0efce6e2c07ab0 │ │ ├── 5557bd811d3a921e5270f47fc92b957c │ │ ├── 555c22ee4f4724bcd5efd1d6fe6bce9f │ │ ├── 556868fba3c2755d7fc4af6baccdc389 │ │ ├── 557c6246eeab0f6301c90c81e2ccc4e9 │ │ ├── 55853a57b899b13e282ff9ae8a74915e │ │ ├── 558bf80af82d28d6a0c3cfe84fd2c02b │ │ ├── 558f9289f780b03b61f98b34e833b848 │ │ ├── 559a9816396326a9c25dd16fc4297b6e │ │ ├── 55a5c4e805dcfdb9e2143bb5774ff061 │ │ └── 55cef151638fe105833bc5c6b9fea106 │ ├── 56 │ │ ├── 560711241c2aebdecf0b586f3047f812 │ │ ├── 562eb0d8b4171140cc9b3b0e43cc3f55 │ │ ├── 56702cbb3ac8a8316f93752f8b2d3179 │ │ ├── 567507fd8ff2a909cb35df4bebbc24b7 │ │ ├── 567ac72bfe32431ec4e69e1f9f395907 │ │ └── 56c5a74a1fb2a7dfe67e6c597b67287b │ ├── 57 │ │ ├── 5701bb1f0961f35b49e70b34c8c8dba0 │ │ ├── 5719fc79e9ff0053218809dee32e0d02 │ │ ├── 5766a46e0e09af8f3160165855694f70 │ │ ├── 57883cc1dc3be051b57d1642bd70bbf4 │ │ ├── 579ee7f6a69a7c53b3028fa1794e0c40 │ │ ├── 57a7284e436a97c7988114dc61e7b5a2 │ │ ├── 57aabaa0c9d4fd0b1a63130889529164 │ │ ├── 57ac8332700148ab158e943cd226568a │ │ ├── 57dbb3e2b046d2bad8efd81b0cdc8059 │ │ └── 57e630ae06a60913ebc1eff3a829d784 │ ├── 58 │ │ ├── 581e5f36f5178ae7abd75faa28e3d2ab │ │ ├── 5822b2fea0861ed83e08c99dc8eb5e80 │ │ ├── 5835509ae3ca6beaed882de27e0fda9f │ │ ├── 5843fcabeb19cc438f9a05fb3f87a17f │ │ ├── 58525af8f481cef7785085df3b31b4fc │ │ ├── 5885dd1bc9a32d3f35109953ade16e02 │ │ ├── 589458004b10151e8d4da50601c6c418 │ │ ├── 58aaa302eacf4128c4f145f46c8e668b │ │ ├── 58c2059ad98425f603da56f75b3290a9 │ │ ├── 58dd93cf53f02da36b649f487197d3fb │ │ └── 58e3f3d419fec7de8fe845a559056a71 │ ├── 59 │ │ ├── 59062e0adaf8ce145a91af784ac3c6a7 │ │ ├── 59183124245f32f9d6e61c57fa7af761 │ │ ├── 59295a2099e6527769a7f8306bca4342 │ │ ├── 592d7068cb42bbc440d82aac74c8ab5a │ │ ├── 593a3294e26f33a78c7d720241c38178 │ │ ├── 594f2419e1c94587e0f8dc59e79bfed1 │ │ ├── 595344e945a7eb55cab99d924d36ee97 │ │ ├── 598c9b1f2f2285589495cacddf771263 │ │ ├── 59b2fc56626abe7672afbd3770fd691e │ │ ├── 59d8c43904a632aaff22a3dbf8ef39f9 │ │ ├── 59da7d00819e62f51c364f08add61206 │ │ ├── 59dda27107a2764839023c2a2aa84f4f │ │ └── 59de5129a5aea4a9c3a590eb841d8c58 │ ├── 60 │ │ ├── 60119139553b4ff45e43ea1898512bd0 │ │ ├── 6017546d6c712667d11b9af6da2c74fa │ │ ├── 60848d6aaef651c22b36ad8784fb0cc0 │ │ └── 60ed4f1562da21f328c8e7e341ff0516 │ ├── 61 │ │ ├── 610122f92528022da33cb4d4ca11c20e │ │ ├── 610d450a9940a5e2d5a49e8cca6af206 │ │ ├── 61124c59142d935dc3846804b1d23db7 │ │ ├── 611515a3cabdc0b065bba0db2144f5d7 │ │ ├── 61320601d943d0a9c99e79ff4a27a99c │ │ ├── 615120624a26c88e35e0d5644ceaa0a2 │ │ ├── 6177afc93bc4484918b8b795dce63ef0 │ │ ├── 6179c64850bc65edf056604f729d9242 │ │ ├── 618f85ac553f0d199418b46517cc996f │ │ ├── 6190fbfbe679c1ad4fbd34a2ffa099b9 │ │ ├── 61b013618bf2671240e13bbc7d5ef60a │ │ ├── 61d428158ea2819293b5e298c6af8adb │ │ ├── 61e187f24b311058d0121aea3aacd926 │ │ └── 61eb4c38e2250e084c13b12745de0292 │ ├── 62 │ │ ├── 620c96349eae3881f86f1b1e2f7ac8d2 │ │ ├── 621d41a8cd1865dd695868f4590b1e12 │ │ ├── 62329e69cd3f884b26b74802bbc8b66f │ │ ├── 623af8dd6e5adfed6baf96cc60d8be3b │ │ ├── 626b218eab358d029ca50885e2d62fb2 │ │ ├── 62773a9f5e8b1e2baf9ef5b94fe292b7 │ │ ├── 628ef98dc1114d41b29e47c9a6d5b01e │ │ ├── 629c2bd3aa984b71de2f61bdd323f1db │ │ └── 62d6c1a00e30b4991b026c3dc10edf8a │ ├── 63 │ │ ├── 63027ef5fb8c98f04ad3b0be84c7e850 │ │ ├── 63089c9f03b5171b2e7241e96b363544 │ │ ├── 6333ca86f5017606b4e9aa99945ee53e │ │ ├── 63354ad71bb41a2285f5f19b3b1f45c5 │ │ ├── 6337dd128eaf4b1059d7d88311f6d3fd │ │ ├── 63450adf944425b6075e0a19d90e7e27 │ │ ├── 635c39df7ee91845a0076230e1041a6c │ │ ├── 63819502ef6182ffe44abf1d2cd2d6e3 │ │ ├── 638e63658cfe260cf0fc87ff60fc8211 │ │ ├── 63998e65b9e41fdd2c1115643d3548c5 │ │ ├── 63d3ed237eb15cebd5d4c175438dd235 │ │ ├── 63d57c6d9efdc30e7814d3195a1b0214 │ │ └── 63f2d0aba47811e0db64611a87e67016 │ ├── 64 │ │ ├── 6409f2caf8b1964de06877d32ad505d6 │ │ ├── 640affb588f29d19c7b7ec2ac37c32b7 │ │ ├── 6422411330757dd13164fd91e9840c5e │ │ ├── 643d33f6ec42b5e47b744452c59bded7 │ │ ├── 645ba71bb418150766f22c228a412c0b │ │ ├── 646f4553313ec0e6e0e9f14841bdf1df │ │ ├── 6488299dbb0df289893f389de3e700bc │ │ ├── 648d68fb071bc4815b80a5dd42a59f40 │ │ ├── 649fb2480c5229359ac74555c7c61779 │ │ ├── 64ab7c120c524cf16408d3d622a10971 │ │ ├── 64d3528af16126da0a5b551b55448bd9 │ │ ├── 64db12ef27c2f0dd1cd6bbd21f8c3606 │ │ └── 64f1523e5bdeb6869f1e3318fddcff49 │ ├── 65 │ │ ├── 651003c9b34299f09d7206c0f8cd1f60 │ │ ├── 6517d67999c85906d4d4dfd054a91f90 │ │ ├── 65337837703220bb5b84714afd85903e │ │ ├── 657083a1d08bb0205b9132d08c796fdd │ │ ├── 6572706362708643b8c1ea1a630d5cb0 │ │ ├── 659491f7aa2ef12b2892613c0c03c765 │ │ ├── 65953019521f898828ad5105ab033767 │ │ ├── 659aeb07579943fbd90fec73151e623f │ │ ├── 65b7e093f2c465c1fdc4e66b67e6186f │ │ ├── 65cab20f89afe5cd9a256d012282b124 │ │ ├── 65cdd274c95f336f405f0dda200d3989 │ │ └── 65ce4690d811b1a87b8180a16fece7df │ ├── 66 │ │ ├── 662ad2e758a20cd6a9034f371ab3dbbf │ │ ├── 6632962161925cf129fd79b43348d482 │ │ ├── 664dfc675734482dfe46918728ae2713 │ │ ├── 66abda705235254ca44c85f7e357642b │ │ ├── 66c73af4bcc9e654afef4a5a6ddaed69 │ │ └── 66d51f919a7a714b1b48dad0ede5bb71 │ ├── 67 │ │ ├── 6717f1ae081dd817c02beabc804de630 │ │ ├── 67326762ce8de6a7bde393fb9657efd8 │ │ ├── 6738600d81cc21b7e403fda640dae1d0 │ │ ├── 673cb42fa9dcd35ce241f22459bb9d47 │ │ ├── 673cb5898c59a100040d97b10a4d8386 │ │ ├── 6745bfacaf786a8712bf8fea9726ab61 │ │ ├── 674d9500dffef33d557b7d58b9f7211e │ │ ├── 678a8cb2eec12b7afe23282a9a47b0f6 │ │ ├── 67952effe85b87a2ad89ec3347a2da98 │ │ ├── 67e17285cdf92ff34c0fb54ca0555346 │ │ ├── 67e857353b434391aa9c13cb5240c2c1 │ │ └── 67f196697ab858842a105739353b476c │ ├── 68 │ │ ├── 681039b94bb0ed2777f0d9e198f69450 │ │ ├── 682d782ec01a20ffe14d219b2677877f │ │ ├── 682dd696df626387ff849aded80541bb │ │ ├── 68476a5f31cb6703391fca2c45ffa67b │ │ ├── 6855c68d280e0076766167fc85690e4a │ │ ├── 6896fb379fe4da79c166920db161cafa │ │ ├── 68b3fec11858be1e9817a1731f0dd832 │ │ ├── 68b569f13d561cc65b25634adc94f8c8 │ │ ├── 68c0e73366325192bd3393d29843a897 │ │ └── 68d4acd7ffe437c24113deb075005054 │ ├── 69 │ │ ├── 692bfc814d4f481addef9f0818aaba06 │ │ ├── 692d15e279ccb8a8183a8c4c91275f0e │ │ ├── 694b1c25ef2c6892c299edab1203278e │ │ ├── 694febd51ff3ddb86880904d7fb6482c │ │ ├── 695ef16dfd1b7f7cefb01a450bd10859 │ │ ├── 69661ce0369a1b5cdf00062122f9be6e │ │ ├── 69699be832fe2664c86e7943849f4d65 │ │ ├── 69747e77d1c62044c5dd58f271a5e1cb │ │ ├── 69986e97e5a6e4af67a9dd400ca7a105 │ │ ├── 69a1aac7b2101a4efe5da2c15ee24dbf │ │ ├── 69b77f407e3398f9375483bd48856bf1 │ │ ├── 69c9096ac60533857c74f24e39517f05 │ │ ├── 69d611e1ca8c9cd06617bb89e2d95d35 │ │ ├── 69d785ee4b602cbb490eda4a3767bd78 │ │ ├── 69dc1d522e20ef1f4071bddf498a5510 │ │ └── 69e515a1a622ddf43bdaa9e6b1c2bad5 │ ├── 70 │ │ ├── 7005819c56a4d6629b8d22d3ced6b1a7 │ │ ├── 70067c9137d84a623aa9b6db6d2b1363 │ │ ├── 7016693101d0131630534cde7415d79f │ │ ├── 70268fde05acedb9ee6c2a6b48f39c28 │ │ ├── 7036c5f7a8df1a69eb8a27ff6729c5d9 │ │ ├── 7069fed67ba9877aab6c0d6109c6e1e2 │ │ ├── 706b8697b03bf587e758f11324fe9b5c │ │ ├── 70749deb765813a02842b2098777c73d │ │ ├── 70770a624393a17e4b15f621a3149bd3 │ │ ├── 7084c0f86ef02c66a275d58e9e74b119 │ │ ├── 708bc4a1e7273e8708a56c35ec140f7d │ │ ├── 709863d71b4fbe300532e38ade971d10 │ │ └── 70c74c89e6167a83ee6608574f9a6bbc │ ├── 71 │ │ ├── 7101809a91b1a5d379bb397d2d692855 │ │ ├── 710f28ebd8c5675e9205ce3b3db563a2 │ │ ├── 710fe23b27d24b19cfcdcb133c8ee146 │ │ ├── 711e661ca452fe2050f1eabe8baad4f8 │ │ ├── 7170414bd974d799f2480135735012da │ │ ├── 7179d27fe709c44f889cfc9f9b3c5857 │ │ ├── 717b5237c0927bbefcd75f6055baae1d │ │ ├── 7189b5c7ea839352ef12ad586d12b67b │ │ ├── 719c6853bb81d5a61b7e5e70fc2befa9 │ │ ├── 71ab966320bcb2de3a0c14f40cf81f05 │ │ ├── 71aeb1e250e96f1b5fb0dcd7294bafaa │ │ ├── 71b984f14c517728388aba4e1014525a │ │ ├── 71cb9219eb27686ceb626199a84fb178 │ │ ├── 71f49e8c22a169832054c5810c9b8668 │ │ └── 71f799a2b5186ef6e98a7c1e73372e0a │ ├── 72 │ │ ├── 721be9109add3e1fe45009c363a754cf │ │ ├── 7223882f46160f4293ef78927375a94d │ │ ├── 723a15d835c689ce18a0f2043943b2fd │ │ └── 728de0a70a6b286b23c38b6359ac036c │ ├── 73 │ │ ├── 7312f03023667f3940ee4d69461d039e │ │ ├── 733d1ed321495a93853414b8a2188c27 │ │ ├── 735cfc3a64c4f6505e9393752468ba54 │ │ ├── 7365004af06b5c3aadc6684cb1cc87b6 │ │ ├── 73998f724195d5fe0af7a3042b205801 │ │ ├── 73b84204b9538ce5e7cae039a31ac223 │ │ ├── 73db7013c68ee8751738dd8d4d58a9ae │ │ ├── 73e0ee14af67d4446acd8598c7403469 │ │ └── 73fb525b6f81c076465382aea3aa5e78 │ ├── 74 │ │ ├── 740facaddbd0ffe9b482b43232ca1e35 │ │ ├── 7420263055463cf7e66e193ccdde4c14 │ │ ├── 742f341cf3ebf68dff22ab96d6d77b75 │ │ ├── 742f9a499befd27ce378b3399cbebf4f │ │ ├── 74364bbc3a250a0bb40fa128cdd1c0a2 │ │ ├── 74517a75dbf6f58b3c8adceef4a0328d │ │ ├── 7462ffaefe9852e8dd0c4c3506702090 │ │ ├── 746e5c0aba40b10719971f53bfb4f2b1 │ │ ├── 74822d5d5b94cf5fcd88103b66c0b95b │ │ ├── 74a77ce3c92a1649afa7ff9a4551aaa0 │ │ ├── 74b9fb3e510e358f4a706d907a17349b │ │ ├── 74efa19edc2feffc63c3535d7ad835b0 │ │ └── 74fb98717d03b53f5b0b6dfbaa2d9690 │ ├── 75 │ │ ├── 750663ef585ddd1c0378e5645bf042ea │ │ ├── 751315d0599689964c4f19ff3f593d35 │ │ ├── 7522876d4cb1d126162772f3747b1ba4 │ │ ├── 7533495b2c2b0225bdda3e38889c2039 │ │ ├── 755331e7584cb95b30526ab1ef033579 │ │ ├── 7562b326a3ce0e07bf9a626b2319fc89 │ │ ├── 75c5ffb81ea8a463e9c28bb5121211bf │ │ └── 75d84a95bdaec624d51ea7b9d417e1e7 │ ├── 76 │ │ ├── 762d833818b88b744b4f90041b88a9bc │ │ ├── 764480c4998ade51781f8014f0b7f3f7 │ │ ├── 76448187691852b2e6961c42852f07ea │ │ ├── 764be04e2b51ecb23ea23f56e06f92ee │ │ ├── 766d9f8ba4d684ee508819cf2c35e54c │ │ ├── 767bb5333c9ac96c726008c100b7a5e0 │ │ ├── 767f66ddf574fb8f3343cd00fcf528fc │ │ ├── 768491c1e90c34ee4b7cdf30a1eecd8a │ │ └── 76fa0794ad7fe936d802baee2368d554 │ ├── 77 │ │ ├── 7713dd964067cb7d00268fc91c29a8bf │ │ ├── 77274978f236e33886aa960bd66fec5e │ │ ├── 7729d165d7f8c6d5ecb41733933118ef │ │ ├── 772a76d685d27f5c9cab9f0fd1fdc957 │ │ ├── 775911882b7a6072596e0c798adf9cd3 │ │ ├── 775fda9f7fc1064fcbfd0f9fa8705d82 │ │ ├── 77765eea5c618a8935ab8a8e5283a492 │ │ ├── 778297f02b92550a293952251a5173ad │ │ ├── 77937b741fdc34dca6a1479d330a451a │ │ └── 77a777bf25005e85a1301b2abe93c66b │ ├── 78 │ │ ├── 780b656b0fb760a16c99c3f0125a57d6 │ │ ├── 7811e4e4daf84eaa3d65690452dc03f5 │ │ ├── 781a05dff57046f42df13728ff5a8b1b │ │ ├── 78384637e42316177f054f58d9dd0a13 │ │ ├── 7869e7022ecd806fe3ec097e6862387e │ │ ├── 787619eb28aeb1ba8031bd547f33abb7 │ │ ├── 787c01f3cad365c36cf84922106f26e3 │ │ ├── 78a95e565c9d8b1905dc970264feb305 │ │ └── 78cf2ec9126304f30386dc1b5e18605e │ ├── 79 │ │ ├── 790dd048de8803cfc8e26a6a325fe6e4 │ │ ├── 7925062b2d9cada58330d52ca3ff2e79 │ │ ├── 794dbd0dc228825964a14d324bc6c8c8 │ │ └── 7969d161fa816447bc9057be056b849e │ ├── 80 │ │ ├── 803de3c5b3dd14366976cd4300a2f436 │ │ ├── 80576fa302b5bbcb544cc34469d97326 │ │ ├── 808abfd66c35c5af55d5ea0d00bcb534 │ │ ├── 80aa383fa1d9f4f9656ec77fa58c85fa │ │ ├── 80ae85143163072ef6a78da341e9248e │ │ ├── 80b75e9cf01de951e439a461499e156e │ │ ├── 80c1f575986d47aa4a2ff79d2b554652 │ │ ├── 80c3ba949d5f55ed2693aeaab79ae5b8 │ │ ├── 80d220301c53424ec61cbfd117a478c1 │ │ ├── 80ec69c9c2b5fff7071b073c9da4efad │ │ ├── 80fc832169a67c84d3b1d65c84bd3585 │ │ ├── 80fcf68ba32f2960159fbca588123520 │ │ └── 80fd29a14496f47b967620d10b254337 │ ├── 81 │ │ ├── 810369ead930f552f2b6c04fe20ff501 │ │ ├── 8133ff8a11850c921f546c63f6ca8d1d │ │ ├── 81525bc41f4d147de7683181f3e1703a │ │ ├── 8169eb01c9b69b5349cacc7e7c52a038 │ │ ├── 816cb9aef47bfb9d5e91de8ab45626a6 │ │ ├── 81759814b381a461c32e36934daed57e │ │ ├── 81a3616c6f6dbca6d6f5e7fdda6291da │ │ ├── 81c3620c82b23507958d67964f7c5b80 │ │ ├── 81db6e5086d5aa1abb6416241051d892 │ │ ├── 81dcebc7c4c551a606ab8b713aa0e87f │ │ ├── 81dd98d6f3c651d985aae702acef4fb6 │ │ ├── 81f3dcbcca778e37aeace3a5fd0d91dc │ │ └── 81fe1167020fca63fef6b313a35281c6 │ ├── 82 │ │ ├── 82065efc9b3b99707660b4c3a07c44ea │ │ ├── 823a11252997ea93ad18ee4d2c4e307e │ │ ├── 823f408ece4a214636835c5218e5eaa5 │ │ ├── 824074d4a9e1bffb28bbcfff27547f5f │ │ ├── 828260d0c5fdc44d59086a81e7274d47 │ │ ├── 8285da498b4828a915c306130d75cc8e │ │ ├── 828adb4ad38a1228952a82fa032e844b │ │ ├── 8296734b9ccdc4a3514dc7047127719f │ │ ├── 82a4ee4b61170f10f305eccdf4d6661b │ │ └── 82c141f17292c41697d90a8407a37767 │ ├── 83 │ │ ├── 831746d8b6019da99b8cf1f2b94cc2a0 │ │ ├── 83248b22d9b2c00e4b11ac81371e61da │ │ ├── 832c73b1411338f277e1146e4fa0819a │ │ ├── 833c0729bfb10996fd0d789acd0d8d9a │ │ ├── 8360503c84262a59f33cceef49518977 │ │ ├── 838acbd5a6c8d4161a869bb3cb668942 │ │ ├── 838fe6ed55c6cc5ba385327404726754 │ │ ├── 839a12e06d0767ba1b40b9ea4b6b0279 │ │ ├── 83b3257132a4505c6bb77963cd69a463 │ │ ├── 83bd387855f382b856ca0aba5de8ab3f │ │ ├── 83be400bb48ce6e693d8b5f48f94a0c2 │ │ ├── 83ca122ea7eb184d691ca9cae978ce50 │ │ ├── 83d65f00402dbf1b71b1698b969990cd │ │ ├── 83d91242d3b9c7fc2de7373b4f597602 │ │ ├── 83ef580cc60ef3429554c2108eefe681 │ │ └── 83fdd475e49ba0422b4eac96d2811b06 │ ├── 84 │ │ ├── 8421ad4e0b526d7fa0c97f87092bbd38 │ │ ├── 843021923e8c6c0d9d6f0e272ffc2178 │ │ ├── 844385eaf5a30c9116d3b5e4f844a645 │ │ ├── 84b1ed20d548708d7d54938c5892b5e0 │ │ ├── 84b20662eb47d3f91694ca531dee6cc5 │ │ ├── 84b7e2b234ff33478a039acfcd33bce6 │ │ └── 84dee92b76ca5efdf845fb937d4b2fa6 │ ├── 85 │ │ ├── 851dfed6b4c9ef100dca04ff8665cf28 │ │ ├── 85355efc5479d0f5e116e1d5ec0d198f │ │ ├── 8535a3e3e8e6ece63071a44402ddb2aa │ │ ├── 853bd0e7c5d86d02307a320605598b43 │ │ ├── 853c5cb93ff1cbd6cc69384ceeed46ac │ │ ├── 858c4b16e23790969c5f323250f1b87c │ │ ├── 85c433b375768d307c7600c0a56d06f9 │ │ └── 85d2797cff8542bda72e87d3d883b50a │ ├── 86 │ │ ├── 86120f232df74b51a8f3272ec250c438 │ │ ├── 86165b34aeabe29fcad4b5707caee257 │ │ ├── 864eca3f31d2cb89666dc90f1fbb3e06 │ │ ├── 8672386c01c311fb15d143897851299d │ │ ├── 86b2fca67db2470546ee4e4b713362d6 │ │ ├── 86b961d704565ac488a4965b74f07575 │ │ ├── 86e2d9faa22db04d40f32cb9244fe1fa │ │ ├── 86eae08ddab93a35284f7085affbb921 │ │ └── 86fc72289505b4816fea83cf765d87e2 │ ├── 87 │ │ ├── 8761f8df95b9db220eb954f3f1ebff8f │ │ ├── 87653f5e44a1abc3451defb630ba555f │ │ ├── 876a44d3964875ce42fe91bade79f588 │ │ ├── 87a52b0eddce829a4d490cca264f13fe │ │ ├── 87ad4c70fa8418fece94c925ae2f7ba3 │ │ └── 87bc4b799cbe36a70c8743d9cb06111c │ ├── 88 │ │ ├── 8818e0b1cd20d7e3aa257b879e22061e │ │ ├── 883b6bc8a58bba4b54e15daea787ea02 │ │ ├── 8849fd70d9fddf354ba02c4378590661 │ │ ├── 8851c75f50d5d88c4ca82009e17e0499 │ │ ├── 886a8ba3c50a2dd51ea2ae5eee544102 │ │ ├── 886dad9fd1c1067f15ddcb8683c0e595 │ │ ├── 8881ecc8b716064698b7b995cb471d1c │ │ ├── 8885304a97c4db0d37020373184a66d2 │ │ ├── 888d79ef4dc26682bc5a8f3c3fac928d │ │ ├── 88b34c3a99eecfdadf44aa0f13388cf7 │ │ ├── 88b46084a086ad87f7b239021aabe9f7 │ │ ├── 88bbe48a159c0ec74857b7e96f8135ad │ │ ├── 88f0ac8b0c372b75899877cc5a7fd401 │ │ └── 88fd442bed6c81e362127185f26be69a │ ├── 89 │ │ ├── 890ce2a5d2caa9e0675023ead14e5c44 │ │ ├── 891792a2b9321d93ce94d0e7d4e53276 │ │ ├── 891b6f352dc77d01e162c98ba44eab7f │ │ ├── 8930c388749e688f9bcfd0cc69abb302 │ │ ├── 894e55f271f92dbed812c87d25bd2f45 │ │ ├── 89677a542003ca570b70692d459980a1 │ │ ├── 89704c01821bff944d92d5747ffa5f75 │ │ ├── 898a715a4b9a0f092e2babdf12c4c28f │ │ ├── 89aff469a7d770f363180788fe5184a8 │ │ ├── 89bdfb00efff5d06a3ac0d9a21bcc0ba │ │ ├── 89c8ae741cecf5870ae850550181c116 │ │ └── 89d3ce47435d90dd78811c23c7c8fbae │ ├── 90 │ │ ├── 90015ac56ba91ff5fdd220153565ff2b │ │ ├── 9009644a8d82deac6be46f63510c508d │ │ ├── 903e8d3b3f4fa9b47b00e4d9c063b3e1 │ │ ├── 9050249ba712506bde4472d5032b2ff3 │ │ ├── 9074c92e72d411e3829c5219e4b33f8e │ │ ├── 90938a7c6a93cc9c7d7a1285dc3924e2 │ │ ├── 90b442ef06482727895821865d0e96c6 │ │ ├── 90dec7558b3c5d39cf8889aa598feccb │ │ └── 90f1f52c2e333e8b37e48dbe758d6f58 │ ├── 91 │ │ ├── 910b11d815b63f0ca1739b9b258e8ae3 │ │ ├── 91459ef2ed2cb6476df1cb84965caf02 │ │ ├── 91723aba5cb845685d56b0e00678c23b │ │ ├── 91c1d8582227031d9d50b3099356c1ab │ │ ├── 91c3b4ad6aec30969d2752f9afadac4a │ │ ├── 91cd0cac7ea9e4d23a15fb483a5ef742 │ │ ├── 91e762e7b11d7aac965bd2ff5d23439c │ │ └── 91f84d409d2fa9cf68bd3bd4d0fc17dc │ ├── 92 │ │ ├── 9243a3829ef39084e67baa7dc8dca6be │ │ ├── 92511767c328b73c5810f1ee8852bf74 │ │ ├── 9269422568f93d3587d366f4cb9dc54a │ │ └── 92c7a0a1fa9e90c408fa161ef24ce51e │ ├── 93 │ │ ├── 936a6eae5c2fe5889916c2ae81b5c015 │ │ ├── 936ca37db2a70a677fc3629afe72b27a │ │ ├── 936f465cee289f844d4b4cd4d95cb232 │ │ ├── 93722b557e32dc732021a131ee5093c0 │ │ ├── 9395e0ea8098b9400e10c4d26bfa03e3 │ │ ├── 939ad63656a25b52df5e4a88fb683d24 │ │ ├── 93c99cb68fe9299818dd29c619635128 │ │ ├── 93d06128b2ec2ea248c6fa80c476d19c │ │ └── 93df758adfea734b30ecb3f6ca4d4aaa │ ├── 94 │ │ ├── 940dc7f1ed83ef8054202d8d8872ab55 │ │ ├── 9413f669eebcc109dd292df2b40c4bae │ │ ├── 9427d92cad4a8858eececbff69f34d39 │ │ ├── 943690d7ab82196d9dea25175719c43a │ │ ├── 94c669b932e8ecc9c98f12b4b726489f │ │ ├── 94cdd71db8e8905dd6da5991d66bd998 │ │ ├── 94d54df20ea7be8469637297cc4c5036 │ │ └── 94f7c285a35a09d96b05f0e557f84dc4 │ ├── 95 │ │ ├── 95005fe211f90b629bded00430f9faf7 │ │ ├── 953ce3603b5fb1f3cf8d34eaa0dfabf3 │ │ └── 95c41876917a75d96dd7932912eb7b44 │ ├── 96 │ │ ├── 960b7ae9453e15786aa4efa350c99ea8 │ │ ├── 9613eafbbf654ff9daba74891f3acec2 │ │ ├── 962b26046c6155435a2145c81d0b3f35 │ │ ├── 96320ce517ba2a418170fd7e509e45c3 │ │ ├── 9662f31bc67632483f4a4b159eeebbd3 │ │ ├── 969873980e7de0a3a2b3527632b3669d │ │ ├── 96c625ae0d4444dfb51b8158563002c1 │ │ ├── 96caa0120ed36667b8a2cf5827b3e211 │ │ ├── 96e3b78c98b33b1957e21fd72a8e2504 │ │ └── 96f12e800d147ef5b800a1989b804785 │ ├── 97 │ │ ├── 97082180121d0b4830b587ea1763e563 │ │ ├── 970c9ed524b5402425c2e355cf46a5fc │ │ ├── 970e5f7535468ac8da3072b92d35b9a4 │ │ ├── 970e9178b63e129d5d7963664fca43ad │ │ ├── 9730f45364d428864a04d5a4f4c8be62 │ │ ├── 97621c2ce51834e672cdbf4aa646b2b0 │ │ ├── 9774121a13fc1f8644ab4cd7d0c93a41 │ │ ├── 9781ca7493eef68ff4bc92b40bade09c │ │ ├── 978516751622109e1a83eb4b75144472 │ │ ├── 97946b87f8b1c1178a47520121891ce4 │ │ ├── 97c810f7befa30b59c66e81e328b1000 │ │ ├── 97e57e71c8c8874e36d9a062d64db370 │ │ └── 97f02e9a24ea0788905add2a672e4c28 │ ├── 98 │ │ ├── 9809872a5e198ca8efd531594597206d │ │ ├── 9810acb8c192efae7b8ffc73eb545975 │ │ ├── 981b40ebb1170a44e3199f5f002e3b0a │ │ ├── 981e13ac78a63f1fedc2a0b534fb6936 │ │ ├── 984bf2ce424a4ecd262572e13be7220f │ │ ├── 98516d9ef70827eb30736b661632ad87 │ │ ├── 9860b5fe1790386acda671b8fb9b4af2 │ │ ├── 986680c796ff1fa5cdb84ff86e05d393 │ │ ├── 986d06d7ae17839125a8e7db378690dc │ │ ├── 987a6c0bccb6963d47db5bcf29fd02fb │ │ ├── 989f4ee5bcc737cff65c550195e78e2e │ │ ├── 98a4142499776c266fdb40ebfb5bd8b0 │ │ └── 98d67ac4ef77e5ad91d99a02b1e85a7a │ ├── 99 │ │ ├── 9975327ac24bdf4ee9089901c7c3ce22 │ │ ├── 99879666421461cf004cf8164fe4a7e3 │ │ ├── 9998f616ea336b4c67a4215901cdcc8f │ │ ├── 99afe25f15708ff8382b228eba6afbe8 │ │ ├── 99bdf1132b034364059c3d9dbafe48ed │ │ ├── 99e770e49d0025c55bb741381fdb0935 │ │ └── 99edca83c4cb7ceaccc1171543e9a97e │ ├── 00 │ │ ├── 000771635a267e72a29a00000acbbf5c │ │ ├── 00342a1f96d4b2d1af4890865196315e │ │ ├── 003fda35a4e74aa99c2af7b6bb210406 │ │ ├── 004073a1e5391b5c9370c1c915e08895 │ │ ├── 0045e308a50bb7fd74fdd9f72f72901a │ │ ├── 004779a5e5d4b92873e9dadcc338dadc │ │ ├── 004d04e9ca86f273965b8bf7613e9ea9 │ │ ├── 005a83b308abcac14a36f25acac9caec │ │ ├── 008aa1ccf2e6d32c0afc90af59be1dd2 │ │ ├── 00a3fb15f588b7cb0b6eae2df697c888 │ │ ├── 00d5974b5138b9f6567d126ce3bca64f │ │ ├── 00e1d866828f41c19cab319ce64a405d │ │ └── 00e4d91b4edb06f4779f920ec758e587 │ ├── 01 │ │ ├── 0102d19c004a82bc103d7cb00ce22b52 │ │ ├── 010af0b4f994eb61c587323d95ff3148 │ │ ├── 0113f1f3987fafd0eee0e7d527e8208e │ │ ├── 013caaedf15a2fd0b2f7d565b7503912 │ │ ├── 013f622af05e2e29f886500ac3675602 │ │ ├── 01646ae095268cf3296688c1aa37c00a │ │ ├── 01767a69cad71e7c2db952c93e4206a7 │ │ ├── 01cafd33f1a40837974c922ba6ad3d9d │ │ └── 01e16201366039d64bf92c6304a56376 │ ├── 02 │ │ ├── 02436a998fcb80d81c8c3842384a3faa │ │ ├── 024960e3ce09249457724e94a55e1ee7 │ │ ├── 02d0ec9b9627a3536263df8287f4ca75 │ │ ├── 02d61b5029c1996fc5ba99372b0d229f │ │ ├── 02e3a9305a6c718b83bda20e03930226 │ │ └── 02f186af37e9c68f336f83089345238c │ ├── 03 │ │ ├── 032952476c7c9f753e26e63c8db4cc2c │ │ ├── 037318e22ed2e545d7619e7bdb1de51d │ │ ├── 03a052cd72cbaa3c2d58f22459f117a3 │ │ ├── 03b0303cdd97ed3ce3dc709402c025f7 │ │ ├── 03bdfd82c0b9cbcb742115ed706b1800 │ │ ├── 03d45b6dc9a51bf8c64480eaeeccc921 │ │ └── 03e4d8ab46f1f927802ca8668c05a710 │ ├── 04 │ │ ├── 0402b40f4549f750b90d7df60f687472 │ │ ├── 0432ea6cf0f4536ec51a16f7d243b667 │ │ ├── 04682fdb10cbde6ab2b18e5b26ba1f8f │ │ ├── 047761b78bca949d40a4c094da1b7b03 │ │ ├── 047e11cc62af1ab0658267e00ee447d1 │ │ ├── 04b024ea19ebf72368525fcb2fc7ca0c │ │ ├── 04bdf7eefc4e89663404a601981671b6 │ │ ├── 04be47758786a4efe6b38d06eb26bee6 │ │ ├── 04c7006bf260700a4c860414dae89348 │ │ ├── 04d81e880a16fd3d18ee02d12cc1d6ec │ │ └── 04e507ebfa836da679bf2d636403de6a │ ├── 05 │ │ ├── 0555b29a186fe2a6775b3b186008af0d │ │ ├── 058f10ff143a85fa1cf4f1a860204471 │ │ ├── 059de817e5af08519723cf107284de9b │ │ ├── 05b1b5c193db281cbe73a43ff33e6c16 │ │ ├── 05be8ef6451071240966ca34239249f3 │ │ └── 05ebe99953ff77a996c9f3bb8412a436 │ ├── 06 │ │ ├── 064dfe77eaf8d7b4506c05e2df045914 │ │ ├── 066337f0c7d64434d82a319e2886682c │ │ ├── 0687c38263694679fe63fa850e3d2445 │ │ ├── 069bb2a26aee9d58cb0444947f7900b7 │ │ ├── 06b047890043bb11ede2e192b115bb24 │ │ ├── 06b846a0c9939ac07b2ea89af0e78cce │ │ ├── 06c80a9b45b7c30ea9ebccd49d5776ed │ │ ├── 06f0eed46c1b02d2f23d96e6cfbf5045 │ │ └── 06f106bcda5e478a325fd8eb2e5b381a │ ├── 07 │ │ ├── 07077fa78a2c4ccd1f420090a0dc81ca │ │ ├── 071acd9a2eeec656f6f56bf794897449 │ │ ├── 072527b25844f1d2f792ba57a571e2f4 │ │ ├── 072fffc59c676ebe9b245a0d1cb678a2 │ │ ├── 07709f67e2a2bce705a57b6ee18916fb │ │ ├── 07ae3167fecff84e14434703af2a30ce │ │ └── 07c9aa047672ca45e81a7ace9e25f39c │ ├── 08 │ │ ├── 080bd484ced9661e2c9bbb82fd890889 │ │ ├── 083d6cd7486de7ce2a9b5b01c1370f63 │ │ ├── 0895eef552d2c732283e8798c451409e │ │ ├── 089b262e5735d982075c867728e959ad │ │ ├── 08a1f0cb9617664eb52d455709335a77 │ │ ├── 08a9ce140bbd5d12e5b31fcc660bf43b │ │ ├── 08b6daf7418a497e322d7c16194f63b3 │ │ └── 08cdedda0180cbebb0e32cce7cfef8da │ ├── 09 │ │ ├── 091256baad466550135839ad70770e84 │ │ ├── 092b05eeeb9802c6f94adbdcc5442b37 │ │ ├── 09303d8d2c8bb911420493d6550d7649 │ │ ├── 093d03d07574316f9a43cef440d9e5ea │ │ ├── 09606dec2e8e1fde64627f06cf649d59 │ │ ├── 0965d1f9f3126f6e7f8a4f1ddb06fc33 │ │ ├── 0986c7cf7dbaa7b6af409adcd47c92ce │ │ ├── 09e7ebef8aae9ed0bdeb1c1d3d164437 │ │ ├── 09eb36a7c3a9ffab62a518d10d0dee26 │ │ ├── 09f6c18d18536d05580d46d27a0d1ff3 │ │ └── 09fcd630bb753bbe83dbf8907f7f28c9 │ ├── 0a │ │ ├── 0a09fb25cc0ad5b9ad18f8944c4609ba │ │ ├── 0a9b559dd07e7241edb8385de0cc50ac │ │ ├── 0aa6870e8cfff00dd36158b14feab979 │ │ ├── 0aae2b9ab4337e9094f1f58b8af0630c │ │ ├── 0ac2600b137c5a38acaa3bb14815687b │ │ ├── 0ac9e2a0c6fb3a9aa5b5e18f56ef058f │ │ ├── 0acbba45b5e200977fc62f5464896ceb │ │ └── 0acce715cd3b79e70a5a35d617842f95 │ ├── 0b │ │ ├── 0b0ad5cae72f110cdda85454a7789363 │ │ ├── 0b4a0773c8bf22fc813ba4c88a8ff02b │ │ ├── 0b4d6d9a6b92553f8b9c21f9a9857447 │ │ ├── 0b66bb49009e1286758e0e7c776d2988 │ │ ├── 0b69bda01c8320e158adbcb7a6e20ab7 │ │ ├── 0b6f8b5a1711baeba05da0a01acfbf34 │ │ ├── 0b8108dd89d987e6929273c8b052b21b │ │ ├── 0b922374deebec66c5e8090ef4474387 │ │ ├── 0bbe336c5256cd3c60220c99cbfc53f4 │ │ ├── 0bc08e0138246e5a14067cae697a63e7 │ │ ├── 0bc4ef4b13c50b2fcfb4ff81c8c02a5a │ │ └── 0be6b468c9cd1897c9eacb1d79140ee6 │ ├── 0c │ │ ├── 0c053232382e9ffaf1c2665a89d821d1 │ │ ├── 0c11949032064e01e5239d86b2440498 │ │ ├── 0c1b134047102d26271ce723a4928cb1 │ │ ├── 0c62bef2d496d98b926b9bedb4d232ca │ │ ├── 0c6bca3c94d20fab63113720ea9d72f5 │ │ ├── 0c6fb68b9cabbf397114458566733acb │ │ ├── 0c7e09b4311320434cdc302cbba0ccb7 │ │ ├── 0c9dea881930660e40f9bd977235ed12 │ │ ├── 0ce35842c0573dd330ad0f24b1b09b83 │ │ ├── 0ce8a19a02f79e67e500b71c4d359c1f │ │ └── 0cfd842011ff44314a246d4ccfc1c633 │ ├── 0d │ │ ├── 0d28b58c104fc607fe23baab6903c8f1 │ │ ├── 0d2da1a5fafc72db92999e81e45ca449 │ │ ├── 0d2e37f510413afe75a8625f441e43b4 │ │ ├── 0d37b849a76c9c1d9a2eca4a13d0e74d │ │ ├── 0d493c52e2b3ad29214497050039663f │ │ ├── 0d6069012916e64a6b71ebfa6cada842 │ │ ├── 0d62fcf3bee37408e96a1f67fd362ab5 │ │ ├── 0d9c891c3f2bf78e5ed1fdd18ab34589 │ │ ├── 0da26e328708c1b0f8d8928c21be8213 │ │ ├── 0da4260dee5b9dee97ea31323924459e │ │ └── 0deac8671d2db691b8d8b617dc3f38f5 │ ├── 0e │ │ ├── 0e0ce6400fb96324ca26e7ed9f17b365 │ │ ├── 0e0f2643254a793b35d0b357cdd1c4e1 │ │ ├── 0e10d52ac1e15e827ce8d498967ab3f6 │ │ ├── 0e1dcfadcdd6c119c60784b26ddc31d3 │ │ ├── 0e74e4c34930f5ea4fe6a7aa6988deca │ │ ├── 0e95daa212b9e0e655bb8c767c09f239 │ │ ├── 0ed6d6b0ba74e3d32f952b91045ceda5 │ │ ├── 0eed62f1037301d062a72305a1cbd9e0 │ │ ├── 0ef9985553f5b02091693c6e42e8770c │ │ └── 0efb6f274f7063901e48cf5024a37e15 │ ├── 0f │ │ ├── 0f0b97155101e4fec01f1f8e85271a36 │ │ ├── 0f3ad2879c46a0dca1adad4ab0ce28d3 │ │ ├── 0f6dd03d6f0b5e3e3a6adc440e73893c │ │ ├── 0f83b27a8ebc983fe09a42cdd17382ec │ │ ├── 0f8409d7a0ec9f5f4cf8f7e3adfa74f7 │ │ ├── 0f8a7d6eb8e46ef38e0363c4d5db5734 │ │ ├── 0fc654b30e88f27aa0d69d4a22efbf8e │ │ ├── 0fd64fb4867dee7f6501e1056f76cd20 │ │ ├── 0fd7b001d70496afb26521671c2adbc4 │ │ ├── 0fd83437ee6aeeb20abd5a2ef89f6d80 │ │ └── 0ff6adaa53d9d42a5e6e864a584de399 │ ├── 1a │ │ ├── 1a0a570c851901add91108433a3c9c2e │ │ ├── 1a211947355975c42925f72c1862f218 │ │ ├── 1a25759005a139c9802be6296e9ce308 │ │ ├── 1a69a3f9e3a08ead402b0a84684094e5 │ │ ├── 1a6c528a2288d44e25a1dfbf87463d08 │ │ ├── 1a790ca95e5b59187806b0d8cae8df5a │ │ ├── 1a933f168a88e1ba57b5abc11e14b2f0 │ │ ├── 1aba095077853a26c46d38b506d245ae │ │ ├── 1ac2498e171fee501fa354644013eb2e │ │ ├── 1ad46197b1029581a46dda28fcb43ccf │ │ ├── 1ad80296c76941a43fbc2b185a9dbe7f │ │ ├── 1ad83627bee8c9f43061d16538def42b │ │ ├── 1adc21376ce4ffefcc01ab63e59307c5 │ │ └── 1ae106791caa6a571c85a2f72cdea60c │ ├── 1b │ │ ├── 1b4c0e46848f5aaac0752429f1b801e0 │ │ ├── 1b512e94c710b9fb9726dcff3d195952 │ │ ├── 1b5478410753e8b08d3abc8e0acc0c4e │ │ ├── 1b572f4550a93e0abaa95d9284cf589a │ │ ├── 1b6089d7a76da970c3b859485f688a97 │ │ ├── 1b640c6fc8fef9fddf11611fe498b605 │ │ ├── 1b66ad48d63fd3b986472be8b5487ff8 │ │ ├── 1b878c9b1565cc90cd3230bc0080ce07 │ │ ├── 1ba1b9bf886cc948e0784d36beffab10 │ │ ├── 1ba7f94006703d9d41b56c5361b6b992 │ │ ├── 1bab7f84c8ea512fa9b981202ce0a6f8 │ │ ├── 1bbb6cbe225d845ae482869e5c572b38 │ │ └── 1bda7dc8402599e73b83c848b8c71eae │ ├── 1c │ │ ├── 1c2a64e139f8701ba4a4ab2cdc7d6ec9 │ │ ├── 1c41394c086013d6d6eafd224751d507 │ │ ├── 1c4741e8c107ffc2eb0652c4bb6ff460 │ │ ├── 1ca7774d4c6e8ef7f374fa62a05d9a65 │ │ ├── 1cc13b48fb4af78a754e665077117264 │ │ ├── 1cce52beca76affa72ecef29b0bd69b0 │ │ ├── 1cdd78d09f61aa8b01cc700f3cfbb514 │ │ └── 1cf10287829424eee9e25f53420a93f3 │ ├── 1d │ │ ├── 1d0e50b7156bae065ba369cab3c3fd99 │ │ ├── 1d1d0f3f5201eab2682f4728b7b8f88c │ │ ├── 1d322040c04b39d4b9ab4c642163ffa9 │ │ ├── 1d32a27d4e4a3b54d9eddca36b84989a │ │ ├── 1d3fde7cb32e9ef519d68767650e76ee │ │ ├── 1d49b959a704695124deeb571419a0dd │ │ ├── 1d51790f628ff699cadaf019863feb79 │ │ ├── 1d8b626c2e6613d6edeb01ae08d2266a │ │ ├── 1d987aac24877c11407436ca583d637b │ │ └── 1dae3f887346ba898dd7bd6f7fead45d │ ├── 1e │ │ ├── 1e0edb8f06dfd8e9f191d1a4e97e57d0 │ │ ├── 1e21f4ea8431cd97a95aa4c9534f120b │ │ ├── 1e3b98b1ad8b88a58c12bcdec2aacfbf │ │ ├── 1e4aba003d497db11652f9761af21d8b │ │ ├── 1e598f364d1e0b82f1a1413a5fd4ad9c │ │ ├── 1e8da1aeae50df067adba9c96a9605e0 │ │ ├── 1eaad1c4d51156271d88d6b0219b5d85 │ │ ├── 1ec42647d2d4e0b71a1ecdf4490e77a8 │ │ ├── 1edc5248dd0cef1dd27f8908eb61b3f4 │ │ ├── 1ee4dbd72f17a95b0fad4f2dbf4ccd74 │ │ └── 1ef80e299ca30c5e03cc331febd76d26 │ ├── 1f │ │ ├── 1f0a98a976a1faa802885e5fda61d8f1 │ │ ├── 1f56f25f4313af81f28a4dc1e605b76f │ │ ├── 1f8be413fa153fdb79718168484c1fc0 │ │ ├── 1fb9f37169fda7b21ca1bc046d73f4a8 │ │ ├── 1fc10c3d8cdfc8c692248aeaaf57b2bb │ │ ├── 1fde1c95ce06763a569461a2e5cc7f36 │ │ └── 1ffdea9e40c713ff4531454a8fe2d2fe │ ├── 2a │ │ ├── 2a1c3b1069b54abdaf976ac74d605976 │ │ ├── 2a41898bbaf8284c9e26792f3f5ce211 │ │ ├── 2a93134a594c8f80a7c10053e4bd26f2 │ │ ├── 2a94607ae340cd4cb3692355490a336c │ │ ├── 2abc554279e9ccb6b8902eb83a3fe96d │ │ ├── 2af199fc4bf9c56689d30cea330a783b │ │ └── 2af43b1579b00ed158a1277e5934bf24 │ ├── 2b │ │ ├── 2b037b0160ef813b06d8141c4671e7f5 │ │ ├── 2b59738d19408791626e2423e02031be │ │ ├── 2b69992c4a131f38a79c3789cbf02f62 │ │ ├── 2b76e1aec3fb19cd66834bbe64854d2a │ │ ├── 2b905aa42f331d4d817c1ca3be240aaa │ │ └── 2bf4d57b6cfaf1ae6e45e4a733ac12bf │ ├── 2c │ │ ├── 2c0abf4384976e9c06b912fc460e6f3b │ │ ├── 2c1c503de3ba1d902e2da2bb8564e2ca │ │ ├── 2c4efb2a7503b34622af44e314d8aac9 │ │ ├── 2c79cd8c40e85d5c154b804b7d360057 │ │ ├── 2c95008b93ad1af345476fe882bee443 │ │ ├── 2c96353ea7164e22ea902c979e6f81ac │ │ ├── 2cb2126b5169d9011b9bf24df525e8db │ │ └── 2cb234c7fa5722880cf12f64a1ce8239 │ ├── 2d │ │ ├── 2d1da2b0617c817666482bbba9127233 │ │ ├── 2d2dcc4194e683a3ce429c78db300d26 │ │ ├── 2d359fdf48178369245d065ede08564c │ │ ├── 2d6f2568aebac20354add7646da51a15 │ │ ├── 2d74085a8c5ea41a597d364baf97ac30 │ │ ├── 2da3c58d772f07d24ae5ad3b39b81938 │ │ ├── 2da83fceb84d9d2943d01a2343a6f72b │ │ ├── 2dba56e9a2e47e69cf0bb675d8f74485 │ │ ├── 2dbe97d11b99193ec49b4801cc0f41bc │ │ ├── 2dcc74bffb4ba6e6cf9014816c6e63c0 │ │ ├── 2df0b657690ebb46f9f53932497696b3 │ │ ├── 2df1bbc739a2a4de3585a35b336dbfe0 │ │ └── 2df97217ea7272cc77d5ece5d65d9be3 │ ├── 2e │ │ ├── 2e0affa90bd219a025266c7f1e399009 │ │ ├── 2e12dc1c6f23d8364d64db75bc98d4e2 │ │ ├── 2e1c933340527d3ed9e39d3f777268d6 │ │ ├── 2e51f1aef5b9cb17e72bedf53c95218d │ │ ├── 2e5436bf45c665a61c5855e9bcf5771c │ │ ├── 2e5d25e372dc5551b1a8f1ee3bdf68a6 │ │ ├── 2e615978bbe89c7f43e0a91191796647 │ │ ├── 2e71006b1c0c3530fca3171fe172a6fe │ │ ├── 2e87cd93c4b092a3bd57837c89eb0a3e │ │ ├── 2e9360586ac747e5f080aa90fd1918ed │ │ ├── 2e9813c6c59770249f64ed36f07f1240 │ │ ├── 2ea35f5f9e7f5d43dc49d2722ad1d1a6 │ │ ├── 2ea53b6808ba5d5fba564055d6efb2be │ │ ├── 2ebe6ef7221dbb79e29c024351bd13d7 │ │ ├── 2ece60415fa2cf905ea8e43068aae78b │ │ └── 2ee1e9de123db660327fc416812484d5 │ ├── 2f │ │ ├── 2f1b2e3a9125d112b8ffc80a3a7df909 │ │ ├── 2f4ca0a9c112b44c51304f10aa0f9e8b │ │ ├── 2f5144468ae8050cfc574e4aa5ece22a │ │ ├── 2f7e2b2ecf7ca76032ba8054ba3af1c5 │ │ ├── 2f851ceb1f4d3f467ac1d73d711481f0 │ │ ├── 2fcd9ce35b0dcfdc173d38219189a129 │ │ ├── 2fd86646e3b7bf5e87335bff38add7b9 │ │ ├── 2fdd232fae6dce782403da5ac26b85aa │ │ ├── 2fdf3577de37360f5f8b90bf926f4ac0 │ │ ├── 2fe9b230d88100d736a4a4febe83173f │ │ └── 2ffc2633726530fda0a9d07a6d64bfe2 │ ├── 3a │ │ ├── 3a1b6706a0bc62defd00339adb058dfb │ │ ├── 3a321e56a931b4491261377dc117c5ed │ │ ├── 3a431e8c468977ba3970a751523bc133 │ │ ├── 3a6a029785f1e8a92c95d73b3e7a61a2 │ │ ├── 3a7e1ef9b57b572da8c608a42bcede37 │ │ └── 3a88a0a67763e6331f30ca44500af6b4 │ ├── 3b │ │ ├── 3b279c26d75af0061e872708ffe57ed7 │ │ ├── 3b34fd265350d2ed4ef518a576334651 │ │ ├── 3b8cc1f1425fb0ce4a785b4f336ff05e │ │ ├── 3bbf658ef38cc93f7fd5980395350eb8 │ │ ├── 3bd9fd925284742d76129fbd6a9597fa │ │ └── 3bdf96eee923790b01b5ecdff1c2bc42 │ ├── 3c │ │ ├── 3c10468b0fc312e29edf44d13fd38bfc │ │ ├── 3c156242616bbce83e60dfa5e88d563d │ │ ├── 3c2f9becde00fcbd193265544bb99f00 │ │ ├── 3c3d9f22c3a29741ee6e8806e88a3b1d │ │ ├── 3c4b1360ec65f2c93ba185e7cdaa695e │ │ ├── 3c59829dbbec217960b2b63e93d3d28d │ │ ├── 3c59c536bedf5d1f4268cbc1603a3db3 │ │ ├── 3c5fff0ba5d66c3ecb7fcccc04fb5b82 │ │ ├── 3c62a540021d8ff4aec467e0619810f3 │ │ ├── 3c649df29722ba871227399330733b7d │ │ ├── 3c6c60314d5165267ef3d579ebe2c368 │ │ ├── 3c721ed6a5bd560f5e35885fa3d2c757 │ │ ├── 3c745d817fba3af080885627cec43f5c │ │ ├── 3c7e2ac57ed431e58d47c5dbed22af6e │ │ ├── 3c82cf001900de4ac2cbfc79248c247b │ │ ├── 3cc773ab4eca8e928a29b25b1359a6f8 │ │ └── 3cd20f0d68f4c67c4319e294569b06fa │ ├── 3d │ │ ├── 3d1cb982edf74f29d3731fd734626014 │ │ ├── 3d2baf2c2aa59c955473baa7554fb94e │ │ ├── 3d31ea7a052b5a11f865a36be265fe6b │ │ ├── 3d4000e41ed88088a5950b78330a9740 │ │ ├── 3d4ed550bae31ff23d6d37fd09580673 │ │ ├── 3d4f07fade90d4122697c341c53ff9f9 │ │ ├── 3d6441223a0575c7d90413526a8475ae │ │ ├── 3d6cc6745d4e051ddd07fedb06af33f9 │ │ ├── 3d8657df969e247dd8922acfb120091f │ │ ├── 3d8f235e983ad2c32975a6124bae90c4 │ │ ├── 3dd66d1c09499fc91f0f56134a932075 │ │ ├── 3de4caf5ac379b6377d96f5a2f2779f3 │ │ ├── 3de8d84f257971dcd5ec486befe541bb │ │ └── 3df796703dd4e5816da4bde08c8e40c6 │ ├── 3e │ │ ├── 3e2d1de691e9d2343313d4026a67dd57 │ │ ├── 3e333aa968f44fc83a9e4e0c48a4f26d │ │ ├── 3e53633898248858a53ffd425b8f9938 │ │ ├── 3e9125da513a39566ed5978415b692de │ │ ├── 3e92a25df208b804400c76785ea92ee0 │ │ ├── 3ea9b23c469a119ab2ab682b7235f6e7 │ │ ├── 3edc09f10bb5359d8946372d9afdf945 │ │ ├── 3ee0b74b306df5cf9850f238b521edbf │ │ └── 3efeb7c84cda9bffa6b4ba81ad37dba3 │ ├── 3f │ │ ├── 3f4a6f2b12638a23ac3b5cbce6084587 │ │ ├── 3f631effdea69004f06c64f949425aee │ │ ├── 3f8070c0321a920227ef6e7e501996c8 │ │ ├── 3f8b373cc2b7b7e440f815e2b3636c5a │ │ ├── 3fa3866c0156f80ab7d0a5224ef1b051 │ │ ├── 3fc8aeda19f5953c8946c244391d68e2 │ │ ├── 3fd15fe299d3f8da9c0e8605cd9d679d │ │ ├── 3fd679363b521c768de8fb1012399909 │ │ ├── 3ff1453c0520e456e689dec3cea49b21 │ │ └── 3ffed4ea3dfdb7329530c8cddf94485c │ ├── 4a │ │ ├── 4a15d82973342fb241b85e3d817c7299 │ │ ├── 4a3e5ce71fec8a92805f8cdff61701a8 │ │ ├── 4a4750f1602ba4c27099dc7d5f44c668 │ │ ├── 4a499df0873c0adbf88eec1fab8be391 │ │ ├── 4a717c2ce63a38e429331d8c6afc64ae │ │ ├── 4a8521ae815db885e270bbff8981dc1b │ │ ├── 4a9ebc4710ecb5348ff0a51f1dac1456 │ │ ├── 4ad1d2e4cd63d6a43af5956894a628ac │ │ ├── 4ad98f2ef167634ec84971ff04fb4b39 │ │ ├── 4ae320c8e059aa551a9ea35c0c26b099 │ │ └── 4aec539cacb58136ffa4126a7ff9fac6 │ ├── 4b │ │ ├── 4b03c22d34805adfc9d58c42c5c9c8a0 │ │ ├── 4b158692bb7512e4ec2d705b9502070a │ │ ├── 4b317a874c9de1585299b4cc35a5b262 │ │ ├── 4b4cf329d410b2dc308cf488e4cfce7a │ │ ├── 4b5596ec991839d28c0d1c093567c25e │ │ ├── 4b6a0864ea17129002e0a35c06a970c1 │ │ ├── 4b80f27aaa061562711a1b3c5cd49460 │ │ ├── 4b848a826177cb37738a18f8654997b7 │ │ ├── 4b872925ab419d3a80ff3dc6f8d550b1 │ │ ├── 4b88f2be61bb9e38c80bf8ad56f8cdff │ │ ├── 4bc320fbd4728784ba4b9ec1834cdc08 │ │ ├── 4bc9d56f6ef1ee641b35addf85a171b5 │ │ ├── 4bf1ea1bd4467c21872f5d5e6adef203 │ │ └── 4bfc178df9df492e898fa86a38496b1a │ ├── 4c │ │ ├── 4c0477b59adda7e583735cb002c8887a │ │ ├── 4c0558a30b24644703fc79e0aed680c3 │ │ ├── 4c6ad6baa99e39c1d7b53536c2dd9d85 │ │ ├── 4c9807bec4e356d55ad23589e8d10f5d │ │ ├── 4cb9b9db4da33ec98a39f17bca01249b │ │ ├── 4ccd4e0ed10db0391e45c55166b00e82 │ │ ├── 4cec2bbe259314e3be93c128429aa8b6 │ │ ├── 4cf4c662d70e428907a1a2ab896f02c4 │ │ ├── 4cf8a2fc1e9b944329e9b5891be2126a │ │ ├── 4cfb45e102eec3c378d1aaff59bf547b │ │ └── 4cfd7664fae23aa1796107c2b5382535 │ ├── 4d │ │ ├── 4d00014af9afca350de6a6f91bbc642d │ │ ├── 4d310e5657b0a4d0732ed9ee6cb64347 │ │ ├── 4d4d6e1923fd196a326d785141771af9 │ │ ├── 4d6614cf0a3d83b0969d6404dfd42261 │ │ ├── 4d671788b38ab46a77020e06a09b44ae │ │ ├── 4d77872f05711b05a7819cccef24e001 │ │ ├── 4d7b50685b4d4766828e769ec0ac67a8 │ │ ├── 4d8402319a4e585d9dde6ae17f31b046 │ │ ├── 4d88aef3bb90a3854a1677f1713d6284 │ │ ├── 4da4ac8a0856c20e324c5f2bba08a459 │ │ ├── 4daf326ec4ede7cfda4adca75661fae1 │ │ ├── 4dd1862f1cacab4782c17b056873eb23 │ │ ├── 4dd7b61708b01a15ff95cb888a88d4cf │ │ ├── 4de2e921203431e2cc1d716e9b8576e8 │ │ ├── 4decfbbf478aef614cc6df32a8361e83 │ │ ├── 4deeb096ad1a6f2618d88a863c2bf30d │ │ └── 4df83f06c1f357b886f238b9152e4989 │ ├── 4e │ │ ├── 4e07a557dbf3b2d1dfc460e7a62af86a │ │ ├── 4e099454616a9a5551d2f356732027dc │ │ ├── 4e2d6b66dd5511878cf8174d4f9ab59f │ │ ├── 4e3b11bf7e92c03ef3cd49d0318ebef7 │ │ ├── 4e3bfcb555fc942d822b76e9e0fea5e7 │ │ ├── 4e450877eca5742490c90df4a66a9af5 │ │ ├── 4e4c678e724e99ff36bc77b7941d5bce │ │ ├── 4e85c1c2cb5f1c450afc31007af00c6e │ │ ├── 4ea5620ad6b93831e2cd066b507ab61c │ │ ├── 4eac28954305bd32243e86e26ad41ffc │ │ ├── 4ead167d954062d9a7f5f585d351a35d │ │ └── 4efb3427ff6988169e73046dfc79738a │ ├── 4f │ │ ├── 4f15bb9cf5870c4e795a84b7b19ce5ae │ │ ├── 4f2f171817cc7dff3f3bd2216facaa03 │ │ ├── 4f4b22f2574e72896ee511482eebd9ad │ │ ├── 4f638740e8620d29c6a6f2361dca1e01 │ │ ├── 4f7af4205228e0446039ff1ed20493c7 │ │ ├── 4f7b21051f8c890237ad6fe1c30eb084 │ │ ├── 4f7c4ac5e729af681bd762ad3f06286a │ │ ├── 4f974ad97127ba08f208cf9b0c20c3e6 │ │ ├── 4fc6d11100ffa122ab3d908d541d707d │ │ ├── 4fed8f807b2bb28d21632aa765ce2435 │ │ ├── 4ffaf9480e6df5d5997da88df0b374de │ │ └── 4ffeadeba63ca285474802aa9bcac7c0 │ ├── 5a │ │ ├── 5a01dce2b6adcf5511ee3d9ec1b43ac8 │ │ ├── 5a027aa0ed1d050c484e6a3a65cc756c │ │ ├── 5a387ac6de833dc58efbb2018dc28a65 │ │ ├── 5a4bd2e817130f06c0964f64da1c5121 │ │ ├── 5a7e7ea5e0e56e1c59576c40dbc6cfd2 │ │ ├── 5a92f82dc4dca11104b1d4a32386d894 │ │ ├── 5a997f434fbcda658102e038c5911c8c │ │ ├── 5aa3a7a678700a3c100ac7afbc8fb728 │ │ ├── 5aa3b5d6783a68543cc968809c1d1784 │ │ └── 5ae6d9cc115c2cef77171cfa1073ced6 │ ├── 5b │ │ ├── 5b26994a6d5cdd9a8ea77c9495a6621b │ │ ├── 5b2a42a98eee3dfa0715a916cc994e5d │ │ ├── 5b2ca2d397a1366a68e52e02d61d3500 │ │ ├── 5b34ef1f0bf4bfc1b1ae29cbc99955fc │ │ ├── 5b6bdc65fcaa953519573faf0e1fbf75 │ │ ├── 5b7cebcb41a273e35b52e33a5041136e │ │ ├── 5b9ca160177f14a9b7964e267c256d84 │ │ ├── 5bbcc56192f39f7b6e50a3f98a094e97 │ │ ├── 5bcb7599a626c1c07ea6b662a608a27a │ │ ├── 5bd983b313df0c21aa121b1a06afa8fc │ │ └── 5be6bdb59d29504dd80089b17df6eeae │ ├── 5c │ │ ├── 5c15b2e5fdbaa89a760d25468f0c0643 │ │ ├── 5c17934b83f2b457fcd6d4ecce171c4c │ │ ├── 5c181c531a6315ef7cd4f13c1701cbfb │ │ ├── 5c371d98ab436f79917342d2cb8cf9ef │ │ ├── 5c53c19c34396d232385bb230bf16217 │ │ ├── 5c55ab421345c1a414641cfcb7db125f │ │ ├── 5c9b4ccef628f7221a17a536f8b7ce4f │ │ ├── 5cb65f4355c40367f647efba477f5887 │ │ ├── 5cbc68591a89f6792b14a9ff08cce95a │ │ └── 5ce2bbe165165209292b32b6a5304ec2 │ ├── 5d │ │ ├── 5d585db7f27a74d83ea56cf7116eb699 │ │ ├── 5d6e8955ce340281c55611246077c4e2 │ │ ├── 5d76485ea979f23aa7f0a86f88fb2441 │ │ ├── 5dba53c58a4879f40fbec5e5fb547a24 │ │ ├── 5dbdfbe151db7ee33755f616b40ec8a1 │ │ ├── 5ded9dbb4d360c4248bbc8f711dafcb6 │ │ └── 5df7f888021e9ccd532a627fda27464c │ ├── 5e │ │ ├── 5e1705672d831a06dbcef3302372949b │ │ ├── 5e2a50524e0a1b40f62df5d8d9844ee2 │ │ ├── 5e8402265f2f143435005b1642f62f36 │ │ ├── 5e9bd25ed2d30e63d04b273511f9f3e2 │ │ ├── 5eac90899cb5212869aca13851b11293 │ │ ├── 5eb20f5e480eca1c19ea5cf279ef8513 │ │ ├── 5eb4147596a3defe1e18e3fbb858acb6 │ │ ├── 5ee1e8eb09e8ff5d154f6f9a50f30c3f │ │ └── 5eefba8ee4d898a2b43ae3b804db2b7b │ ├── 5f │ │ ├── 5f224c64dbb4a1eb574505e49c0e9392 │ │ ├── 5f527cb392b192017102fe2c8888e968 │ │ ├── 5f5bd43dbafdf05d5f8a863920cfac67 │ │ ├── 5f712e83d800c709afe170e0a3625693 │ │ ├── 5f754891df8104c8b812b146ebb6615a │ │ ├── 5f7a01fb5848e3ef11a0bc7456d9401d │ │ ├── 5f7bc236be4173f86fb4a964b1b230b4 │ │ ├── 5fa729823999d58f7ef1926f4b450d51 │ │ └── 5fc75e10c015e71b0171512016b0ed5c │ ├── 6a │ │ ├── 6a1ad55320a612ad1b50d8aa92a1c5d1 │ │ ├── 6a46141b407cbc9d06b371e7ee419722 │ │ ├── 6a519d4e07b153d7053da09ed9a85ce0 │ │ ├── 6a6707825fa710ab5335d3de407d5ee5 │ │ ├── 6aa42f363c238cfbd5072f242a6964c9 │ │ ├── 6ad484944e2c3af113548aa95c0dba49 │ │ ├── 6ad950f340b06b61144068e3dbb37e79 │ │ └── 6adfe345746b222abed85f8fbd8eeae1 │ ├── 6b │ │ ├── 6b26c268cb0e0e99348a4fdfb922c5cb │ │ ├── 6b7c143bdced29ce56c27140fab1168a │ │ ├── 6b82cdf02190436cbfe3e29416f9d269 │ │ ├── 6bab01b3d3892fb5581dbe5393e29a1d │ │ ├── 6bb60494734907681cd380a1ff0bbc08 │ │ ├── 6bc44622d5c35825f15d1d9013b68094 │ │ ├── 6bd0f75d4af6619ef64c158b90241fdd │ │ ├── 6bd8926fd716cf911d07ed04178ea38e │ │ ├── 6bda8f05b53fd95696df53dfd22bdff7 │ │ └── 6be99d2084d9331d6f3ef020f17206e9 │ ├── 6c │ │ ├── 6c019aec80fffffddff944ce62d33d7e │ │ ├── 6c0756b041bc29cb7393013016f8cb0c │ │ ├── 6c27d2bb8ae443f99996157df48b8385 │ │ ├── 6c3c01098b3f6bfae6786e7ff1f76560 │ │ ├── 6c4956e3b183eb04caa2945342653e59 │ │ ├── 6c5e3c7a7458957d369694443111221c │ │ ├── 6c67782233937cf3f98ac28be0d064d5 │ │ ├── 6c717206b9b06465aebfababa8e4d265 │ │ ├── 6cc46b040f29944159a4d30a1e08d7a3 │ │ └── 6cd807697d370c887ed2fd13fa8d9f1b │ ├── 6d │ │ ├── 6d33fa5343f29343017b5ffa8cf602eb │ │ ├── 6d485c95a0c198598901242fa7b974b3 │ │ ├── 6d6375976660e515062b1dc43425c83f │ │ ├── 6da71a8342cd9e9cdae41d8411cace99 │ │ ├── 6dc7635bc3aefad10be487f39c1994b2 │ │ ├── 6dca51ed71e9b1c9c9dde958019cd291 │ │ ├── 6dd9083ff7b69432418ba07b8109e01b │ │ ├── 6de8f0cb5d832776225b890e10921d72 │ │ └── 6df99d11c4eb6378555ce17d84e33e08 │ ├── 6e │ │ ├── 6e093427253ea73695e3200772743ad2 │ │ ├── 6e0d55517bc773db5a901c1159cf892f │ │ ├── 6e28b5c36f2ea7bc96d09867ac162e65 │ │ ├── 6e471473dbfc694330601df667c39539 │ │ ├── 6e48b970a2331d23b93eaa7edde06608 │ │ ├── 6e5a9eb1cc041d82c0545585326e6d8d │ │ ├── 6e76a04f6a113aa18b34b954339a0568 │ │ ├── 6e7d2d418ebf7f602737073aa2fc00f0 │ │ ├── 6e85a30d16d9b0b1731b65f325f28248 │ │ ├── 6e8642218997d1b2038f7623f2dcd467 │ │ ├── 6e8bf72ad27f9829246211ad5e11cb8f │ │ ├── 6ebf522c71bae5391104ca4d04dc60e8 │ │ └── 6ef03232f9874f7c762c4d2b7f6c9111 │ ├── 6f │ │ ├── 6f2397eda4c6db3eed34d30f3bfacef5 │ │ ├── 6f2bc9514849f8a97c79343db65d03d0 │ │ ├── 6f428d6b1ccee8fafeace25a7bb4ecfb │ │ ├── 6f5c3e5f4e23c4360a7d75c7ae7ca6ad │ │ ├── 6f7ae9823d6acf0d0c4399ae528ac765 │ │ ├── 6f8a7fd40b8e346831a43df2f8e83bfc │ │ ├── 6f934355684ff0e29a3c00ce6e30a3ea │ │ ├── 6fb26b939b0e5f857a8d07545c75386d │ │ ├── 6fef8017cb5d34ccf9d65a15602fa0a9 │ │ ├── 6ff856081c1662384e0e2e9203528f00 │ │ └── 6ffe794373d78d9c0397f15971f9064e │ ├── 7a │ │ ├── 7a0446e0bc8820588926d675c4582328 │ │ ├── 7a2fbe704a7f266b8d7fb7eca0cd5cac │ │ ├── 7a56a1c8b8f5da6e05ff8e5510bb8f99 │ │ ├── 7a5cace42fc03d808bbd4db5c438ea7b │ │ ├── 7a645bcce78dd17c4b8a7e3b1bf03ff7 │ │ ├── 7a655de2900a0fdd462224d188bf6f48 │ │ ├── 7a880e3dc2f3e3f91865e26f2904cf6f │ │ ├── 7a9113de3837e091f63ae9e27cfc51e9 │ │ └── 7af878212180351c91b71190ca49356a │ ├── 7b │ │ ├── 7b02f5dfdbc8c0651349ea4052c4c096 │ │ ├── 7b1bf1e3d34e0f91cd75c3d931aa38c3 │ │ ├── 7b5049879cdab6e1766235c72b3214e8 │ │ ├── 7b592232e646fd38371f5dd37cd44ccb │ │ ├── 7b5c3790fc827032c3929fdca10afbcc │ │ ├── 7b7efe686f5385cdda144885d2d6ccdd │ │ ├── 7b81f53a1b534bf06939f60658587e20 │ │ ├── 7b88e9bdfa8e90ee8dc7479ed4730562 │ │ ├── 7b8efb9f6b960a4bb6fbc3f611ddb47d │ │ ├── 7b9b57cfab44440f05254e80f519a7a5 │ │ ├── 7b9f026977b1b22eabcef392a676fb6e │ │ ├── 7ba495c7e8282205c2e255243818610d │ │ ├── 7bac497e2d0af1b628b75b5ba47a3654 │ │ ├── 7bc0e3313b57b76ee42ffff74b141d0b │ │ ├── 7bc10925e7642e0a9c8ef7b81d1eb315 │ │ └── 7bf50fa3d0225447912dc656fbd65ebd │ ├── 7c │ │ ├── 7c41aec5b38ec515872459944f945002 │ │ ├── 7c441a8e05ac169fe7cd80cb6163e097 │ │ ├── 7c5167c56c23b2ffc52baa4a04330744 │ │ ├── 7c6ccbd87d9da1b588f28580f1e48d07 │ │ ├── 7c742cf1e4153d4841729976a227c84b │ │ ├── 7ca1de6e4d7a0b290b0016f10558f779 │ │ ├── 7cd9e3e14971452dbbf7903071f54667 │ │ └── 7cdba81e683d5c76e4802a0beb396986 │ ├── 7d │ │ ├── 7d11e6e000d08115bf3fe3b687b27332 │ │ ├── 7d38b31d3baa038b159410b741dbcb48 │ │ ├── 7d390f0669052a024ab4bde9dddd9c84 │ │ ├── 7d512db2575fcaee247ed0dd240002a4 │ │ ├── 7d6861137691923c707970b99fc412ab │ │ ├── 7d8300328b3145dbb1b8ebc876ac3dba │ │ ├── 7dbc675df2bccea8494571cb1ec72ccf │ │ ├── 7dc40c6ff7cd03b10e17a4cbc1267785 │ │ ├── 7dc592b58f6d0a700e3d3c5ef07f0872 │ │ └── 7deb35946641786585ac335429c622c2 │ ├── 7e │ │ ├── 7e3c2acddff6079374a29e595fd43737 │ │ ├── 7e5d5b8fd05ede1f716fc270ee08184d │ │ ├── 7e5ed8b227cbe5d128ea4678db9a6b81 │ │ ├── 7e8b279aebaa93b1137bf04e502dd695 │ │ ├── 7e8b4b5e398ebafccb67233c2b01468e │ │ ├── 7e988b668207769ba72b4e0cf44a6013 │ │ ├── 7ee3689585c6cfe507bd768e5359bdf3 │ │ ├── 7ee7c7b988a9d89bc9ac4bb351918368 │ │ └── 7eff70e083a0c3078a62ac654752b2ab │ ├── 7f │ │ ├── 7f019389dfb2f146219c1fe639a87ccf │ │ ├── 7f1fdb688aaf241be549badc212a04bf │ │ ├── 7f2a8a49b1f744300798b16c0527ca3a │ │ ├── 7f3d23a619f32b22291a1c975e8c7530 │ │ ├── 7f7826c38e9ac2e814e41766cf73786e │ │ ├── 7f994f4ca7f2d45941da1488e3a26a74 │ │ ├── 7fabfa844740a93a088d568d3bbee4e3 │ │ ├── 7fc9cd79acb7831afe51b8141b689cd5 │ │ ├── 7fcb0070001932f47c35562823a5cf97 │ │ └── 7ff9d6f94a4f559056a338caa3f5c85f │ ├── 8a │ │ ├── 8a2cafd95e52d6296df9f7e568494b02 │ │ ├── 8a8542e684546f0e6e79eea3c6b7624a │ │ ├── 8a8e75b4ad09d16b94e010208a84d346 │ │ ├── 8aa39d2662ebb5310cff488b30d011e3 │ │ ├── 8ab01a13f2d2664f2d516b091ff389fa │ │ ├── 8ae9640e21065967d83cb0c53e87982d │ │ └── 8afd95af4e3657d6e6fc64e98ea3a82e │ ├── 8b │ │ ├── 8b37f9f2d9b50fbcf710e8a208752113 │ │ ├── 8b4675a9ca42a5822f66a3108755e358 │ │ ├── 8b8b73144d868526d06ed8cd71a24f7f │ │ ├── 8ba78b8a747704ffecbfc4d93d29b20e │ │ ├── 8bb1f57afdaff661d83818b1f23d49f8 │ │ ├── 8bd65db057234d7270374af31bd7984b │ │ ├── 8bddcbbd07a60f9736b3a7c257f6920b │ │ └── 8be65bba5b6fb1b7479a650ad657324d │ ├── 8c │ │ ├── 8c28414a72efdc3e54c20050642a3bfa │ │ ├── 8c343c6d5ea5f0cdab1e70010757b9f5 │ │ ├── 8c4078a4119ea0add732db19066644d1 │ │ ├── 8c4e725aae0c5122fbf771d8fdb7fa44 │ │ ├── 8c95d04b661cd07fe52338d401ead13c │ │ ├── 8c9a79c4358ee8bedf7ce9256162a99e │ │ └── 8cfd20272b8644bdcb775fb4c7842ad9 │ ├── 8d │ │ ├── 8d5b72dd86475b50fdf4841e5942533e │ │ ├── 8d6876b81c67567e32737464efe3e502 │ │ ├── 8d72838165cf50b95b61d7b5a0391a1d │ │ ├── 8d9ee1f7bc76bb2326687124b91dc73a │ │ ├── 8da2f48416a04dc91f7705ddd9c235a0 │ │ ├── 8dabd0a5b07b2a09ed6e4f24b1374fe3 │ │ ├── 8dbcfa199d02f0ac350fabc45dbcc071 │ │ ├── 8de15c9c83cfd8b322d0664e2ee56a1a │ │ └── 8df5ef8d348812020fe7fcfaf6466793 │ ├── 8e │ │ ├── 8e0ddacfcd69e23486c088773963998f │ │ ├── 8e1a0692ac1fc92aa40920d3a800d6be │ │ ├── 8e1e18c0984f067374ab1e8f17ebfbe0 │ │ ├── 8e2b809a425bcc4780a3d7eaeb1165ff │ │ ├── 8e39c4c9972e4e1ca3d93a43f4946b47 │ │ ├── 8e4173a5dbc0d4037d0e96a6c13e7c62 │ │ ├── 8e91f81dada14a110e21fcf9ea6c4aab │ │ ├── 8ea79300b9782199a69348c9dc5ad1ef │ │ ├── 8eae8b68004fcfdc16a397a088364703 │ │ ├── 8ec9d30c47012ee691efa45f01a6041d │ │ └── 8eda9632562c7f98332aaa05fbe01791 │ ├── 8f │ │ ├── 8f0f9aa4caf8a9f70a0d12f259887b8b │ │ ├── 8f60b583a04f432e19383d3985749f04 │ │ ├── 8fbb3c1caaf8c45f22d064296fb69c98 │ │ ├── 8fe8eb6a2de0813dc4f7a2994689d593 │ │ └── 8fedda2e355196ccb12b09dc03362041 │ ├── 9a │ │ ├── 9a29117b07525ffe9138a4c746ef17b4 │ │ ├── 9a37f6618097b1cebe276c2b6c6bd7ad │ │ ├── 9a3bbe48bb1ea4d387e4d69ae7aa50be │ │ ├── 9a93bd0cef7153edddc7d1d8141317f9 │ │ ├── 9a947bb85b345b2d02f5a92dfa6259b5 │ │ ├── 9ab246fd296e299d8741800270659545 │ │ ├── 9ac214206eefdf6e3656a5b6ee894045 │ │ ├── 9ac836681763b8b887a5d3cccf933f12 │ │ ├── 9ae90d57181206c47676aa073086b0c1 │ │ └── 9aef87c5af9a2e7c43953a85c7a3f2c7 │ ├── 9b │ │ ├── 9b1888a6216739ae706f02dbdadbc677 │ │ ├── 9b334371fa177e25638d7482d8adf2b0 │ │ ├── 9b3b545281ace76761a1bd15af64416e │ │ ├── 9b54e630f36811266c907fd837b8f762 │ │ ├── 9b60236c4c7ca982683ecd097a5b4b4f │ │ ├── 9b8e9d53162ad77b6185d156d925feb4 │ │ ├── 9b95304b1045d3f81c27075687d09bce │ │ ├── 9bacb32a7e0d288baa6db83dbecc31b7 │ │ └── 9bad3e5f47bb1a271e3979132aaf54c5 │ ├── 9c │ │ ├── 9c282465e4bb9daa51b233e647b82d51 │ │ ├── 9c5eb2cbbb647c986444310bef66a8a8 │ │ ├── 9c66637c419e4363d905613c2f8e037b │ │ ├── 9c87dfa1e63ae9ab7ae97cd2ef491656 │ │ ├── 9c932440a10ea7707bb47fcfc4b9cfa3 │ │ ├── 9c98e7cebcfcde25f7043bfaecbadb05 │ │ ├── 9cafe231a928ee0915318aad36fe2738 │ │ ├── 9cc4b6193ce8518484ee9abbedf779f1 │ │ ├── 9ce9edc2bcaed76d159d1ace8fac85d8 │ │ └── 9cf91b7c55b22bcabdb039a38fffe7f3 │ ├── 9d │ │ ├── 9d0afcea9cd2dcea7eb8bfa6dbd06a23 │ │ ├── 9d3e12db0c86b7f43e421da00a8a8704 │ │ ├── 9d546ce6dcf0edfeaddeb4dc3b0c17e2 │ │ ├── 9d63a539b1a6e83bce8e894a165f6acf │ │ ├── 9db85ee0362cd7ff5c98ac298eaca74c │ │ ├── 9dd44810d526da67695e5411b4b2a467 │ │ └── 9decb244f9089360efe7b59e686e4369 │ ├── 9e │ │ ├── 9e027ce485b3cd73dd236775e80a1b1b │ │ ├── 9e5451e5de338b0f90092f156baac2ad │ │ ├── 9e6834ab079eaad3ca347f37366cfcf5 │ │ ├── 9e711a11351b6e3674a25e0381319021 │ │ ├── 9e8687ebff9aefd3eda0b72208458f1f │ │ ├── 9ead04606b27e0dc97285b97f57f741f │ │ ├── 9ec3a415b01dd6f793d5d9c57b6065db │ │ └── 9ecae4519e84ece9d9b0412518c17536 │ ├── 9f │ │ ├── 9f015e578471ea38d55980543937cd69 │ │ ├── 9f3de2355b37a2747fb854064cd77c87 │ │ ├── 9f46781c8a97fd7d6f784b85402af710 │ │ ├── 9fadc6aca1f3f8fd67ddbf16e1a81926 │ │ ├── 9fc0106e961551525cfc918cf8add96c │ │ └── 9ff9bdd9eac4e8bff7f11f8329abc0f1 │ ├── a0 │ │ ├── a014c2cc0ed27d7e8de9599e46371c82 │ │ ├── a022da2b35c57c60be1902dc928c5b03 │ │ ├── a025d9b782f6245bde1b69a8c97ef944 │ │ ├── a045aceb819b41d3a95ca8841e7be6fa │ │ ├── a0747b8916f94aff3005e325b0018ae1 │ │ ├── a0851e2b7a4d6f7d4bf957f55400334e │ │ ├── a0a163f6f2ed6615dc8bd72404cf5936 │ │ ├── a0affc4ae299cb4480e5ee8fb17cd9de │ │ └── a0c4e1c55f86f2123cd1af37662db6f6 │ ├── a1 │ │ ├── a10393484b47cc4f27477772ee41b650 │ │ ├── a112185435cc293bbcdca92851404a60 │ │ ├── a142b69afe4da608345b904e42a95315 │ │ ├── a144816b3f923880d553bab1ba253da7 │ │ ├── a1460221584bedfacbcbda0777cc4a54 │ │ ├── a15c69ae6fdc1da5b6fdfd48071ee4e4 │ │ ├── a179254e8072f974023399af1cad7e2e │ │ ├── a17e3f473d60a0bcd086d32ab0c2df7e │ │ ├── a1b5bb82970e1e694f0f87637405e29d │ │ ├── a1c7e8beaf685e390d39870f0a1cb4c3 │ │ ├── a1cdbdefe25ed1b043318beedd503ab3 │ │ ├── a1d0c1c72c4e8a55bb1df659e0395ec8 │ │ ├── a1eb013366d1098c0fc802b9fe293b57 │ │ └── a1f4e40fef42973c40ebc5dee71c2bc8 │ ├── a2 │ │ ├── a2056d0746980c368b6374d06cf1712b │ │ ├── a23347541f76a9761ad3834e7520e2d6 │ │ ├── a259539399013f649e085e05a82c0bc9 │ │ ├── a26206ab56e5abcbfe5c701c5e0c879f │ │ ├── a28170d700c03b90fda0f6439a67200e │ │ ├── a2cbdea749013c09ec917b3ae33ecfb8 │ │ ├── a2d24c1cc133686768c201dac807aae7 │ │ ├── a2f48f4dc5cc895e3f9fbd4ea6cb334a │ │ └── a2fa67e5e28c383fc576ebe7f361ae77 │ ├── a3 │ │ ├── a337a0f707359a44670c6a51ed07d22e │ │ ├── a37981c8bc1f25fd0ec7269b59c0b8c2 │ │ ├── a37c9d544197a3ac90c9045654edc229 │ │ ├── a382e13d1fdddcd762e92e27d6a237cb │ │ └── a3b5171b66071bcead272af8c21f1cc8 │ ├── a4 │ │ ├── a40061fbaeb34a35a7de0c1952949b8c │ │ ├── a40f36b0a87a0ff397744f018e3fd502 │ │ ├── a414d1b084202e2349ad73fb104d65d2 │ │ ├── a455e1b6d1d42fd12e1e26137f9ae873 │ │ ├── a4782cdaac82c5e32e879fe82a4db5de │ │ ├── a485f1c7738faca0d5ab744900099676 │ │ ├── a48daef72886bfbf9292428b5ede5233 │ │ ├── a4e9abef658dd8169cecdbfdb8a3f669 │ │ ├── a4ea0a4db18cce4e4ac9b75d35f0b043 │ │ └── a4f4c0b9b296092f9cf363ede1804ca2 │ ├── a5 │ │ ├── a52073695e2c68dcd924f1268a787527 │ │ ├── a54841ddf12e682a35edb11cd240d028 │ │ ├── a5486111f90eb09b5644cd8629810b66 │ │ ├── a5941b2454ac4aef268bc08eb918876e │ │ ├── a5d6071863d9a795426cd6ce545707cf │ │ └── a5d889f03ceec7490bf862a49cef8900 │ ├── a6 │ │ ├── a60dec9a22f0e43059832291253b7f02 │ │ ├── a610c380a461257dbb1993fc66345687 │ │ ├── a6262a2cd9a06b3bfd1bcd1061345675 │ │ ├── a62b5492fad214a67e867d007de5d44d │ │ ├── a650dfd4c132afe7df6097137c01073e │ │ ├── a65b9e62bdc4a0246aa519401dbb023b │ │ ├── a67b03ccb70a4523e005ca50cb9f60df │ │ ├── a67c039f3979290ef41d5389e95090bb │ │ ├── a67c663d40f19f0665098ee452f3bbae │ │ └── a69fc5d9fbf1c638d964489a9e8926d4 │ ├── a7 │ │ ├── a72ac85222df702f8dd1f5d378b01977 │ │ ├── a73078f73f47c3d7155334f1ca6a0905 │ │ ├── a73f3c814af912328cd5c1512f7633b9 │ │ ├── a760667e2fde3b745bab6558cbf18ad9 │ │ ├── a760a401628ba3a67ba182193289e6eb │ │ └── a7e76d8c340a23b4e16478366e645605 │ ├── a8 │ │ ├── a81d3652833cd798b28134f4a40782e5 │ │ ├── a82b2ca5bd236f99472fb2d52b8a9af0 │ │ ├── a82c5c3edb0f1d23b9a022eea5eb814c │ │ ├── a831bfeec7ce7a9376c366f2faffd435 │ │ ├── a858c4b1acdcbb1aab9892742ad1d2b9 │ │ ├── a8d50a13bc46af7b34fff0a694c0431d │ │ ├── a8de982cabfdda899c3f61206017e66a │ │ ├── a8e298836570a6964e82ddd3dfd78697 │ │ ├── a8ea2f1d4b9312a0e2824576eb19b7c9 │ │ └── a8f9912bee8787ca94c808449b5414b5 │ ├── a9 │ │ ├── a946a636e36565a4c869335aaf966f71 │ │ ├── a9696a21c9122d82e3271429c4afef3c │ │ ├── a9ab19b96ebce9413def1054199b8ba0 │ │ ├── a9b7c06f9629dd8e1937d04091a9e302 │ │ ├── a9caca100853e495b63a2859a0dc148c │ │ ├── a9ed05c7d5dd0e9c6ef78639fd292e14 │ │ └── a9f4d40db043b5b4268ff71418d7791a │ ├── aa │ │ ├── aa17b04635a06a79609b8535aff15247 │ │ ├── aa45dd176379ce321bf4dcdd297176b4 │ │ ├── aa6395520974803da5cfc392be7f56b7 │ │ ├── aa648d856e1a7f7f78861007b896805b │ │ ├── aa7698340b01832101a7be1c4da21e7b │ │ ├── aa870eb0726bfaabb39aa69deea40476 │ │ ├── aa928ca877382759e29a5d8df90dc14d │ │ ├── aa960b5019bdd006aaa87a183de768f1 │ │ ├── aac3f88f68740c201b45a291edd563d0 │ │ ├── aad902ccbd52d02664ce0879cad61a5e │ │ ├── aae2b54d51856da72313c0781ac9ca4c │ │ └── aae6528f64548ee74e8cbb8a6e23b61a │ ├── ab │ │ ├── ab33958e971d195d3b98755ad13d65d1 │ │ ├── ab3fe130d13ecfc592bc24e89ad2936a │ │ ├── aba90819c474178e4e1e489c8658e26a │ │ ├── abb9c067a35a41582e5a804fc14df593 │ │ ├── abe3c054bc27d44ccbc73312a3210ec0 │ │ ├── abed03b9cdebffb0a643028dd90cd0c6 │ │ ├── abf3356bda96a4aeeb1babc90810517d │ │ ├── abf955adaea299b76b86beffc6fe4046 │ │ ├── abfa09c0968189636605335b6d07b591 │ │ └── abfb115d68a6d5ddff76b6d948fc0010 │ ├── ac │ │ ├── ac1340c8a123f5d30b98fc14c3ba0a2d │ │ ├── ac17875cd064b13781f9bcb188155302 │ │ ├── ac21061b2ce29dc48d30001e9811b4c1 │ │ ├── ac215611ff349224da0c1ff54c685e46 │ │ ├── ac42b34037cd64000b60406d3ab90a01 │ │ ├── ac4a12ec4dd55d82140652b25dd67711 │ │ ├── ac59e6b1e8b5cf7261adc1bb7e4b0855 │ │ ├── ac6594c76cafcfa29052f26a5eef1602 │ │ ├── ac72333ab72630cb01a2ae8f0e4287c5 │ │ ├── ac72af23d8a3dbef4e7d39e6bca6d3ad │ │ ├── ac8c38ac64731e11aaea838e0a6526d1 │ │ ├── ac92dd7994c6b324f77a74300902e124 │ │ ├── acb63e0d2c96fbb87c43c6f2f8b59c65 │ │ ├── acd2ff3e4ee7d9517dec3c5cb9b8a785 │ │ └── acdd82d536b56c67d39a4d3883a1a578 │ ├── ad │ │ ├── ad4f404a0b85eda4baaf95b12f47e107 │ │ ├── ad79373e387b4740516377faf17ed4cf │ │ ├── ad988ad87ca7fb02541f60c6ad8ad8e4 │ │ ├── ad9e43d52dfee5dd89574162bd743956 │ │ ├── ada73f98c5bef2247a87a6889c2d00f7 │ │ ├── adacbf21186dcef7a53a32a9bb548ea0 │ │ ├── add3a8743fce5246009ed19058e2c28d │ │ ├── ade6c7fcf7322aec93ea6619b000da84 │ │ └── ade806cd4c18a2e877101e816c8a8d69 │ ├── ae │ │ ├── ae40c41f3afaf63957c5085b5255db0a │ │ ├── ae4d0582cff4200a0a37265eef0eba62 │ │ ├── ae7354b94d1c9e2e7f3462e33b2fbc53 │ │ ├── ae8084b5b99487b97da83a4279e7af43 │ │ ├── ae8d366b87efe3ba325e5e326e28bf92 │ │ ├── ae9769d070c9ce2c213c0d63cc87f69c │ │ ├── aeae6fde5126b052681f966d365f8c0e │ │ ├── aeb49a1f5a208089e2c4d6f099d9099f │ │ ├── aebcacde261f0f15b948481501fe974d │ │ └── aed93c20bcc9895ad2e279a0ed5f2a30 │ ├── af │ │ ├── af3cf56b1401e5153eb12f2e5c4e2dd6 │ │ ├── af401602beb7ab64409610ee41803ad5 │ │ ├── af60ef07c5828f1b9983fb792c29c9fa │ │ ├── af6be3ac0da4fd916085693f593b3a27 │ │ ├── af6c1d44ad58d396d70640df6a9b6ae5 │ │ ├── afcac2eb29414965ff3b1d2f1ea698fe │ │ └── afd5a63ec48a0e8240cedd5a1b2cad72 │ ├── b0 │ │ ├── b000438c08cbf7ae0b0f6e371299cedf │ │ ├── b006cb9fc9488f89d484981d44302309 │ │ ├── b007f6d4370d0b07eefe54962caa09bb │ │ ├── b01b984f20d165f7006b827194f5fd67 │ │ ├── b01f4a52aede0e688a8518db334b62b8 │ │ ├── b0361374aeadb2103ba541142da4959c │ │ ├── b0563b988a35c80d2327c6880f9fba21 │ │ ├── b07eaa84702c9adeae32b5a44c146fc3 │ │ ├── b08f8e7ef6a5f7c70300e97a62decec7 │ │ └── b0bcff630e5c45b29bb98223f439ec7e │ ├── b1 │ │ ├── b12b3a6e14eb0ec4934c6566ffef91eb │ │ ├── b12fb71fd03863008221b4ccb4b7706b │ │ ├── b13679393b86c21100935b5b801dc641 │ │ ├── b16b53c2dd6e9409ab7b018e5506ff37 │ │ ├── b193a62f970644677398823e5beb3491 │ │ ├── b1b8f0907f75bedc1afc164436b5ca94 │ │ ├── b1d0a3888c056d664efed30d4e3dce09 │ │ ├── b1d4ea28921730541e38eddf1f8c77ef │ │ ├── b1e40aec90ec7de0edd94956fc9825c1 │ │ └── b1eeaa9767ce8a6a5d03b3472f1786d3 │ ├── b2 │ │ ├── b2089fe38a4cf1a7031bf648f4244b05 │ │ ├── b21c21077adaa5b5c4d97e7f6ef0c78d │ │ ├── b277374ebcb4b7e17ec9b6d5485bdd28 │ │ ├── b296af15393926c906a1fd4b28fdb41e │ │ ├── b2b1bef809d8414fd4d04818b504856a │ │ ├── b2b1f51bf5784b4f43c466420460334c │ │ ├── b2ca8dbde8ab33bb51336e403e86a465 │ │ ├── b2e7f9b796f6c8d9b723a3a0a2f97325 │ │ └── b2f25ac63e38b40973e95aa2525e3831 │ ├── b3 │ │ ├── b302fbe4b6bfbc58b543de6517713c2a │ │ ├── b321c99d717e802cac8e479df5fc5571 │ │ ├── b34728bb658d6ebe93500d96dc3cc549 │ │ ├── b34f938dd8757b6cb70b9d60a6a9bff8 │ │ ├── b3619a37cb801198fa5b18f5e14405ca │ │ ├── b36fe6b63324c1bb8858c869bf43ae2c │ │ ├── b37e0153fbd2e2e78b6cf1ed91e347e7 │ │ ├── b38f81047547cbd376f163cee5f059e7 │ │ ├── b3e00d184153b9c3722ad7ea44124a4a │ │ ├── b3ec675a23205686bb766df8aedcd5d7 │ │ ├── b3f72d9e7d1bcf825d87c7e011f458e9 │ │ └── b3fd4385c8f8528d8d6c7382ba90a3a7 │ ├── b4 │ │ ├── b42f20a5d383ca046c0c5e619b3d1d0b │ │ ├── b45c0d9fb6ba1672edac86a876d4e6be │ │ ├── b45c70bc5b554bdafb276a74b3672193 │ │ ├── b46bcef6d30c01ea798dbd0b0bb77ecb │ │ ├── b4740c363df3acb94233b6c88ba4af48 │ │ ├── b47485e128f3a879509951d4430d4564 │ │ ├── b47ca70271e95546d5b031346eed1c55 │ │ ├── b4a86f69478c3c686a685dc3adf4774d │ │ ├── b4d4c8f29268fa8b6267baa27dfc343b │ │ └── b4f1fbfeac21ff0e9d50a8e7bf54e307 │ ├── b5 │ │ ├── b524438d2241d6425bdcddd4f6ceea70 │ │ ├── b5464b5285d64297c2ed186d9ba77658 │ │ ├── b54a02530401714dfbbd5a493532915f │ │ ├── b54c51e2af3a0a2711cffec0eb9d29de │ │ ├── b563bf08b4cdcf84ceda524e811ef764 │ │ ├── b58f002ee7febe6946a5ebb822364abe │ │ └── b5fe81eec51a1116c41a3ec8b244bf86 │ ├── b6 │ │ ├── b657be95795546844aab887f7aa48d46 │ │ ├── b66fa685d1e653e100b24a4834bbce33 │ │ ├── b675b0a9a2eaade6839a5cbb9ad4f71b │ │ ├── b6923e4214bc495ffa3c63c7301ce6eb │ │ ├── b6bffcda6bf15ebb370e2961678df0cb │ │ ├── b6dbcef2fd38e90d03f0bc10bb2ea69f │ │ └── b6e3d72c7fa96ff01f5cc65870a95f37 │ ├── b7 │ │ ├── b7077cb32184d6346d0348425ec844e4 │ │ ├── b709176b9a2cf2be2b5b14147227de60 │ │ ├── b71316bd370e198cc397f4f8d1cea196 │ │ ├── b71b0914764592db91c693c11151f751 │ │ ├── b71b22d953bb7142598582777bbb0a41 │ │ ├── b72035cf78294e3c38b3612c67909c6e │ │ ├── b7437014be0cd432e276bba273d0e429 │ │ ├── b769c02b56ee424b059a6fab123e3ebf │ │ ├── b76b5b709aaf7954f08369e4f28e68f7 │ │ ├── b7a1de6e0c40a88252f51ded9907af5a │ │ ├── b7a302d49f5143fe8a9c308cf62490a6 │ │ ├── b7bf18f773a0e4bc08ef828e88ad7ad4 │ │ ├── b7cade5b9eb14359fd425604714c6795 │ │ └── b7fc8a9a7552aad9fddd7b3bb0b2739f │ ├── b8 │ │ ├── b8045e81fab2481ffb2669c69999b0dd │ │ ├── b805f86d2eaa73340c8f806c69aa3279 │ │ ├── b80d0f22f1ef40b325f761479407c984 │ │ ├── b82238ac09bcef9b9e3b3c82f7330bc9 │ │ ├── b829626d1aaa3a7099066460141ebcc9 │ │ ├── b89327ac793f49db74191d94ba802ffb │ │ ├── b896788124faf6762692e67e43d20f72 │ │ ├── b8b9eb01f319562632008fee2afa5061 │ │ ├── b8baae33561b55dad6c32f0d007289fe │ │ ├── b8c2bd052cb625931e57e45694074aeb │ │ └── b8edab3dc2636d5474586d79d4b6dc33 │ ├── b9 │ │ ├── b90f574fe8b684c2ffa5f606a945e76c │ │ ├── b9217915616dbaff459ca5caf4724f41 │ │ ├── b92446e879526daa87a0e07f851b6738 │ │ ├── b9597e12c6d41d288d24515b229a870d │ │ ├── b9a7780fe238dbb211e598b9469e6f95 │ │ ├── b9bc398e29c140a4be6f51f98edd15b0 │ │ ├── b9cd53bbfa1bc1e5b002dc6d39679f42 │ │ └── b9fbcfe53ca3aac311118716230a0a55 │ ├── ba │ │ ├── ba13d521cb7a4403728e92f1d03b9625 │ │ ├── ba37915d60dc7d47fb4fc23a59bd7ca1 │ │ ├── ba3a57d8977d3ada86164adc875cb977 │ │ ├── ba756980cd9e9cf5de36e9bd095dd584 │ │ ├── ba7be1639f3842892691572b4b357558 │ │ ├── ba9f009bd32aaa6f1fed249faf72640d │ │ ├── baa83f459701c04613c8cf19797ada71 │ │ ├── bab173c5af52d0052cfdf20b3db54d1f │ │ ├── bace711ad4e3d968cd7e2068624e951d │ │ ├── baeb214f94afcc8a006afeba9cfd016a │ │ └── baf1872580b632c0f01679e88692acf6 │ ├── bb │ │ ├── bb29618cec408b48504e969aa22996f6 │ │ ├── bb60cbe437be7dfacb7a8f3a3e0fc7a1 │ │ ├── bb69205f30e7fb0b1185d83495f1c9d1 │ │ ├── bb6b9d9fe9a83a9342f8be6e08e8ce1f │ │ ├── bb891a670972ab1eb648e30d96603f76 │ │ ├── bbcd28bfd7136aabe97485c7f45614e7 │ │ ├── bbe42a1a87a2b1b56bc0ba5b006bb21d │ │ ├── bbe744a30c3e7991a5c021fff6a39c84 │ │ ├── bbf45ccdb4c14b444cf887f4a642c544 │ │ └── bbfb0c7370e44c11d7319d9ccbd6e9de │ ├── bc │ │ ├── bc2e8dc70470dfdfa6b128ce6c09f7e0 │ │ ├── bc49f5a9917705cdd03dfcfaa4996947 │ │ ├── bc59b98d196b01b53dedaf5eb29bf3f3 │ │ ├── bc6ab47fd37e05a940f294d5bef5c8e9 │ │ ├── bc88d0452d7c2b7133a9dbe47976900d │ │ ├── bcacb9ae99a162c2e12eeb81227468d8 │ │ ├── bcb27a16ba9e2135f351ba6e447a0c70 │ │ ├── bcc2040f6e86aac58d7aa2b55d9bb68c │ │ ├── bce14613bc464c96bbeccc6df3cf4a02 │ │ ├── bceb301285f48326df3dcab7019e4a4f │ │ └── bceba6c1e8246c1eb87d1db68bf7157a │ ├── bd │ │ ├── bd1ecb845e1f4fff2950ecbdbf3ff9c6 │ │ ├── bd24b352b0dff8c2d041c21d95ee66aa │ │ ├── bd4866d7256c83c9658cc57f289dac23 │ │ ├── bd5f03a7507c750ba1d7cf8616400ec9 │ │ ├── bd5f5801ae36d2e5a9b51f3590885bc5 │ │ └── bd88bf60307dac68cb5aa1e6d3529ad4 │ ├── be │ │ ├── be084ec3882b0a95e9ed963a4239ca21 │ │ ├── be1324cacdbc21f2cac3eef30da94445 │ │ ├── be1a4ee2868612559867cdeb6a67faa7 │ │ ├── be35bbc7f0778e5ced65560e251a6fc1 │ │ ├── be5a95ed9ae0ff28fef55726bc62c441 │ │ ├── be5bcb119a9eb51de87fb6b0d269ff9a │ │ ├── be61e889fe5cbeb31e7b502a89165a56 │ │ ├── be65f4b71f3950d224a8e20ecfff5da2 │ │ ├── be712be237bce521ff575cfe589495cb │ │ ├── be7cf1088e523327518f6ea2983b16b4 │ │ ├── be89878ef9bbb792f6a9fda6c57c7cd0 │ │ ├── be97034b760680a39d13f61718d83ae2 │ │ ├── bea2769dbe1a7f463d16bc61463ae251 │ │ ├── bec6213389b4f7ff6385fc8b01d3bd05 │ │ └── bee6711ba16984c97916d2b324e1c030 │ ├── bf │ │ ├── bf271e8834b4eb531d66006f7b8e2dc3 │ │ ├── bf375668211f52beea2a78cc4eea71d4 │ │ ├── bf3a7ecbacfce0213818e312952f697e │ │ ├── bfa3d627172efbfc7e19eaa7074d5ece │ │ └── bfe119fb89a8b3f5f6aa94fa979fa6f8 │ ├── c0 │ │ ├── c0230f3b9947fff85881f1556bf688c1 │ │ ├── c070d8d00afd2450a659fe247b5aa08b │ │ ├── c07827a8ba318550bd6a9f09d1f8f1e6 │ │ ├── c08ec5d12d086f0b8a48292030386a87 │ │ ├── c0a85d6ee1cb01e42e6a40352b4ecbd7 │ │ ├── c0b409eb986fc78f3272c571ed6f8c41 │ │ ├── c0c265af71b21e47216589368be0ee2f │ │ ├── c0c4fe32168bf6af52f946399cb1a98c │ │ ├── c0cf78e26f6f12409e33186434cdc6ba │ │ ├── c0cffed4080839e5a149d1c5042b8479 │ │ ├── c0dac16ce531ce3ba0ac75aaaf66bf2c │ │ └── c0edb33b235ba6fb3561bab6a15b3c2a │ ├── c1 │ │ ├── c104049ba16608fb53eef53fedfcef77 │ │ ├── c1170f554747820c079617a5aab5bb01 │ │ ├── c12bc41543930001d345786d0d3cc22c │ │ ├── c154c4fdf19744db9bdcd909b661144e │ │ ├── c19618e5f3f587d4847173c550a06363 │ │ ├── c1dbcf2c7bace170289cf39d2dc3ce99 │ │ ├── c1e269d1653878b1f9d71da0935d71ad │ │ ├── c1e776c861433027de0f834637610ada │ │ └── c1feaa00c33d501164172e4546fa12b3 │ ├── c2 │ │ ├── c21d30005a2aa1a6ab6966a7062a5bc3 │ │ ├── c230aec996643713db2271a0eea67ecd │ │ ├── c2318a4528e9e697d9208a2b054d7f25 │ │ ├── c26b955b7a9cb830cf2bf5cba5644ce0 │ │ ├── c27d8b0dcd6ec9f4b0f71cb777a95e60 │ │ ├── c299d55200edc864dc524ec5ad84cc10 │ │ ├── c2b373b8629b9b3bdfa51e5948e7d5a1 │ │ └── c2de8b4ee7fc3c5e21075b746e44cfaa │ ├── c3 │ │ ├── c306a9154ec7669cde9e6ad98136075d │ │ ├── c30c422944868ce9328e7df28aa81e36 │ │ ├── c32058afb12f45d608f548c15bf21b14 │ │ ├── c33fbb314dc9e89693868e6536740440 │ │ ├── c34b1f22ae41aee221fbe34b6f0fb0d2 │ │ ├── c36dca688b2e006b747064a41a627bb4 │ │ ├── c37f885f590fc75464df43bc9e25496a │ │ ├── c3c69425c4e2074726437a4048bb6c46 │ │ ├── c3d3d10fe535d85b02e14333baaf7587 │ │ ├── c3f03e20276154ca8cfd2b1b2f602600 │ │ └── c3f04511cd87dc4e8b8fbc8147469e80 │ ├── c4 │ │ ├── c4343c61831712fdaf3e057bc3dcbe70 │ │ ├── c436ba3c403866b59308400d78cda46a │ │ ├── c438af8a574a66d8d5fc070d09e7d45d │ │ ├── c43b86eaece7852f170724cd888d109c │ │ ├── c447950dde11c3dcef1db73a5510706c │ │ ├── c453bbe6afc6ec14bc7c9fd640a5d7fe │ │ ├── c4711c77ed2d341005d9409d1ef17582 │ │ ├── c4788598da8eb6525c45806b5917fe66 │ │ ├── c4908f446d714cdab024369a96809e1d │ │ ├── c4adbdca61f8276a5bf07079e04c4574 │ │ ├── c4ce35ff442711f57640c3688d2c2c5a │ │ └── c4d20a6b3455be2aef9fb4d4ec5bc97e │ ├── c5 │ │ ├── c51420262d3e3dda1a4c920a4b7d89fc │ │ ├── c577b15b5009a28024cb5e527124c50e │ │ ├── c58705cbdb53c94bc049ba09fd407322 │ │ ├── c58e0c7b754a437d7ac8878b89943674 │ │ ├── c59514abcc20d7e4039773bd49140c0e │ │ ├── c5ad8e552abbb9114a0353ebf1521f46 │ │ ├── c5b9c2ed0d1a99872f570073a69ca73d │ │ ├── c5ba2986d336f6c95492ea1b5c86b28b │ │ ├── c5c38af58924daadfec429778b28fd44 │ │ ├── c5c544886af2b87ba39c5d98bb5ac63e │ │ ├── c5c7dade878426b2bc8d07b2021c7f70 │ │ ├── c5cbef2ec546932f7e9df094a776c1ca │ │ └── c5e27017c75c2bac70b8e3d649ff404c │ ├── c6 │ │ ├── c625a3c72ef0ba1ce8a79c154e5ff952 │ │ ├── c639060385714b72ca15a576f575106b │ │ ├── c63d9ee8d5d41d82b50aa29822fb8ba3 │ │ ├── c6451b835edc3669ddb04a63b4fe2797 │ │ ├── c64ea026bbc23cb77ca25cee1a68751b │ │ ├── c65d1d89110e8a26d9b8f15c8cdf8b96 │ │ ├── c66dbf339b35a8d85ee2bf1c7c5ce962 │ │ ├── c68039be3796979f993e83f2676bbdd6 │ │ ├── c681ac1f36cffe935dc8cd97f65255bf │ │ ├── c6a774c18cb1d29eb698c676cf3cd5e2 │ │ └── c6e99bdd9a8c8e588d5f0ebe73ccfc13 │ ├── c7 │ │ ├── c703632bd57802d7d3c9c18b6fe51397 │ │ ├── c704e50165f85c4f5baf3fb0229304ce │ │ ├── c712d7342d282035e36c6c4cc5ed299c │ │ ├── c766983c01c766895b93626b158b922a │ │ ├── c76d08c9f0857ac6dcc90399328d3375 │ │ ├── c781b7cbe629330d222d163604011979 │ │ ├── c793262a07fb3283c1d06793f94bcbc3 │ │ ├── c7b0baf60760a6a3f381b97eed78d708 │ │ ├── c7d223ab01781125dd336fb15338dab0 │ │ ├── c7e518457ce539be9ecda42d9f2517b5 │ │ ├── c7e645d52b3f6f8784d56ebe739418e0 │ │ └── c7f3f53e0cf964e57ff3d5328c1348d7 │ ├── c8 │ │ ├── c826de2545740094d76e71e6481f03d1 │ │ ├── c8307a28663b06c493fe6d031b1154d8 │ │ ├── c85abcdc1a7faf8baf9ccae0875acb51 │ │ ├── c87db9bd6e5b0f6dc22180d94fdbd5c5 │ │ ├── c8d64112960c7bc1e1d09da6a33428ba │ │ ├── c8e6fc81d5d2ef1c4e1435ba959a9495 │ │ └── c8e7668d18db7cce1c3969fa0b3af4b7 │ ├── c9 │ │ ├── c90af220d9a7372f715285d096872589 │ │ ├── c92cb40241542277cc4e9722e6364834 │ │ ├── c93a44c61b3b8e2382d16001c93aea3d │ │ ├── c9a73ea6f76ff3b12a53af4ae1d157be │ │ ├── c9d2221b2912acdffa41c879ae102b5a │ │ ├── c9defa0a95b3bf671be6a506961ce780 │ │ ├── c9e1b16974f7097e4ea3178d58bdc13a │ │ └── c9e6366ed11ea88b148d7993288dbbd2 │ ├── ca │ │ ├── ca2879ee7ed582b1a1ff91484790d69c │ │ ├── ca2b162ee9850302200ce3e967784b5b │ │ ├── ca31d853a44b52597af45aee19a5cbe6 │ │ ├── ca42f215578db3f34d3733a87cf7baa0 │ │ ├── ca501d165a29422963b315179e04fe04 │ │ ├── ca8f14bb5c740c5c93a83b4b1625158c │ │ ├── caba48c5ea15bf1746e08d34b0bc387f │ │ ├── cabb6ea96131a6f5c0d4b18095688b41 │ │ └── cad629e8174ffb4c5b75af3e7008767e │ ├── cb │ │ ├── cb5aed78f8254e7e49be2885af62d6fe │ │ ├── cba472b6e964a09b38eccf4d3022de5f │ │ ├── cba62bbcd0b71f7132b7f80600dffa15 │ │ └── cbc988d4970b1692ae59e8c0ef5a4115 │ ├── cc │ │ ├── cc071be293b191a9d7e796c8a10b8608 │ │ ├── cc183825f8db26f0c637a152e834f101 │ │ ├── cc2561ccff8a52ce5505361c94c522b8 │ │ ├── cc3b244a5e4360e1917d03da9480bd24 │ │ ├── cc5834572f5f717999dcb868b4505c81 │ │ ├── cc6e44093ae894cf6ac842088e521329 │ │ ├── cc73fbddb2d871b3de82ad51f95be0ae │ │ ├── cc8cc9218307f69708c8e27f9f6990e4 │ │ ├── ccab8e13c0e23818d36b11537a81c47b │ │ ├── ccb2ea5535eb656522d856e19667df84 │ │ ├── ccc4593b7b8c211c917b19fda034b24c │ │ ├── ccd5f83bbc0a0c0e2d67864ad3c9bb6c │ │ ├── ccdb14a8a35d4b8f32a095a424c64cac │ │ └── ccdf88de7a01ceb3e4e0b9ec0a276db3 │ ├── cd │ │ ├── cd01ca935192e413452ac8b9861bc5ae │ │ ├── cd0eaabb33636e34e6c89e13910f3a3c │ │ ├── cd1737d502668f76bfe686633993b3f1 │ │ ├── cd2e33ae75a2deb1d2eb00152e7f7abe │ │ ├── cd3b310afaa6a8419e6b132cd9a9016d │ │ ├── cd577e36eb80ac9a682d71f6b5e585bd │ │ ├── cd5f170390fe345b2d9b26af505b821e │ │ ├── cd6fcf53a536605a1e0996af3cd3b897 │ │ ├── cd6fe076f40a52897451e684173bb609 │ │ ├── cd83786feb61b26de49a959d2c7ecedb │ │ ├── cda01b840c93027e55908d8e083ef4eb │ │ ├── cdaa9fb913f44c1b34020d7fed998178 │ │ ├── cdad7db0fa4fd2bab6077ec06ad3a3f8 │ │ ├── cddab64e0b6a933b909cb6c95442f9a2 │ │ ├── cdeaeab87938de32916688807cad837d │ │ └── cdeb6e5ff12eb4ef6f6de6d01dc3a785 │ ├── ce │ │ ├── ce0259b7a94ca78db7b666606076dd34 │ │ ├── ce0d8017bdcc9f8f448b8e5ec499308d │ │ ├── ce11678668bea2c7197e2412d73e0f4f │ │ ├── ce14ac7c3423f5057d7633878d552288 │ │ ├── ce2675b4d67d2c3ade86b2e25ca070ac │ │ ├── ce3276d368542d2493bb8fb2c7edf0c5 │ │ ├── ce4189d4bbb0bdfcbf8535df153e6c34 │ │ ├── ce4723c18f33dcae7fe23f2fdea1d819 │ │ ├── ce725992ed9dea544d720582d3680408 │ │ ├── cea8323aa815e87f2745439386e3a778 │ │ ├── ceb340cd96a9e23a6a798d90780c867d │ │ ├── ceb97fbb0226f60f94c597d9b32da156 │ │ ├── ced0e2e22f09466383ab193c3a63db61 │ │ ├── ced17447a2ec5f395dc74cfc40967eb2 │ │ ├── cee9f8dbc71b2104a68e610051b9bd71 │ │ └── cefdc36f9bfbb3a4b7db11ef9d85a8fe │ ├── cf │ │ ├── cf0f03b7fd95929adfa1625b60d4c7f7 │ │ ├── cf15da597ca0240a2515c5458bfff058 │ │ ├── cf8e5173cb06fe0b278a1c1f9723614c │ │ ├── cf9cb1d7d25b437327daaae028d11adb │ │ ├── cfe5dccc7e7aa957837ca160a0963be8 │ │ ├── cfea60dfc5ce414954480064a133bfcf │ │ └── cfee7eb4d5c8ab682255041037a7d62b │ ├── d0 │ │ ├── d00a9f281e36fff00fea3c280331cba4 │ │ ├── d0288717b2e95296e6e5caed9a45b213 │ │ ├── d04a4433e2932787354c519d27e4d6c2 │ │ ├── d04ee636e78d3004afe4bc99a008ede7 │ │ ├── d06a824b638302b88f8aa17bb6d36e19 │ │ ├── d06db074c7a773a51717d3f1aa4ae1e8 │ │ ├── d074be75b7af2e70b04aed4e15b2eb40 │ │ ├── d086686701c0c0beb6b8a1f62c1d037a │ │ ├── d094ec5a078f12fbea2c52737c91ac76 │ │ ├── d0a4680b644dae51663aed95cc53e62a │ │ ├── d0b632221b4cdd1fcab3fd7a9483453e │ │ ├── d0bc9ebc97edf6e4f7bb37305f67e589 │ │ ├── d0c9b57a3c6242318fb5e8f3f23f7ddb │ │ ├── d0dc9aabe74ef7c5f33194f8696d1249 │ │ ├── d0e8550f7afb750efffca76949f0b65b │ │ └── d0f3b2ec0f834a70a36c03a73cd1da7d │ ├── d1 │ │ ├── d1014cf9ac356590c7b79482feaeadc9 │ │ ├── d114f2adf494adc5100c02dede0fa1b4 │ │ ├── d12c68e3577194a689e4cce6ccc1efc9 │ │ ├── d153674c88ddd6a1ba56f6b7f341f55e │ │ ├── d16065fbfa570e151bba78f472f93ad4 │ │ ├── d163ddf03e7a838e0a77bc72c8295041 │ │ ├── d17834a987f6b353757c13c2c7f47efd │ │ ├── d17f00719191a01a7341b382d5459c19 │ │ ├── d1850e5bec0bcdfcabd009722cf74c0a │ │ ├── d18f49c370e0c052d429b2bdeb8af5ae │ │ ├── d197446414cba8a2dcf1d1c7e76775e9 │ │ ├── d1bbbb813e5d2f480ebf34616db2f9eb │ │ ├── d1bcf94822d60fd36a5cfc6e7f3c1df4 │ │ ├── d1c47e54931b3347fc0fedc30570811c │ │ ├── d1ca94581d1b6a92a38331d971f69f3a │ │ ├── d1ec83825977164091bca5e0b85d662d │ │ └── d1f35e31891de85fef134eddb6d6af66 │ ├── d2 │ │ ├── d2104af38cb0b911a94c066609248944 │ │ ├── d212ecc0d63ff7464d3c72ddae0599eb │ │ ├── d23d133b7ce280428b4030bef0c35b99 │ │ ├── d24036006ee80d84cebad15c4c0465d3 │ │ ├── d24ad58150615fbdef1603aeef3777fd │ │ ├── d2907c3af517ae57d527cac67f473529 │ │ ├── d2a40b35e0fa75f88003642df50c7d58 │ │ ├── d2a9718710a5a7933bccddf855b75746 │ │ ├── d2c54182270aaad34ac9a35dbcf0134b │ │ ├── d2ca59191de834149f7bec99326a7caa │ │ ├── d2d46b621630b1db9886862307fe5ba1 │ │ └── d2ef112d07063cd87ac78513ac5d7e90 │ ├── d3 │ │ ├── d30a5f0e3e8e12bb76f79a4b74205213 │ │ ├── d3363384c0d1755cf621fcd362406b98 │ │ ├── d33752a2afa5b51afe772a46f4bdb08a │ │ ├── d33cf0290dcf91760a9d6b998a360b6e │ │ ├── d35e15017605f6b9f9e857c64eaaade8 │ │ ├── d36f74d4569b5726aaa78fea632ead79 │ │ ├── d3899795e11413c8710d96b08e79f9da │ │ ├── d395e1d398d00ac4d9237dddb4da38f9 │ │ ├── d3a71abb9fb683eefe68cb6535039c37 │ │ ├── d3d82b430c7758ed1c29d76f4be78491 │ │ ├── d3f12b1b9fb0d6ec0964c6fd6379b5ac │ │ └── d3ff61a636e5fea0cd9ec8164eae4316 │ ├── d4 │ │ ├── d4168a9c7eefd3f9b2ea4fcebc99db30 │ │ ├── d432eb2ef14c1c5ebf579b6461c2ef88 │ │ ├── d434a50a5439e39ae8b2cb43d08182f3 │ │ ├── d4378c0a7e4bfdc47ee30d271f4410c3 │ │ ├── d4443fec8857d61114a9db5a252c51a8 │ │ ├── d4574da8add2bec18c44ab7d5b4f1564 │ │ ├── d48c9aadd35922bca70b4a686c8aff9c │ │ ├── d4a0fdb204bac4442856af084f59dd87 │ │ ├── d4cad6a10b855a220a071d8cc5c407e6 │ │ ├── d4dac5956b21b714871581da7424121c │ │ ├── d4e9ba93cfd1ca8ec657e3ef133f89b0 │ │ ├── d4f45c6609227e42505cae384bea6f20 │ │ └── d4ffd7948b2fa1178451e82ae2f4a416 │ ├── d5 │ │ ├── d51d3d44ffb07a62095223ad2561f5c4 │ │ ├── d530451ccc20420dd9c055c41fa8f4ea │ │ ├── d5861222a821f58b958bce81aab51c7c │ │ ├── d59db87de71e57bf071d0afb0bccb605 │ │ ├── d5b6fbf98b460728d3820e7e613c02fe │ │ ├── d5d62e3c31580ee491dfe65df1aaa15b │ │ └── d5fe532249d6075468f6257d1436a3bf │ ├── d6 │ │ ├── d6049fa611a40659041fd36a797d71ea │ │ ├── d6056461455de61648513cc52072e78d │ │ ├── d6093754017dbb1e56c4d95cec969e94 │ │ ├── d6298948407ff9f929733e51f08e0d3a │ │ ├── d62bd11c6a3ed87f1140e5b5b3869348 │ │ ├── d63c365d2140623330770f1f9da7a02d │ │ ├── d666c527a72a7601f57c3fe2d434c793 │ │ ├── d668a1b194761038a92ddfa1133dc772 │ │ ├── d673dc6ae2f5b5448cd99f0705b80f5d │ │ └── d6c5960014e15e9284bdd982b9993562 │ ├── d7 │ │ ├── d705ade80e5194f9c676538b1d0cf951 │ │ ├── d721668ccda3cc96bc3b9be6dc14b31e │ │ ├── d7286b626e2f54d98b58dafd38a0789a │ │ ├── d732a5bffbfe3f7048b32e10eb864c60 │ │ ├── d7422743ed39efe65a047eb954403c4a │ │ ├── d7541c784bd34c47e8d584542186c1b5 │ │ ├── d76464dbf8ac56fa407a8a1583a13bfc │ │ ├── d789fac55a9d9733f00f304561e22c0a │ │ ├── d78f97840bdb21ae308b9c054fad2164 │ │ ├── d790e143c1573d66974c50eb7b44ba0b │ │ ├── d7a5b09d6967d30dd109bfb84b3bc5cd │ │ ├── d7d8666021d9155e833808e84ff239c9 │ │ ├── d7db9249f70b359f7647d040dffe8624 │ │ ├── d7dca4f2a1d9bd7257fb2446418f4d2c │ │ ├── d7df99b47509c8e0203d628fd0685711 │ │ └── d7f27b020174be1106b583c37afd7467 │ ├── d8 │ │ ├── d81610dafbf1e47e6fdb198451983315 │ │ ├── d829d93bf72af3f64240abecca20ccde │ │ ├── d831ac68fdddfd73a18e6f043af5402d │ │ ├── d850e6b61f91864215c5058754bf3ccc │ │ ├── d85c59d7cb406ebfefd039ec04b13235 │ │ ├── d87179019867ceb5d8c205746116be27 │ │ ├── d89af579fbaaa1aa6d8c0fb575528d8f │ │ ├── d89ce316b1877efe127c7b7ac0d36dd0 │ │ ├── d8a76ec6a3ed0dc66c450809efbc0927 │ │ ├── d8aacf6fb4174b803d57ee4e30154aba │ │ ├── d8cc2fdf08d18bf0af72dd6ca48dfd93 │ │ ├── d8eb54d3c3bed485beacc899623c006e │ │ └── d8fa6f7a337998c46fe20a14c554f01e │ ├── d9 │ │ ├── d9040301f1b14fbb01ca4185cf48a58d │ │ ├── d9073558d4df2299dfaaf6a060a7d633 │ │ ├── d92cd92c96df8db399a1dcf012e52fde │ │ ├── d935e7eac48ae01de4163692ebdfa2e7 │ │ ├── d950a85757103de77ff8d2c8affe5cb6 │ │ ├── d97c95129a404a60438fc4d4d605185b │ │ ├── d9861f75f5d65958328483888199a152 │ │ ├── d98fe129c01b74d1392d112ab463584b │ │ ├── d9921ace851bc55078d0de1612d41ab1 │ │ ├── d9a3c0da62fff62e6d286217dadfd7f5 │ │ ├── d9c1c3577f72ff47b7beda7d9396a77c │ │ ├── d9c33c7a7fc1a4d0c646d8eaca197330 │ │ ├── d9e2ef2f135737d877f8fb9b9f7809b1 │ │ └── d9f08f827b643fd1c6483cdfaff18617 │ ├── da │ │ ├── da0920afa5e8d1f91e0bd53e9d42aa76 │ │ ├── da144439496816fb9d91097a90153bcf │ │ ├── da1baf82a38cab7065ee744eb4a1ecdc │ │ ├── da4abbce02c57a238aa39b1572d8e0a9 │ │ ├── da535669008595f083d7f4036d28caf1 │ │ ├── da57b48b9342e1fd011cae136abeb023 │ │ ├── da5dfacedd8ea7bc7248a94b7ac6e538 │ │ ├── da742cbf0d5b3e1183bc54e97635b051 │ │ ├── da8f296bf832c376ef141029639e4d26 │ │ ├── da93d9ef4be98247904ec782cdb0215f │ │ ├── daab5e6090dfb432102e31277644e05d │ │ └── dae750da9b81e94aecea26022b103582 │ ├── db │ │ ├── db0eb67a46b3de288baaffee137d05e0 │ │ ├── db2bf612461b24908364918d21cadf85 │ │ ├── db4d97ee47b7b1c9f1b40908a202704a │ │ ├── db5123279e1198e982a29ae36520b182 │ │ ├── db612a647ffbde5b06576b6e5cdaf0ad │ │ ├── db89dd3e5c676b92477c00b092b6bc58 │ │ ├── db9598cebbcbb41162eb5e6a927c5e33 │ │ ├── db978388953e0b9f48457184011d7ae4 │ │ ├── db9b02f0dce4c2497878008c1a871533 │ │ ├── dbaea9fba569c30ac68ac019480b5bc3 │ │ ├── dbbfecffdd7cf4d167561deeb595c3a9 │ │ ├── dbcd00f508e830994341f4eff7db882c │ │ └── dbeb1563dc5d165f42f6842c4e2b920e │ ├── dc │ │ ├── dc049d59f8b15d979fff2d465f1766b5 │ │ ├── dc1c8270dadeeb20a877c16cb5c71abb │ │ ├── dc315822cd65f9d61f75f3678ca8f1dc │ │ ├── dc5d44eee9761532ebe16f26bf269bd6 │ │ ├── dc6723e0742e38212e5b1e1c33737e30 │ │ ├── dc6fb7e6965794c7e00bd5c19a756e2b │ │ ├── dc9bf4d96fd7c5215f987e0e23d29c5c │ │ ├── dc9c3bc09bcb9ca27b53092c7c875074 │ │ └── dce30d6fab2a9972dc3da14454366b8e │ ├── dd │ │ ├── dd06533a137c3d4791075dd5ddcf654c │ │ ├── dd1bab0bb9145de24c05fc91b9b8f06d │ │ ├── dd1f35dd5b4d12e4169affd48ae3d830 │ │ ├── dd30919553a3d65cdcd2c8f19cc43a22 │ │ ├── dd44e9b9b4b889f00ec213e39a83ba5e │ │ ├── dd64b7b4ba9850fa9a19bfb8f61a4510 │ │ ├── dd6961fbcf0211daddadde44edd20b3e │ │ ├── dd7bed0f40dc116319bc8591c173a907 │ │ ├── dd886e81df736704dec14776cd9dc6ba │ │ ├── dd993e8ba41af371414be67b8f911467 │ │ ├── ddb1df9ad882714767f83b38c0b39b9e │ │ ├── ddd6962ca3656634e30e59404b5244f5 │ │ ├── dde573492547ac022783b5ac2a2c3d55 │ │ └── ddedfada4fdb38069284c65702b9773b │ ├── de │ │ ├── de1f42177481b3332b5726f610881ca9 │ │ ├── de249d08933f97c9cc01bd2dfc9e6d45 │ │ ├── de2cbe91afde47082ed7d835876f2d5f │ │ ├── de38549b657cb72bdc748e085385ea77 │ │ ├── de4d2a7ecf1c2aeccfc9ace9404db294 │ │ ├── de518dcc028d0fe7b9ecc93e13b0664c │ │ ├── de644a8188b05710e94abbdcc7fb2826 │ │ ├── de731fae1275c706097efe19bc724d73 │ │ ├── ded8d736041808f1034a2a6287953761 │ │ ├── deddc900842741b88376f6ffe6f8c662 │ │ └── def598fb5eb07a423fde57e35dfeecd5 │ ├── df │ │ ├── df107833a6831c13eb6ed939194ce8f9 │ │ ├── df17bb6e46f66e63e0e49b832535ba60 │ │ ├── df19d752f08b608a1e9a04ac4af03d4a │ │ ├── df597d3c9b3a7d6014c05ceab09f4514 │ │ ├── df5b2aa126cfe895692d2bfb25a2ad2a │ │ ├── df5ed9ea8c56cbc51eeae7f2f84e2499 │ │ ├── df69474d8d4a684eb392f8689f2ca34b │ │ ├── df719a29d463c9d6f54053fcc85ddda5 │ │ ├── df8933fa3a99e377f57b1c80188e85c9 │ │ ├── df9732704de6c4290be992d3a909a506 │ │ ├── df9a259671f56ae012f3b774f2ddce20 │ │ ├── dfc33fcc9cb686931314a51800572c47 │ │ ├── dfe018ea9932cd1c5aa65f826a51dbb6 │ │ ├── dfe4a40315c5a771764f13353fb2b9cb │ │ └── dffbd4603e5ea05cac0e6dba004cc7b1 │ ├── e0 │ │ ├── e0136559fbac66878ca1c7de01e7c047 │ │ ├── e026afe1508be79fba4d0f9b4b6a7449 │ │ ├── e035636a889d44fc8949ed40a2efcdc6 │ │ ├── e045be9abac98f60c42bda83b7800162 │ │ ├── e0817d135c41aabe9f95dd55cb5d989e │ │ ├── e0a4f7966b3fc0335d0d7c1d23cc01df │ │ ├── e0a70d9648c22d9ce081e695838480ca │ │ ├── e0b455e5deac46e14469a5f960019d19 │ │ ├── e0b8394c9dd9d5b63e2e9ef731260783 │ │ ├── e0bbf7d2e7428d28bf35a9d7998d5f6a │ │ ├── e0c458f94c4a280a4a016aee9e5f5604 │ │ ├── e0c95baf307051d0b704e593c435040a │ │ ├── e0e0cca29f276dea8dfc97fc4bc32fc5 │ │ ├── e0e42c569c542d4c55c21c63d9955ea4 │ │ └── e0e49ff904ec3a84452b19c568ef687c │ ├── e1 │ │ ├── e10a6b255050d057416b4b19ffca3596 │ │ ├── e13c4231ef64f844a68784521a863259 │ │ ├── e14c78a1c4f812de18023a04ea9e2152 │ │ ├── e15b7ba351d1a38d3b1e1b6f18cacae6 │ │ ├── e177419506d70ad2f8ac0334de81af14 │ │ ├── e1cfbacf438d63bb7508e18af2ffae90 │ │ ├── e1d53c3135c517e1749e602d96695fff │ │ ├── e1e792ae6523ec86d644e548114e719a │ │ └── e1edf24804c9bf612f7634262a5a3fb1 │ ├── e2 │ │ ├── e21fd4b53946551cec2af4934df8303e │ │ ├── e227eef4572c6d165317060f75e74b64 │ │ ├── e241730ba8e732c245fd1d149e75a668 │ │ ├── e286284bb6072c00d80c501302157eed │ │ ├── e292487b7202b225f7c346d1d9ee20b2 │ │ ├── e2a51c0c01830629fff5db9cc9f75c5d │ │ ├── e2b85256088db187c64f347ce8ce7a34 │ │ ├── e2c200679f0f6d5667b6f9c318dac1de │ │ ├── e2cbb746a6432465ec279640d73ed67a │ │ └── e2daded5bdd07476ebdbba8cca80b140 │ ├── e3 │ │ ├── e30a36ada977581f3a0bc2f4d1946e27 │ │ ├── e32d9652ed100ac0be1c572c4be221a4 │ │ ├── e3403e6aa3865ff6ee4353cdafb16039 │ │ ├── e349fc1c1d0f6e17ffe01ee6b13a92ae │ │ ├── e36fd9b21db2082ad1a2d95511dd6153 │ │ ├── e37a1d740c76529b87330aba2d67a4ab │ │ ├── e37ed70f6e6a53d608768cdc87c67585 │ │ ├── e37f1f3f950ec3138453540121813d56 │ │ ├── e38658b65243965f8dcba1e58572ac15 │ │ ├── e39475145df4a258dcc3caccbad01ebd │ │ ├── e3b41e0341995f8dd8b2d9d7f63a3e84 │ │ ├── e3d45a69c94993a1785d60da110684a0 │ │ ├── e3d8eb509283b9a85a738b861668dbcc │ │ ├── e3dcaed4b089b7145d4b7d81b96b1aa1 │ │ └── e3e30025b6f1ed27e0b746e4f6d495b3 │ ├── e4 │ │ ├── e4056d9dcf3cc73b764d523e7e8d0f76 │ │ ├── e4152acb53bbc63eb07aee0fde00a8ae │ │ ├── e41f5a5115148190b9f33e98151d0745 │ │ ├── e450472066474de6f492346b35d469b3 │ │ ├── e45cc2f3a66b60334804c40bdb106ab3 │ │ ├── e46afee90843b0666a3a9dfa7c5eed7e │ │ ├── e4a4bc3a48a2ff1e4d2a66d54d488f1c │ │ ├── e4aaa66211afe8255bfacc2c32c9d62f │ │ ├── e4b38e6f2bb9ca5ff3fa1f4439f4d2e3 │ │ ├── e4ddf139c15ab69d29800adf25192b2c │ │ └── e4ea1013b325ce5ec2daa776b4287f24 │ ├── e5 │ │ ├── e51da9269e304017f5da2b93d21f4f36 │ │ ├── e54f3bd8f2271f52da86bacd557fdfc9 │ │ ├── e551cdc58f3291df0640efbc03e7d4ff │ │ ├── e5685bf380acf9420027f76df0219efd │ │ ├── e581a333b7edd40232cdaf6ca1330db3 │ │ └── e597fb9b4234f26750c4bd47ce54007c │ ├── e6 │ │ ├── e62709a4de8cb853354a7b2827bcd185 │ │ ├── e650c32725c10b18e4c791cbd9c200e1 │ │ ├── e67e0a3b352ece08ad90156b40cf10a8 │ │ ├── e6891625fd28fe7adae6d8a1122346ac │ │ ├── e68a245277e57be694e9bd50afa1c380 │ │ ├── e68f11ffd40d83f7d0fe674f8caa3d35 │ │ ├── e6b547a23a827a5559e4fcff3aeaa3d7 │ │ ├── e6bc7fd16ed39a9432e58a48f4282dbd │ │ ├── e6d60cc25a3e8ef691b4a3cbb8cf5d27 │ │ ├── e6e2647d39a18f0ef77ee873020c9ddc │ │ ├── e6f0e9873e804b5fe1d2334084b1940f │ │ └── e6f979e609cc52d600c8fec752eb5dc1 │ ├── e7 │ │ ├── e7105afd26f72431ecc710ceeead1c57 │ │ ├── e7579912027809451fd57305bd99b731 │ │ ├── e7930e083199b1dfe498b13101f21fd7 │ │ ├── e7b150d7f98cd9984ee7ea92029f336a │ │ └── e7e974e26988466c08c7dcaca895d633 │ ├── e8 │ │ ├── e81a7095591c77b19de5306051d8c163 │ │ ├── e8204a50b49e5ce8690753dffc89b923 │ │ ├── e85908c13b7b9e64850ba3e5a4f9bece │ │ ├── e85c798234fcb528fc78e6f18b2da3e9 │ │ ├── e88910cf02c4dfa3bb57c26194e61ddc │ │ ├── e89cafade1ef101c878361eba269f29c │ │ ├── e8b5a54859e5b6a239ef8336e886ed80 │ │ ├── e8bc1e1fe9f4a46eb384ac85dfd7301a │ │ ├── e8c7755d9d58d7c7056d527bf5a9133e │ │ └── e8c8840505f11c808d5c151bf210d913 │ ├── e9 │ │ ├── e93b2a3978e93a027b99826ad1b3c728 │ │ ├── e95bb940618f88f791a3e04743cd786c │ │ ├── e974bd4e4769dc69f6d1cf0a5f8a523e │ │ ├── e981f7a66791723aa1e4762b670f0c99 │ │ ├── e99150dbfcd503b6b398299d8819b423 │ │ ├── e99e23804c991d0913d9fee8720f98d7 │ │ ├── e9ae8cb47b6b591a39a532c415c81953 │ │ ├── e9b1bcebbef6e392baf0acf6b9a5e6d4 │ │ ├── e9bbe12d3eb422427145c6ef4d7f91cb │ │ ├── e9c9fa02e0ef0de88417ae04bbfaacfb │ │ ├── e9dbb1fd344d289071fa2952a81f3034 │ │ ├── e9ec9742dcc27d50ce804b3547884e1f │ │ └── e9f5d3d75ced842d0a9e8b7eb925d0af │ ├── ea │ │ ├── ea0c28e2cff46d13182423fcc815c932 │ │ ├── ea29644a073ca7e60ee704b6c67ab941 │ │ ├── ea3a108f7764c994a4aad898e7a7079b │ │ ├── ea4b9af1f05b260796bb166e3e13ea54 │ │ ├── ea7b7eb9748b3b57b9d0cf1f4ccc786d │ │ ├── ea7f7f8fc14ad3684604bb543ec0d802 │ │ ├── eaa4b411b23a91ed920004f90701d9c8 │ │ ├── eab00c8d45945e04678baf4314179db8 │ │ └── eaee8be4e4580f9dff8db62a5fa84b8b │ ├── eb │ │ ├── eb015501facff6b32a8426e60e9b4a30 │ │ ├── eb129055e619bd3b9d88bf86b2b02b3a │ │ ├── eb54d588d07e2a10c44aedfc072e89ff │ │ ├── eb9eb2f014e540ecfdf6064a4bcd58e9 │ │ ├── eb9fad18993afa9ec9d4ad43099ec149 │ │ └── eba635f84a98b4139159c96266e91b20 │ ├── ec │ │ ├── ec0ff94074e6bd13ae5e2ca41214b062 │ │ ├── ec107bc84c0264a22d923a5601dec515 │ │ ├── ec99255cb9c7b42b1506719987badddf │ │ ├── eca366dbb2000357ec4f9597a1c2e2f6 │ │ ├── ecc1a258e1737a48977237fe676df83b │ │ ├── ecc9d2655082b877ee9da021d5b791d4 │ │ ├── eccb7e8426b138af7107026caddac443 │ │ ├── ecf2f10e55cb97adc8ae1a96fa988861 │ │ └── ecf9eac149730d6d1a6ca473ed7109b3 │ ├── ed │ │ ├── ed06b5f91112f5dfde5c7fcfd122c5cc │ │ ├── ed33f11d1d9d34c7fc8ad9553026467f │ │ ├── ed4ab61eed6dcb16992511593d6a8953 │ │ ├── ed64515598e8bacdb95032108916bc57 │ │ └── ed7f80411632f722ff69ba6a18115b25 │ ├── ee │ │ ├── ee0fd8150490e22e8bb673cbbba6621b │ │ ├── ee4449d57e79a3aab9e15f4b82394b80 │ │ ├── ee57cf309649ee95d3c8dc2f9eb73b9e │ │ ├── ee7a953705ccf3edbf8d0b3157446925 │ │ ├── ee801a6b7a68389047865f53c30fae0e │ │ ├── ee8464b01cab6e4685cd4f76d2711a09 │ │ ├── ee856cb4cd6d00ef069c7819623c4e11 │ │ ├── ee9c75fd14898b50d76b17b2ba8cbd08 │ │ ├── eec5c0d9c3f9e18f3143ab6627b57557 │ │ ├── eed04221a74d8991ce09f98c068434e2 │ │ ├── eefb149afeb245e7812e490ed5cc8ed6 │ │ └── eefd786252dd05d4fcaa125cc7235c5d │ ├── ef │ │ ├── ef094880f18f5557c751e8729f6f9090 │ │ ├── ef0ddaaec48ba531cac12d5527c5fbc8 │ │ ├── ef393dde5f777358b6c88d84d8ee6322 │ │ ├── ef475c0bd047ba8334f01a0354d690e0 │ │ ├── ef64be431d934ae960433aa1b5ef4122 │ │ ├── ef73f9a6a29aa0aa4744b4a8609acae8 │ │ ├── ef93525addb26e936c146bd3f711327c │ │ ├── efc80f6f41a8c4cdd3461609b5764f1c │ │ ├── efc86e1b3904898c1a28f43647d38d00 │ │ └── eff1e939957d5562728dcbc8d5b35ae3 │ ├── f0 │ │ ├── f0142839104fa9b8750870c9d2849ce1 │ │ ├── f016234bd0ba60c7e43e34860eeea7de │ │ ├── f0622964a699b10a67446872c46829cd │ │ ├── f07117bf3cd83f0713b36bf2192b2aeb │ │ ├── f0b779192fc2488c3021433badfa3379 │ │ ├── f0bf1880222a39e53d130fa76a0e0995 │ │ ├── f0dc07f28f4350e2eae77797d5608b45 │ │ ├── f0e30de52150b6bae3cab707c4d89c24 │ │ └── f0fa741c5eeb59c94ff96b8346a2243d │ ├── f1 │ │ ├── f103203756058dd3a877365b702e8a86 │ │ ├── f10396213f08dff3b34491a846a3befa │ │ ├── f10e606d2e4e5975a26324e6bef2d8b9 │ │ ├── f11df14085c9adbb413a8a69273236ca │ │ ├── f12cf7675f47301e80afc47ebced1619 │ │ ├── f142c2a169760861f913bfc89d3426c4 │ │ ├── f144f5caa1d888017a5b93bc78bf5528 │ │ ├── f1954326398e6d25aee97ed90d3ee7d5 │ │ └── f1ff3b12e202cb5338c6108a743d5e97 │ ├── f2 │ │ ├── f21598b0cdfbb3d4f0b5fbfcafd9995d │ │ ├── f237f7715e1dcb2b180e2f4dd9a4b6fa │ │ ├── f24205dd2426585b393e4cea7c5c93a6 │ │ ├── f244eeb24e3f81dcc487e5c7fead2c7e │ │ ├── f24de2a594e6f4f6ea654af22510fd00 │ │ ├── f27b79827eb6ce6ac46b0f92687c2a6e │ │ ├── f2979b8d9f87140f36fdd803927e9293 │ │ ├── f2a6ea2da762b348afbb0cdcd03d0a8f │ │ ├── f2ca8b7b7cac32f3354cf10ba7fb2f15 │ │ ├── f2d45db06c36b69f9304aa5953355e5f │ │ ├── f2da55a513dcd6dc3b6a6bec4c72d1c8 │ │ └── f2ee301272abd325b4ffafa9ca99e7a7 │ ├── f3 │ │ ├── f314534b137f97b036b54408a7a24969 │ │ ├── f31b7d323e0477ddb64d1ca391d2e354 │ │ ├── f3301a0b69b80ad363111bdd80dd2f3c │ │ ├── f3540d7ad6bbde73f512b6530a5aca35 │ │ ├── f3807c7845c2eed6b014764ec8b2f8ee │ │ ├── f3bcea1022ea7576f6a71542beaf6168 │ │ ├── f3c6a9f6815e482c63bd36cdd89d0dbc │ │ ├── f3e36a178daa52add1dc0f89240b7c9b │ │ └── f3fb103377d221f5e25335ed5e951071 │ ├── f4 │ │ ├── f4375e9fe9b736591974eb178156b151 │ │ ├── f43e28d0b30fc03ee148a8bb86c36394 │ │ ├── f47effda96e2e661785fb1d7bfd85f3a │ │ ├── f491b65257354e8edd6a9ca38096ec9c │ │ ├── f4a984674ddc78d80cd18d1fa83b8397 │ │ ├── f4b43e0d3705109614f99f7bb74b7fcf │ │ └── f4f5bd657a8ed08d86f1108e53ca145e │ ├── f5 │ │ ├── f5153c8596604f177b677792fd5f8904 │ │ ├── f518edd04949cba2c9cd61ddbee0c862 │ │ ├── f54772e64f1bd6a80e99c7d9febba0b8 │ │ ├── f54a28558f86a44ea241012213e6057a │ │ ├── f5777551d1a3293836ab415d1a670946 │ │ ├── f5b411f1453287584a8d53336f69e4a7 │ │ ├── f5b67c9138d2492808cbdff580c8cfc7 │ │ ├── f5bb1ce5f4ca65435e833d9bdca7bd9f │ │ ├── f5c4cd473de44cab9e1e3aeb79c7ec1f │ │ └── f5f25321e8d5b4b9de208d796c322bd3 │ ├── f6 │ │ ├── f6627d27ee9199492c2a668b37f83770 │ │ ├── f696084108a49aa9913d6bfb9002dd9f │ │ ├── f6974a6cd5f1e6cb27bea8c692fb5ed1 │ │ ├── f6beb2b80a66fd9f27797b39c61fbffc │ │ ├── f6cdd99356b580e6484fe4d6769dabd6 │ │ ├── f6e4f58a02e756b1fa55c09438cd82d7 │ │ └── f6e8a752f22144a9dd3b84ec5c97caa6 │ ├── f7 │ │ ├── f71592ee98dd47cb906c889b8fc2cec5 │ │ ├── f715adeb6d848cf948eb5a34efb31699 │ │ ├── f728be4ebb6e9e1abc567bf697d89e45 │ │ ├── f72af10ac44b9344db25a58d38d4a355 │ │ ├── f749e1d17e4f43ed895ae757f9bc6b8c │ │ ├── f75672c913ff7e2f5c8902110e0d53b0 │ │ ├── f767ccfe8f77b022fecbc537b0af8920 │ │ ├── f76a80c11a6f099df429ddbc8f2353c3 │ │ ├── f7a0851087d9db726fc42d4f8a86e9cd │ │ ├── f7b4aaa222b915d257366289b1e99281 │ │ ├── f7bc76c117c373f640d5caa90f26fd6c │ │ ├── f7bdc5fdec54e0d0eb96383d3f3f1972 │ │ ├── f7bfe9831190d105d7a18f2ec5d47a56 │ │ ├── f7e06a72bcac921d0d82a6356e2133c2 │ │ ├── f7e21d295a3073e52050623af5363c43 │ │ ├── f7eb64b6e8bc1f8a9f1a1f4b40907e00 │ │ └── f7f37acab962e2e7924e37bb6e00a760 │ ├── f8 │ │ ├── f8169e1641c89ff5fa7d5b387aefd0c9 │ │ ├── f827456723a9807c3b68a3046c9d5a42 │ │ ├── f83afcb6422fe7893bec97eb8e5f3e85 │ │ ├── f86d73ed53f93f79e566cbeffa9b1cf6 │ │ ├── f88b8fc7a8f780ac38247e60aef49dc2 │ │ ├── f8b031d46fc55c92a34dd110fdd6cb86 │ │ ├── f8e246762279323027e55f48c7b4905e │ │ └── f8f789bb3388f42076f7e878a776864c │ ├── f9 │ │ ├── f902b87f3e2b3ce3a8cafe55132ef066 │ │ ├── f90401ba98ad0d677394070ca0399037 │ │ ├── f906951e5f58e183bb0e723e8c98e0a1 │ │ ├── f9341ea0bf8828d976f77c37fe47703c │ │ ├── f95d12f4ae6778473177323912ed0278 │ │ ├── f95f90201d627ae40e47b7aae7bdadaf │ │ ├── f99097c39879cb8a3dae04f684a1be61 │ │ ├── f990f24887038087fac00d63811e3537 │ │ ├── f9a18453c88c4a7cc18f042e6e84a5d4 │ │ ├── f9b68dc35e3496677ac1cb3b352855bc │ │ ├── f9d483a41204cd9c55583d5bf06d0830 │ │ ├── f9e1ed303e864d49938a17d4e0f9f34f │ │ └── f9e73f5a6611975b638a5761ad9adc23 │ ├── fa │ │ ├── fa0e3c81a10e70f8a4bdb246cfad6e54 │ │ ├── fa5a5c84eb958b3cea327f3817f4cdaa │ │ ├── faab5d4617a92deb6ca334002f05b80c │ │ ├── facc5186bbd6f9e7e214ce1cf61f9809 │ │ ├── faccb1bde65156b0b24c7c777015c7a7 │ │ ├── fad1cfb62c993d0572fc7a2c3c2dc3d3 │ │ └── faee4eb8746a58f695ff657d24f158d2 │ ├── fb │ │ ├── fb0bed6c40588d44d3fdf3448efbe9e2 │ │ ├── fb0ddb650a3daafe79d346e86a8e5f54 │ │ ├── fb276afb907db287023ca121ee629ba9 │ │ ├── fb352c8ced1973852caaabeff782cb22 │ │ ├── fb87b64f5906297d6b7e1c40a0da8c3c │ │ ├── fba7dc62970b0e85fa353d6cf7fbd6ee │ │ ├── fba82620f97048d3fd09f0fe2ae72373 │ │ ├── fbc8401a269552225ecf71b5a02267a7 │ │ └── fbd86cb908f2ac0d50948fd83b95cdb6 │ ├── fc │ │ ├── fc08f2fc8a66413a9492a20c59e0ab5e │ │ ├── fc3bc54c42d0077f93800cd25cea52eb │ │ ├── fc4810964ebe7b3e986634cc235b3a0d │ │ ├── fc4b8be296ff38969d790baeb8c221f2 │ │ ├── fc5531ea13b6804603d06aec2b1fe4f9 │ │ ├── fc581ad9ff615cb39344b7cd4d09b151 │ │ ├── fc78e5ce6ba338425dcbf335acbe9a75 │ │ ├── fc89e4c7753e110a579e4272810e148b │ │ ├── fcd51959d68ec717f4a8a116b589fd88 │ │ ├── fce48b34516892b7e81b6c699603d3dd │ │ ├── fcf77862beea99cc3ce74dae2962c8e5 │ │ └── fcfc38ba2916460405bb65c169b01664 │ ├── fd │ │ ├── fd03fedafb48296823924ffbe4b9d98e │ │ ├── fd2531463f66bdac9da602720b2c0687 │ │ ├── fd381b8373cda744b8fa8a93e76eacd9 │ │ ├── fd40c710a94d873e2aedce0c7863c98a │ │ ├── fd4e3eb9ad2e8c239270788ad75c4266 │ │ ├── fd56a6aec89bb37b21efdefa6faca654 │ │ ├── fd80b35339b901c307256b585a40020b │ │ ├── fdcda2e05da2991fd585b6786ad38144 │ │ └── fddc4ae73cf610373151215376c2ae99 │ ├── fe │ │ ├── fe09eab7bff1ab2f05c52eaf6578c8e1 │ │ ├── fe0cb05b7edfd07ea48bd52f9dc1f9d5 │ │ ├── fe1cebd143e9b8bda0c900e51c81300d │ │ ├── fe260e82350769b6640ab0c453f9e7b4 │ │ ├── fe2f44e0d1c9428de2a6bcd3ee37026d │ │ ├── fe30c97c39347e286c048c328845e37d │ │ ├── fe3dea5a4163dba02c6d1a779c2a17f9 │ │ ├── fe46354e2c761b951729651e3459dd94 │ │ ├── fe5d4b06ee9bed6b707318fdd7ae97fe │ │ ├── fe7400c43bd4c39464342a13d45a8f6a │ │ ├── fe80e04804b276494c00b582115de90d │ │ ├── fe91d8d0a40f7ce79bc9f2ac0881edfd │ │ ├── feaee63610a35054aa9a96a8d7447af0 │ │ ├── feb4fbb2f33ac42423d943ea1def0f08 │ │ ├── febd3aa0e72622782c17458b4ac491bf │ │ └── fec1857b2cc1e85e7583767df2fac5e9 │ └── ff │ │ ├── ff027398ebdf93c588feb932ee7a08d2 │ │ ├── ff1c683ceae683fbadce72df23026aaa │ │ ├── ff1e2d4bfe2043af8f69faaaa86aecdd │ │ ├── ff394bb59118ed51ce56b7ddfcf8077c │ │ ├── ff478e75f2d044330bddd9f0b9e08c96 │ │ ├── ff514cbe7c7cd363838ca23f091cd132 │ │ ├── ff57546e85a43f8ec67cab84ac1e7011 │ │ ├── ff66eeeac10dd17810076e51ec573ea4 │ │ ├── ff8d10c2ad3bb4f9f12d5c543bc511f3 │ │ ├── ff8ea46d7aa210a73a6dca22b3e5174f │ │ ├── ffa6365c54331e700e3e4562630a89d1 │ │ ├── ffacad1f9bb795611b80c15a945a606b │ │ ├── ffcb1fb5ad3d4c9b5d90170f7956ab2a │ │ ├── ffccea350927d524842939814b18ba46 │ │ ├── ffd8592539ed220e28d8241cb9778faa │ │ ├── ffdd31b23855557240e5c8a15ed1ff17 │ │ └── ffefc6157ce787eb6415930343bc7ce0 ├── BuildPlayer.prefs ├── BuildSettings.asset ├── CurrentLayout-default.dwlt ├── EditorOnlyScriptingSettings.json ├── EditorOnlyVirtualTextureState.json ├── EditorSnapSettings.asset ├── EditorUserBuildSettings.asset ├── InspectorExpandedItems.asset ├── LastSceneManagerSetup.txt ├── LibraryFormatVersion.txt ├── MonoManager.asset ├── PackageCache │ ├── com.unity.collab-proxy@1.13.5 │ │ ├── .Resources │ │ │ ├── .collabattributes │ │ │ └── .collabignore │ │ ├── .gitattributes │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── Documentation~ │ │ │ ├── ExistingPlasticRepo.md │ │ │ ├── Faq.md │ │ │ ├── Glossary.md │ │ │ ├── KnownIssues.md │ │ │ ├── MigrateCollab.md │ │ │ ├── NewPlasticRepo.md │ │ │ ├── OverviewOfFeatures.md │ │ │ ├── PlasticForGitUsers.md │ │ │ ├── QuickStartGuide.md │ │ │ ├── StartPlasticForUnity.md │ │ │ ├── StartWithCollab.md │ │ │ ├── SwitchCollabAndPlastic.md │ │ │ ├── TableOfContents.md │ │ │ ├── images │ │ │ │ ├── AccessingPlastic.png │ │ │ │ ├── AdvancedFeatures.png │ │ │ │ ├── AutomaticSetup.png │ │ │ │ ├── Compatibility.png │ │ │ │ ├── FileHistory.png │ │ │ │ ├── GameSceneExample.png │ │ │ │ ├── GamesSceneExample.png │ │ │ │ ├── GearIconOptions.png │ │ │ │ ├── IncomingChanges.gif │ │ │ │ ├── InspectorWindow.png │ │ │ │ ├── Onboarding.png │ │ │ │ ├── PendingChanges.png │ │ │ │ ├── ProjectHistory.png │ │ │ │ ├── ProjectView.gif │ │ │ │ ├── SwitchCollab.png │ │ │ │ ├── TurnOffPlastic.png │ │ │ │ └── plasticHub.gif │ │ │ └── index.md │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Collaborate.meta │ │ │ ├── Collaborate │ │ │ │ ├── Assets.meta │ │ │ │ ├── Assets │ │ │ │ │ ├── Icons.meta │ │ │ │ │ ├── Icons │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── README.md.meta │ │ │ │ │ │ ├── added-file-dark.png │ │ │ │ │ │ ├── added-file-dark.png.meta │ │ │ │ │ │ ├── added-file-dark@2x.png │ │ │ │ │ │ ├── added-file-dark@2x.png.meta │ │ │ │ │ │ ├── added-file-light.png │ │ │ │ │ │ ├── added-file-light.png.meta │ │ │ │ │ │ ├── added-file-light@2x.png │ │ │ │ │ │ ├── added-file-light@2x.png.meta │ │ │ │ │ │ ├── back-dark.png │ │ │ │ │ │ ├── back-dark.png.meta │ │ │ │ │ │ ├── back-dark@2x.png │ │ │ │ │ │ ├── back-dark@2x.png.meta │ │ │ │ │ │ ├── back-light.png │ │ │ │ │ │ ├── back-light.png.meta │ │ │ │ │ │ ├── back-light@2x.png │ │ │ │ │ │ ├── back-light@2x.png.meta │ │ │ │ │ │ ├── choose-mine-dark.png │ │ │ │ │ │ ├── choose-mine-dark.png.meta │ │ │ │ │ │ ├── choose-mine-dark@2x.png │ │ │ │ │ │ ├── choose-mine-dark@2x.png.meta │ │ │ │ │ │ ├── choose-mine-light.png │ │ │ │ │ │ ├── choose-mine-light.png.meta │ │ │ │ │ │ ├── choose-mine-light@2x.png │ │ │ │ │ │ ├── choose-mine-light@2x.png.meta │ │ │ │ │ │ ├── choose-remote-dark.png │ │ │ │ │ │ ├── choose-remote-dark.png.meta │ │ │ │ │ │ ├── choose-remote-dark@2x.png │ │ │ │ │ │ ├── choose-remote-dark@2x.png.meta │ │ │ │ │ │ ├── choose-remote-light.png │ │ │ │ │ │ ├── choose-remote-light.png.meta │ │ │ │ │ │ ├── choose-remote-light@2x.png │ │ │ │ │ │ ├── choose-remote-light@2x.png.meta │ │ │ │ │ │ ├── clear-dark.png │ │ │ │ │ │ ├── clear-dark.png.meta │ │ │ │ │ │ ├── clear-dark@2x.png │ │ │ │ │ │ ├── clear-dark@2x.png.meta │ │ │ │ │ │ ├── clear-light.png │ │ │ │ │ │ ├── clear-light.png.meta │ │ │ │ │ │ ├── clear-light@2x.png │ │ │ │ │ │ ├── clear-light@2x.png.meta │ │ │ │ │ │ ├── collaborate-available-changes-dark.png │ │ │ │ │ │ ├── collaborate-available-changes-dark.png.meta │ │ │ │ │ │ ├── collaborate-available-changes-dark@2x.png │ │ │ │ │ │ ├── collaborate-available-changes-dark@2x.png.meta │ │ │ │ │ │ ├── collaborate-available-changes-light.png │ │ │ │ │ │ ├── collaborate-available-changes-light.png.meta │ │ │ │ │ │ ├── collaborate-available-changes-light@2x.png │ │ │ │ │ │ ├── collaborate-available-changes-light@2x.png.meta │ │ │ │ │ │ ├── collaborate-dark.png │ │ │ │ │ │ ├── collaborate-dark.png.meta │ │ │ │ │ │ ├── collaborate-dark@2x.png │ │ │ │ │ │ ├── collaborate-dark@2x.png.meta │ │ │ │ │ │ ├── collaborate-done-dark.png │ │ │ │ │ │ ├── collaborate-done-dark.png.meta │ │ │ │ │ │ ├── collaborate-done-dark@2x.png │ │ │ │ │ │ ├── collaborate-done-dark@2x.png.meta │ │ │ │ │ │ ├── collaborate-done-light.png │ │ │ │ │ │ ├── collaborate-done-light.png.meta │ │ │ │ │ │ ├── collaborate-done-light@2x.png │ │ │ │ │ │ ├── collaborate-done-light@2x.png.meta │ │ │ │ │ │ ├── collaborate-error-dark.png │ │ │ │ │ │ ├── collaborate-error-dark.png.meta │ │ │ │ │ │ ├── collaborate-error-dark@2x.png │ │ │ │ │ │ ├── collaborate-error-dark@2x.png.meta │ │ │ │ │ │ ├── collaborate-error-light.png │ │ │ │ │ │ ├── collaborate-error-light.png.meta │ │ │ │ │ │ ├── collaborate-error-light@2x.png │ │ │ │ │ │ ├── collaborate-error-light@2x.png.meta │ │ │ │ │ │ ├── collaborate-incoming-dark.png │ │ │ │ │ │ ├── collaborate-incoming-dark.png.meta │ │ │ │ │ │ ├── collaborate-incoming-dark@2x.png │ │ │ │ │ │ ├── collaborate-incoming-dark@2x.png.meta │ │ │ │ │ │ ├── collaborate-incoming-light.png │ │ │ │ │ │ ├── collaborate-incoming-light.png.meta │ │ │ │ │ │ ├── collaborate-incoming-light@2x.png │ │ │ │ │ │ ├── collaborate-incoming-light@2x.png.meta │ │ │ │ │ │ ├── collaborate-light.png │ │ │ │ │ │ ├── collaborate-light.png.meta │ │ │ │ │ │ ├── collaborate-light@2x.png │ │ │ │ │ │ ├── collaborate-light@2x.png.meta │ │ │ │ │ │ ├── collaborate-offline-dark.png │ │ │ │ │ │ ├── collaborate-offline-dark.png.meta │ │ │ │ │ │ ├── collaborate-offline-dark@2x.png │ │ │ │ │ │ ├── collaborate-offline-dark@2x.png.meta │ │ │ │ │ │ ├── collaborate-offline-light.png │ │ │ │ │ │ ├── collaborate-offline-light.png.meta │ │ │ │ │ │ ├── collaborate-offline-light@2x.png │ │ │ │ │ │ ├── collaborate-offline-light@2x.png.meta │ │ │ │ │ │ ├── collaborate-progress-dark.png │ │ │ │ │ │ ├── collaborate-progress-dark.png.meta │ │ │ │ │ │ ├── collaborate-progress-dark@2x.png │ │ │ │ │ │ ├── collaborate-progress-dark@2x.png.meta │ │ │ │ │ │ ├── collaborate-progress-light.png │ │ │ │ │ │ ├── collaborate-progress-light.png.meta │ │ │ │ │ │ ├── collaborate-progress-light@2x.png │ │ │ │ │ │ ├── collaborate-progress-light@2x.png.meta │ │ │ │ │ │ ├── collaborate-warning-dark.png │ │ │ │ │ │ ├── collaborate-warning-dark.png.meta │ │ │ │ │ │ ├── collaborate-warning-dark@2x.png │ │ │ │ │ │ ├── collaborate-warning-dark@2x.png.meta │ │ │ │ │ │ ├── collaborate-warning-light.png │ │ │ │ │ │ ├── collaborate-warning-light.png.meta │ │ │ │ │ │ ├── collaborate-warning-light@2x.png │ │ │ │ │ │ ├── collaborate-warning-light@2x.png.meta │ │ │ │ │ │ ├── conflicted-file-dark.png │ │ │ │ │ │ ├── conflicted-file-dark.png.meta │ │ │ │ │ │ ├── conflicted-file-dark@2x.png │ │ │ │ │ │ ├── conflicted-file-dark@2x.png.meta │ │ │ │ │ │ ├── conflicted-file-light.png │ │ │ │ │ │ ├── conflicted-file-light.png.meta │ │ │ │ │ │ ├── conflicted-file-light@2x.png │ │ │ │ │ │ ├── conflicted-file-light@2x.png.meta │ │ │ │ │ │ ├── deleted-file-dark.png │ │ │ │ │ │ ├── deleted-file-dark.png.meta │ │ │ │ │ │ ├── deleted-file-dark@2x.png │ │ │ │ │ │ ├── deleted-file-dark@2x.png.meta │ │ │ │ │ │ ├── deleted-file-light.png │ │ │ │ │ │ ├── deleted-file-light.png.meta │ │ │ │ │ │ ├── deleted-file-light@2x.png │ │ │ │ │ │ ├── deleted-file-light@2x.png.meta │ │ │ │ │ │ ├── diff-dark.png │ │ │ │ │ │ ├── diff-dark.png.meta │ │ │ │ │ │ ├── diff-dark@2x.png │ │ │ │ │ │ ├── diff-dark@2x.png.meta │ │ │ │ │ │ ├── diff-light.png │ │ │ │ │ │ ├── diff-light.png.meta │ │ │ │ │ │ ├── diff-light@2x.png │ │ │ │ │ │ ├── diff-light@2x.png.meta │ │ │ │ │ │ ├── edited-file-dark.png │ │ │ │ │ │ ├── edited-file-dark.png.meta │ │ │ │ │ │ ├── edited-file-dark@2x.png │ │ │ │ │ │ ├── edited-file-dark@2x.png.meta │ │ │ │ │ │ ├── edited-file-light.png │ │ │ │ │ │ ├── edited-file-light.png.meta │ │ │ │ │ │ ├── edited-file-light@2x.png │ │ │ │ │ │ ├── edited-file-light@2x.png.meta │ │ │ │ │ │ ├── loading-dark.png │ │ │ │ │ │ ├── loading-dark.png.meta │ │ │ │ │ │ ├── loading-dark@2x.png │ │ │ │ │ │ ├── loading-dark@2x.png.meta │ │ │ │ │ │ ├── loading-light.png │ │ │ │ │ │ ├── loading-light.png.meta │ │ │ │ │ │ ├── loading-light@2x.png │ │ │ │ │ │ ├── loading-light@2x.png.meta │ │ │ │ │ │ ├── merge-conflicts-dark.png │ │ │ │ │ │ ├── merge-conflicts-dark.png.meta │ │ │ │ │ │ ├── merge-conflicts-dark@2x.png │ │ │ │ │ │ ├── merge-conflicts-dark@2x.png.meta │ │ │ │ │ │ ├── merge-conflicts-light.png │ │ │ │ │ │ ├── merge-conflicts-light.png.meta │ │ │ │ │ │ ├── merge-conflicts-light@2x.png │ │ │ │ │ │ ├── merge-conflicts-light@2x.png.meta │ │ │ │ │ │ ├── merge-dark.png │ │ │ │ │ │ ├── merge-dark.png.meta │ │ │ │ │ │ ├── merge-dark@2x.png │ │ │ │ │ │ ├── merge-dark@2x.png.meta │ │ │ │ │ │ ├── merge-light.png │ │ │ │ │ │ ├── merge-light.png.meta │ │ │ │ │ │ ├── merge-light@2x.png │ │ │ │ │ │ ├── merge-light@2x.png.meta │ │ │ │ │ │ ├── more-vert-dark.png │ │ │ │ │ │ ├── more-vert-dark.png.meta │ │ │ │ │ │ ├── more-vert-dark@2x.png │ │ │ │ │ │ ├── more-vert-dark@2x.png.meta │ │ │ │ │ │ ├── more-vert-light.png │ │ │ │ │ │ ├── more-vert-light.png.meta │ │ │ │ │ │ ├── more-vert-light@2x.png │ │ │ │ │ │ ├── more-vert-light@2x.png.meta │ │ │ │ │ │ ├── moved-file-dark.png │ │ │ │ │ │ ├── moved-file-dark.png.meta │ │ │ │ │ │ ├── moved-file-dark@2x.png │ │ │ │ │ │ ├── moved-file-dark@2x.png.meta │ │ │ │ │ │ ├── moved-file-light.png │ │ │ │ │ │ ├── moved-file-light.png.meta │ │ │ │ │ │ ├── moved-file-light@2x.png │ │ │ │ │ │ ├── moved-file-light@2x.png.meta │ │ │ │ │ │ ├── publish-dark.png │ │ │ │ │ │ ├── publish-dark.png.meta │ │ │ │ │ │ ├── publish-dark@2x.png │ │ │ │ │ │ ├── publish-dark@2x.png.meta │ │ │ │ │ │ ├── publish-light.png │ │ │ │ │ │ ├── publish-light.png.meta │ │ │ │ │ │ ├── publish-light@2x.png │ │ │ │ │ │ ├── publish-light@2x.png.meta │ │ │ │ │ │ ├── revert-asset-dark.png │ │ │ │ │ │ ├── revert-asset-dark.png.meta │ │ │ │ │ │ ├── revert-asset-dark@2x.png │ │ │ │ │ │ ├── revert-asset-dark@2x.png.meta │ │ │ │ │ │ ├── revert-asset-light.png │ │ │ │ │ │ ├── revert-asset-light.png.meta │ │ │ │ │ │ ├── revert-asset-light@2x.png │ │ │ │ │ │ ├── revert-asset-light@2x.png.meta │ │ │ │ │ │ ├── search-dark.png │ │ │ │ │ │ ├── search-dark.png.meta │ │ │ │ │ │ ├── search-dark@2x.png │ │ │ │ │ │ ├── search-dark@2x.png.meta │ │ │ │ │ │ ├── search-light.png │ │ │ │ │ │ ├── search-light.png.meta │ │ │ │ │ │ ├── search-light@2x.png │ │ │ │ │ │ ├── search-light@2x.png.meta │ │ │ │ │ │ ├── show-dark.png │ │ │ │ │ │ ├── show-dark.png.meta │ │ │ │ │ │ ├── show-dark@2x.png │ │ │ │ │ │ ├── show-dark@2x.png.meta │ │ │ │ │ │ ├── show-light.png │ │ │ │ │ │ ├── show-light.png.meta │ │ │ │ │ │ ├── show-light@2x.png │ │ │ │ │ │ ├── show-light@2x.png.meta │ │ │ │ │ │ ├── status-error-dark.png │ │ │ │ │ │ ├── status-error-dark.png.meta │ │ │ │ │ │ ├── status-error-dark@2x.png │ │ │ │ │ │ ├── status-error-dark@2x.png.meta │ │ │ │ │ │ ├── status-error-light.png │ │ │ │ │ │ ├── status-error-light.png.meta │ │ │ │ │ │ ├── status-error-light@2x.png │ │ │ │ │ │ ├── status-error-light@2x.png.meta │ │ │ │ │ │ ├── status-info-dark.png │ │ │ │ │ │ ├── status-info-dark.png.meta │ │ │ │ │ │ ├── status-info-dark@2x.png │ │ │ │ │ │ ├── status-info-dark@2x.png.meta │ │ │ │ │ │ ├── status-info-light.png │ │ │ │ │ │ ├── status-info-light.png.meta │ │ │ │ │ │ ├── status-info-light@2x.png │ │ │ │ │ │ ├── status-info-light@2x.png.meta │ │ │ │ │ │ ├── status-warning-dark.png │ │ │ │ │ │ ├── status-warning-dark.png.meta │ │ │ │ │ │ ├── status-warning-dark@2x.png │ │ │ │ │ │ ├── status-warning-dark@2x.png.meta │ │ │ │ │ │ ├── status-warning-light.png │ │ │ │ │ │ ├── status-warning-light.png.meta │ │ │ │ │ │ ├── status-warning-light@2x.png │ │ │ │ │ │ ├── status-warning-light@2x.png.meta │ │ │ │ │ │ ├── undo-dark.png │ │ │ │ │ │ ├── undo-dark.png.meta │ │ │ │ │ │ ├── undo-dark@2x.png │ │ │ │ │ │ ├── undo-dark@2x.png.meta │ │ │ │ │ │ ├── undo-light.png │ │ │ │ │ │ ├── undo-light.png.meta │ │ │ │ │ │ ├── undo-light@2x.png │ │ │ │ │ │ └── undo-light@2x.png.meta │ │ │ │ │ ├── Layouts.meta │ │ │ │ │ ├── Layouts │ │ │ │ │ │ ├── AlertBox.uxml │ │ │ │ │ │ ├── AlertBox.uxml.meta │ │ │ │ │ │ ├── BaseChangeListElement.uxml │ │ │ │ │ │ ├── BaseChangeListElement.uxml.meta │ │ │ │ │ │ ├── ChangesGroupHeader.uxml │ │ │ │ │ │ ├── ChangesGroupHeader.uxml.meta │ │ │ │ │ │ ├── ChangesTabPageView.uxml │ │ │ │ │ │ ├── ChangesTabPageView.uxml.meta │ │ │ │ │ │ ├── ErrorPageView.uxml │ │ │ │ │ │ ├── ErrorPageView.uxml.meta │ │ │ │ │ │ ├── HistoryEntryComponent.uxml │ │ │ │ │ │ ├── HistoryEntryComponent.uxml.meta │ │ │ │ │ │ ├── HistoryTabPageView.uxml │ │ │ │ │ │ ├── HistoryTabPageView.uxml.meta │ │ │ │ │ │ ├── ListNotice.uxml │ │ │ │ │ │ ├── ListNotice.uxml.meta │ │ │ │ │ │ ├── MainPageView.uxml │ │ │ │ │ │ ├── MainPageView.uxml.meta │ │ │ │ │ │ ├── Paginator.uxml │ │ │ │ │ │ ├── Paginator.uxml.meta │ │ │ │ │ │ ├── ProgressView.uxml │ │ │ │ │ │ ├── ProgressView.uxml.meta │ │ │ │ │ │ ├── StartPageView.uxml │ │ │ │ │ │ ├── StartPageView.uxml.meta │ │ │ │ │ │ ├── TopBar.uxml │ │ │ │ │ │ ├── TopBar.uxml.meta │ │ │ │ │ │ ├── main-window.uxml │ │ │ │ │ │ └── main-window.uxml.meta │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.meta │ │ │ │ │ ├── StringAssets.cs │ │ │ │ │ ├── StringAssets.cs.meta │ │ │ │ │ ├── Styles.meta │ │ │ │ │ ├── Styles │ │ │ │ │ │ ├── AlertBox.uss │ │ │ │ │ │ ├── AlertBox.uss.meta │ │ │ │ │ │ ├── BaseChangeListElement.uss │ │ │ │ │ │ ├── BaseChangeListElement.uss.meta │ │ │ │ │ │ ├── BetterTextField.uss │ │ │ │ │ │ ├── BetterTextField.uss.meta │ │ │ │ │ │ ├── ChangesGroupHeader.uss │ │ │ │ │ │ ├── ChangesGroupHeader.uss.meta │ │ │ │ │ │ ├── ChangesTabPageView.uss │ │ │ │ │ │ ├── ChangesTabPageView.uss.meta │ │ │ │ │ │ ├── FloatingDialogue.uss │ │ │ │ │ │ ├── FloatingDialogue.uss.meta │ │ │ │ │ │ ├── FloatingMenu.uss │ │ │ │ │ │ ├── FloatingMenu.uss.meta │ │ │ │ │ │ ├── FloatingMenuItem.uss │ │ │ │ │ │ ├── FloatingMenuItem.uss.meta │ │ │ │ │ │ ├── HistoryEntryComponent.uss │ │ │ │ │ │ ├── HistoryEntryComponent.uss.meta │ │ │ │ │ │ ├── IconButton.uss │ │ │ │ │ │ ├── IconButton.uss.meta │ │ │ │ │ │ ├── IconTextButton.uss │ │ │ │ │ │ ├── IconTextButton.uss.meta │ │ │ │ │ │ ├── ListNotice.uss │ │ │ │ │ │ ├── ListNotice.uss.meta │ │ │ │ │ │ ├── MainPageView.uss │ │ │ │ │ │ ├── MainPageView.uss.meta │ │ │ │ │ │ ├── Paginator.uss │ │ │ │ │ │ ├── Paginator.uss.meta │ │ │ │ │ │ ├── ProgressView.uss │ │ │ │ │ │ ├── ProgressView.uss.meta │ │ │ │ │ │ ├── SearchBar.uss │ │ │ │ │ │ ├── SearchBar.uss.meta │ │ │ │ │ │ ├── StartPageView.uss │ │ │ │ │ │ ├── StartPageView.uss.meta │ │ │ │ │ │ ├── TabView.uss │ │ │ │ │ │ ├── TabView.uss.meta │ │ │ │ │ │ ├── TextButton.uss │ │ │ │ │ │ ├── TextButton.uss.meta │ │ │ │ │ │ ├── ToggleableChangeListElement.uss │ │ │ │ │ │ ├── ToggleableChangeListElement.uss.meta │ │ │ │ │ │ ├── TopBar.uss │ │ │ │ │ │ ├── TopBar.uss.meta │ │ │ │ │ │ ├── styles.uss │ │ │ │ │ │ └── styles.uss.meta │ │ │ │ │ ├── UiConstants.cs │ │ │ │ │ └── UiConstants.cs.meta │ │ │ │ ├── Common.meta │ │ │ │ ├── Common │ │ │ │ │ ├── ArrayContainer.cs │ │ │ │ │ ├── ArrayContainer.cs.meta │ │ │ │ │ ├── LocationAttribute.cs │ │ │ │ │ ├── LocationAttribute.cs.meta │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.meta │ │ │ │ │ ├── ScriptableObjectSingleton.cs │ │ │ │ │ ├── ScriptableObjectSingleton.cs.meta │ │ │ │ │ ├── SerializableDictionary.cs │ │ │ │ │ ├── SerializableDictionary.cs.meta │ │ │ │ │ ├── StringArrayContainer.cs │ │ │ │ │ └── StringArrayContainer.cs.meta │ │ │ │ ├── Components.meta │ │ │ │ ├── Components │ │ │ │ │ ├── AdapterListView.cs │ │ │ │ │ ├── AdapterListView.cs.meta │ │ │ │ │ ├── AlertBox.cs │ │ │ │ │ ├── AlertBox.cs.meta │ │ │ │ │ ├── BetterTextField.cs │ │ │ │ │ ├── BetterTextField.cs.meta │ │ │ │ │ ├── ChangeEntryGroup.cs │ │ │ │ │ ├── ChangeEntryGroup.cs.meta │ │ │ │ │ ├── ChangeListElements.meta │ │ │ │ │ ├── ChangeListElements │ │ │ │ │ │ ├── BaseChangeListElement.cs │ │ │ │ │ │ ├── BaseChangeListElement.cs.meta │ │ │ │ │ │ ├── ChangeListElement.cs │ │ │ │ │ │ ├── ChangeListElement.cs.meta │ │ │ │ │ │ ├── ConflictedChangeListElement.cs │ │ │ │ │ │ ├── ConflictedChangeListElement.cs.meta │ │ │ │ │ │ ├── HistoryChangeListElement.cs │ │ │ │ │ │ ├── HistoryChangeListElement.cs.meta │ │ │ │ │ │ ├── ToggleableChangeListElement.cs │ │ │ │ │ │ └── ToggleableChangeListElement.cs.meta │ │ │ │ │ ├── ChangesGroupHeader.cs │ │ │ │ │ ├── ChangesGroupHeader.cs.meta │ │ │ │ │ ├── ErrorPageView.cs │ │ │ │ │ ├── ErrorPageView.cs.meta │ │ │ │ │ ├── HistoryEntryComponent.cs │ │ │ │ │ ├── HistoryEntryComponent.cs.meta │ │ │ │ │ ├── IconButton.cs │ │ │ │ │ ├── IconButton.cs.meta │ │ │ │ │ ├── IconTextButton.cs │ │ │ │ │ ├── IconTextButton.cs.meta │ │ │ │ │ ├── ListNotice.cs │ │ │ │ │ ├── ListNotice.cs.meta │ │ │ │ │ ├── Menus.meta │ │ │ │ │ ├── Menus │ │ │ │ │ │ ├── FloatingDialogue.cs │ │ │ │ │ │ ├── FloatingDialogue.cs.meta │ │ │ │ │ │ ├── FloatingMenu.cs │ │ │ │ │ │ ├── FloatingMenu.cs.meta │ │ │ │ │ │ ├── FloatingMenuItem.cs │ │ │ │ │ │ └── FloatingMenuItem.cs.meta │ │ │ │ │ ├── PageComponent.cs │ │ │ │ │ ├── PageComponent.cs.meta │ │ │ │ │ ├── Paginator.cs │ │ │ │ │ ├── Paginator.cs.meta │ │ │ │ │ ├── ProgressView.cs │ │ │ │ │ ├── ProgressView.cs.meta │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.meta │ │ │ │ │ ├── SearchBar.cs │ │ │ │ │ ├── SearchBar.cs.meta │ │ │ │ │ ├── TabPageComponent.cs │ │ │ │ │ ├── TabPageComponent.cs.meta │ │ │ │ │ ├── TabView.cs │ │ │ │ │ ├── TabView.cs.meta │ │ │ │ │ ├── TextButton.cs │ │ │ │ │ ├── TextButton.cs.meta │ │ │ │ │ ├── TopBar.cs │ │ │ │ │ └── TopBar.cs.meta │ │ │ │ ├── EditorGameService.meta │ │ │ │ ├── EditorGameService │ │ │ │ │ ├── Analytics.meta │ │ │ │ │ ├── Analytics │ │ │ │ │ │ ├── EditorGameServiceAnalyticsSender.cs │ │ │ │ │ │ └── EditorGameServiceAnalyticsSender.cs.meta │ │ │ │ │ ├── CloudCollabEnabler.cs │ │ │ │ │ ├── CloudCollabEnabler.cs.meta │ │ │ │ │ ├── CloudCollabService.cs │ │ │ │ │ ├── CloudCollabService.cs.meta │ │ │ │ │ ├── CloudCollabServiceIdentifier.cs │ │ │ │ │ ├── CloudCollabServiceIdentifier.cs.meta │ │ │ │ │ ├── CloudCollabSettingsProvider.cs │ │ │ │ │ ├── CloudCollabSettingsProvider.cs.meta │ │ │ │ │ ├── CloudCollabTopMenu.cs │ │ │ │ │ ├── CloudCollabTopMenu.cs.meta │ │ │ │ │ ├── SettingsProviderVisuals.meta │ │ │ │ │ └── SettingsProviderVisuals │ │ │ │ │ │ ├── CloudCollabVisuals.cs │ │ │ │ │ │ ├── CloudCollabVisuals.cs.meta │ │ │ │ │ │ ├── DisabledVisuals.cs │ │ │ │ │ │ ├── DisabledVisuals.cs.meta │ │ │ │ │ │ ├── EnabledVisuals.cs │ │ │ │ │ │ ├── EnabledVisuals.cs.meta │ │ │ │ │ │ ├── IVisuals.cs │ │ │ │ │ │ ├── IVisuals.cs.meta │ │ │ │ │ │ ├── LearnMoreVisualHelper.cs │ │ │ │ │ │ ├── LearnMoreVisualHelper.cs.meta │ │ │ │ │ │ ├── USS.meta │ │ │ │ │ │ ├── USS │ │ │ │ │ │ ├── ServicesProjectSettingsCommon.uss │ │ │ │ │ │ └── ServicesProjectSettingsCommon.uss.meta │ │ │ │ │ │ ├── UXML.meta │ │ │ │ │ │ └── UXML │ │ │ │ │ │ ├── CollabProjectSettingsDisabled.uxml │ │ │ │ │ │ ├── CollabProjectSettingsDisabled.uxml.meta │ │ │ │ │ │ ├── CollabProjectSettingsEnabled.uxml │ │ │ │ │ │ └── CollabProjectSettingsEnabled.uxml.meta │ │ │ │ ├── Models.meta │ │ │ │ ├── Models │ │ │ │ │ ├── Api.meta │ │ │ │ │ ├── Api │ │ │ │ │ │ ├── ISourceControlProvider.cs │ │ │ │ │ │ └── ISourceControlProvider.cs.meta │ │ │ │ │ ├── ChangesModel.cs │ │ │ │ │ ├── ChangesModel.cs.meta │ │ │ │ │ ├── Enums.meta │ │ │ │ │ ├── Enums │ │ │ │ │ │ ├── ProjectStatus.cs │ │ │ │ │ │ └── ProjectStatus.cs.meta │ │ │ │ │ ├── HistoryModel.cs │ │ │ │ │ ├── HistoryModel.cs.meta │ │ │ │ │ ├── IChangesModel.cs │ │ │ │ │ ├── IChangesModel.cs.meta │ │ │ │ │ ├── IHistoryModel.cs │ │ │ │ │ ├── IHistoryModel.cs.meta │ │ │ │ │ ├── IMainModel.cs │ │ │ │ │ ├── IMainModel.cs.meta │ │ │ │ │ ├── IModel.cs │ │ │ │ │ ├── IModel.cs.meta │ │ │ │ │ ├── IStartModel.cs │ │ │ │ │ ├── IStartModel.cs.meta │ │ │ │ │ ├── MainModel.cs │ │ │ │ │ ├── MainModel.cs.meta │ │ │ │ │ ├── Providers.meta │ │ │ │ │ ├── Providers │ │ │ │ │ │ ├── Collab.cs │ │ │ │ │ │ └── Collab.cs.meta │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.meta │ │ │ │ │ ├── StartModel.cs │ │ │ │ │ ├── StartModel.cs.meta │ │ │ │ │ ├── Structures.meta │ │ │ │ │ └── Structures │ │ │ │ │ │ ├── ChangeEntry.cs │ │ │ │ │ │ ├── ChangeEntry.cs.meta │ │ │ │ │ │ ├── ErrorInfo.cs │ │ │ │ │ │ ├── ErrorInfo.cs.meta │ │ │ │ │ │ ├── HistoryEntry.cs │ │ │ │ │ │ ├── HistoryEntry.cs.meta │ │ │ │ │ │ ├── IChangeEntry.cs │ │ │ │ │ │ ├── IChangeEntry.cs.meta │ │ │ │ │ │ ├── IChangeEntryData.cs │ │ │ │ │ │ ├── IChangeEntryData.cs.meta │ │ │ │ │ │ ├── IErrorInfo.cs │ │ │ │ │ │ ├── IErrorInfo.cs.meta │ │ │ │ │ │ ├── IHistoryEntry.cs │ │ │ │ │ │ ├── IHistoryEntry.cs.meta │ │ │ │ │ │ ├── IProgressInfo.cs │ │ │ │ │ │ ├── IProgressInfo.cs.meta │ │ │ │ │ │ ├── ProgressInfo.cs │ │ │ │ │ │ └── ProgressInfo.cs.meta │ │ │ │ ├── Presenters.meta │ │ │ │ ├── Presenters │ │ │ │ │ ├── ChangesPresenter.cs │ │ │ │ │ ├── ChangesPresenter.cs.meta │ │ │ │ │ ├── HistoryPresenter.cs │ │ │ │ │ ├── HistoryPresenter.cs.meta │ │ │ │ │ ├── IChangesPresenter.cs │ │ │ │ │ ├── IChangesPresenter.cs.meta │ │ │ │ │ ├── IHistoryPresenter.cs │ │ │ │ │ ├── IHistoryPresenter.cs.meta │ │ │ │ │ ├── IMainPresenter.cs │ │ │ │ │ ├── IMainPresenter.cs.meta │ │ │ │ │ ├── IPresenter.cs │ │ │ │ │ ├── IPresenter.cs.meta │ │ │ │ │ ├── IStartPresenter.cs │ │ │ │ │ ├── IStartPresenter.cs.meta │ │ │ │ │ ├── MainPresenter.cs │ │ │ │ │ ├── MainPresenter.cs.meta │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.meta │ │ │ │ │ ├── StartPresenter.cs │ │ │ │ │ └── StartPresenter.cs.meta │ │ │ │ ├── Properties.meta │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ └── AssemblyInfo.cs.meta │ │ │ │ ├── README.md │ │ │ │ ├── README.md.meta │ │ │ │ ├── Settings.meta │ │ │ │ ├── Settings │ │ │ │ │ ├── CollabSetting.cs │ │ │ │ │ ├── CollabSetting.cs.meta │ │ │ │ │ ├── CollabSettings.cs │ │ │ │ │ ├── CollabSettings.cs.meta │ │ │ │ │ ├── CollabSettingsManager.cs │ │ │ │ │ ├── CollabSettingsManager.cs.meta │ │ │ │ │ ├── CollabSettingsProvider.cs │ │ │ │ │ ├── CollabSettingsProvider.cs.meta │ │ │ │ │ ├── README.md │ │ │ │ │ └── README.md.meta │ │ │ │ ├── Unity.CollabProxy.Editor.asmdef │ │ │ │ ├── Unity.CollabProxy.Editor.asmdef.meta │ │ │ │ ├── UserInterface.meta │ │ │ │ ├── UserInterface │ │ │ │ │ ├── Bootstrap.cs │ │ │ │ │ ├── Bootstrap.cs.meta │ │ │ │ │ ├── CollaborateWindow.cs │ │ │ │ │ ├── CollaborateWindow.cs.meta │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.meta │ │ │ │ │ ├── ToolbarButton.cs │ │ │ │ │ ├── ToolbarButton.cs.meta │ │ │ │ │ ├── WindowCache.cs │ │ │ │ │ └── WindowCache.cs.meta │ │ │ │ ├── Utilities.meta │ │ │ │ ├── Utilities │ │ │ │ │ ├── ExtensionMethods.cs │ │ │ │ │ ├── ExtensionMethods.cs.meta │ │ │ │ │ ├── MenuUtilities.cs │ │ │ │ │ ├── MenuUtilities.cs.meta │ │ │ │ │ ├── OpenLinksUtility.cs │ │ │ │ │ ├── OpenLinksUtility.cs.meta │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.meta │ │ │ │ │ ├── StringUtility.cs │ │ │ │ │ ├── StringUtility.cs.meta │ │ │ │ │ ├── Threading.cs │ │ │ │ │ ├── Threading.cs.meta │ │ │ │ │ ├── TimeStamp.cs │ │ │ │ │ └── TimeStamp.cs.meta │ │ │ │ ├── Views.meta │ │ │ │ └── Views │ │ │ │ │ ├── Adapters.meta │ │ │ │ │ ├── Adapters │ │ │ │ │ ├── IAdapter.cs │ │ │ │ │ ├── IAdapter.cs.meta │ │ │ │ │ ├── IAdapterObserver.cs │ │ │ │ │ ├── IAdapterObserver.cs.meta │ │ │ │ │ ├── ListAdapters.meta │ │ │ │ │ └── ListAdapters │ │ │ │ │ │ ├── BaseListAdapter.cs │ │ │ │ │ │ ├── BaseListAdapter.cs.meta │ │ │ │ │ │ ├── ConflictedChangeListAdapter.cs │ │ │ │ │ │ ├── ConflictedChangeListAdapter.cs.meta │ │ │ │ │ │ ├── HistoryEntryChangeListAdapter.cs │ │ │ │ │ │ ├── HistoryEntryChangeListAdapter.cs.meta │ │ │ │ │ │ ├── ToggleableChangeListAdapter.cs │ │ │ │ │ │ └── ToggleableChangeListAdapter.cs.meta │ │ │ │ │ ├── ChangesTabPageView.cs │ │ │ │ │ ├── ChangesTabPageView.cs.meta │ │ │ │ │ ├── HistoryTabPageView.cs │ │ │ │ │ ├── HistoryTabPageView.cs.meta │ │ │ │ │ ├── IChangesView.cs │ │ │ │ │ ├── IChangesView.cs.meta │ │ │ │ │ ├── IHistoryView.cs │ │ │ │ │ ├── IHistoryView.cs.meta │ │ │ │ │ ├── IMainView.cs │ │ │ │ │ ├── IMainView.cs.meta │ │ │ │ │ ├── IStartView.cs │ │ │ │ │ ├── IStartView.cs.meta │ │ │ │ │ ├── IView.cs │ │ │ │ │ ├── IView.cs.meta │ │ │ │ │ ├── MainPageView.cs │ │ │ │ │ ├── MainPageView.cs.meta │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.meta │ │ │ │ │ ├── StartPageView.cs │ │ │ │ │ └── StartPageView.cs.meta │ │ │ ├── PlasticSCM.meta │ │ │ └── PlasticSCM │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── AssemblyInfo.cs.meta │ │ │ │ ├── AssetMenu.meta │ │ │ │ ├── AssetMenu │ │ │ │ ├── AssetMenuItems.cs │ │ │ │ ├── AssetMenuItems.cs.meta │ │ │ │ ├── AssetMenuOperations.cs │ │ │ │ ├── AssetMenuOperations.cs.meta │ │ │ │ ├── AssetMenuRoutingOperations.cs │ │ │ │ ├── AssetMenuRoutingOperations.cs.meta │ │ │ │ ├── AssetOperations.cs │ │ │ │ ├── AssetOperations.cs.meta │ │ │ │ ├── AssetsSelection.cs │ │ │ │ ├── AssetsSelection.cs.meta │ │ │ │ ├── Dialogs.meta │ │ │ │ ├── Dialogs │ │ │ │ │ ├── CheckinDialog.cs │ │ │ │ │ ├── CheckinDialog.cs.meta │ │ │ │ │ ├── CheckinDialogOperations.cs │ │ │ │ │ └── CheckinDialogOperations.cs.meta │ │ │ │ ├── ProjectViewAssetSelection.cs │ │ │ │ └── ProjectViewAssetSelection.cs.meta │ │ │ │ ├── AssetOverlays.meta │ │ │ │ ├── AssetOverlays │ │ │ │ ├── AssetStatus.cs │ │ │ │ ├── AssetStatus.cs.meta │ │ │ │ ├── Cache.meta │ │ │ │ ├── Cache │ │ │ │ │ ├── AssetStatusCache.cs │ │ │ │ │ ├── AssetStatusCache.cs.meta │ │ │ │ │ ├── BuildPathDictionary.cs │ │ │ │ │ ├── BuildPathDictionary.cs.meta │ │ │ │ │ ├── LocalStatusCache.cs │ │ │ │ │ ├── LocalStatusCache.cs.meta │ │ │ │ │ ├── LockStatusCache.cs │ │ │ │ │ ├── LockStatusCache.cs.meta │ │ │ │ │ ├── RemoteStatusCache.cs │ │ │ │ │ ├── RemoteStatusCache.cs.meta │ │ │ │ │ ├── SearchLocks.cs │ │ │ │ │ └── SearchLocks.cs.meta │ │ │ │ ├── DrawAssetOverlay.cs │ │ │ │ └── DrawAssetOverlay.cs.meta │ │ │ │ ├── Assets.meta │ │ │ │ ├── Assets │ │ │ │ ├── Images.meta │ │ │ │ ├── Images │ │ │ │ │ ├── DownloadIconGreen.png │ │ │ │ │ ├── DownloadIconGreen.png.meta │ │ │ │ │ ├── DownloadIconRed.png │ │ │ │ │ ├── DownloadIconRed.png.meta │ │ │ │ │ ├── buttonssosigninemail.png │ │ │ │ │ ├── buttonssosigninemail.png.meta │ │ │ │ │ ├── buttonssosigninemail@2x.png │ │ │ │ │ ├── buttonssosigninemail@2x.png.meta │ │ │ │ │ ├── buttonssosigningoogle.png │ │ │ │ │ ├── buttonssosigningoogle.png.meta │ │ │ │ │ ├── buttonssosigninunity.png │ │ │ │ │ ├── buttonssosigninunity.png.meta │ │ │ │ │ ├── d_buttonssosigninemail.png │ │ │ │ │ ├── d_buttonssosigninemail.png.meta │ │ │ │ │ ├── d_buttonssosigninemail@2x.png │ │ │ │ │ ├── d_buttonssosigninemail@2x.png.meta │ │ │ │ │ ├── d_cloudbuho.png │ │ │ │ │ ├── d_cloudbuho.png.meta │ │ │ │ │ ├── d_cloudbuhochristmas.png │ │ │ │ │ ├── d_cloudbuhochristmas.png.meta │ │ │ │ │ ├── d_cloudbuhoshe.png │ │ │ │ │ ├── d_cloudbuhoshe.png.meta │ │ │ │ │ ├── d_cloudbuhoshechristmas.png │ │ │ │ │ ├── d_cloudbuhoshechristmas.png.meta │ │ │ │ │ ├── d_colorbuho.png │ │ │ │ │ ├── d_colorbuho.png.meta │ │ │ │ │ ├── d_colorbuhochristmas.png │ │ │ │ │ ├── d_colorbuhochristmas.png.meta │ │ │ │ │ ├── d_colorbuhoshe.png │ │ │ │ │ ├── d_colorbuhoshe.png.meta │ │ │ │ │ ├── d_colorbuhoshechristmas.png │ │ │ │ │ ├── d_colorbuhoshechristmas.png.meta │ │ │ │ │ ├── d_expertbuho.png │ │ │ │ │ ├── d_expertbuho.png.meta │ │ │ │ │ ├── d_expertbuhochristmas.png │ │ │ │ │ ├── d_expertbuhochristmas.png.meta │ │ │ │ │ ├── d_expertbuhoshe.png │ │ │ │ │ ├── d_expertbuhoshe.png.meta │ │ │ │ │ ├── d_expertbuhoshechristmas.png │ │ │ │ │ ├── d_expertbuhoshechristmas.png.meta │ │ │ │ │ ├── d_genericbuho1.png │ │ │ │ │ ├── d_genericbuho1.png.meta │ │ │ │ │ ├── d_genericbuho2.png │ │ │ │ │ ├── d_genericbuho2.png.meta │ │ │ │ │ ├── d_genericbuho3.png │ │ │ │ │ ├── d_genericbuho3.png.meta │ │ │ │ │ ├── d_genericbuhochristmas1.png │ │ │ │ │ ├── d_genericbuhochristmas1.png.meta │ │ │ │ │ ├── d_genericbuhochristmas2.png │ │ │ │ │ ├── d_genericbuhochristmas2.png.meta │ │ │ │ │ ├── d_genericbuhochristmas3.png │ │ │ │ │ ├── d_genericbuhochristmas3.png.meta │ │ │ │ │ ├── d_genericbuhoshe1.png │ │ │ │ │ ├── d_genericbuhoshe1.png.meta │ │ │ │ │ ├── d_genericbuhoshe2.png │ │ │ │ │ ├── d_genericbuhoshe2.png.meta │ │ │ │ │ ├── d_genericbuhoshe3.png │ │ │ │ │ ├── d_genericbuhoshe3.png.meta │ │ │ │ │ ├── d_genericbuhoshechristmas1.png │ │ │ │ │ ├── d_genericbuhoshechristmas1.png.meta │ │ │ │ │ ├── d_genericbuhoshechristmas2.png │ │ │ │ │ ├── d_genericbuhoshechristmas2.png.meta │ │ │ │ │ ├── d_genericbuhoshechristmas3.png │ │ │ │ │ ├── d_genericbuhoshechristmas3.png.meta │ │ │ │ │ ├── d_iconaddedoverlay.png │ │ │ │ │ ├── d_iconaddedoverlay.png.meta │ │ │ │ │ ├── d_iconaddedoverlay@2x.png │ │ │ │ │ ├── d_iconaddedoverlay@2x.png.meta │ │ │ │ │ ├── d_iconbranch.png │ │ │ │ │ ├── d_iconbranch.png.meta │ │ │ │ │ ├── d_iconbranch@2x.png │ │ │ │ │ ├── d_iconbranch@2x.png.meta │ │ │ │ │ ├── d_iconcheckedoutlocaloverlay.png │ │ │ │ │ ├── d_iconcheckedoutlocaloverlay.png.meta │ │ │ │ │ ├── d_iconcheckedoutlocaloverlay@2x.png │ │ │ │ │ ├── d_iconcheckedoutlocaloverlay@2x.png.meta │ │ │ │ │ ├── d_iconconflictresolvedoverlay.png │ │ │ │ │ ├── d_iconconflictresolvedoverlay.png.meta │ │ │ │ │ ├── d_iconconflictresolvedoverlay@2x.png │ │ │ │ │ ├── d_iconconflictresolvedoverlay@2x.png.meta │ │ │ │ │ ├── d_icondeletedlocaloverlay.png │ │ │ │ │ ├── d_icondeletedlocaloverlay.png.meta │ │ │ │ │ ├── d_icondeletedlocaloverlay@2x.png │ │ │ │ │ ├── d_icondeletedlocaloverlay@2x.png.meta │ │ │ │ │ ├── d_icondeletedremoteoverlay.png │ │ │ │ │ ├── d_icondeletedremoteoverlay.png.meta │ │ │ │ │ ├── d_icondeletedremoteoverlay@2x.png │ │ │ │ │ ├── d_icondeletedremoteoverlay@2x.png.meta │ │ │ │ │ ├── d_iconemptygravatar.png │ │ │ │ │ ├── d_iconemptygravatar.png.meta │ │ │ │ │ ├── d_iconemptygravatar@2x.png │ │ │ │ │ ├── d_iconemptygravatar@2x.png.meta │ │ │ │ │ ├── d_iconlockedlocaloverlay.png │ │ │ │ │ ├── d_iconlockedlocaloverlay.png.meta │ │ │ │ │ ├── d_iconlockedlocaloverlay@2x.png │ │ │ │ │ ├── d_iconlockedlocaloverlay@2x.png.meta │ │ │ │ │ ├── d_iconlockedremoteoverlay.png │ │ │ │ │ ├── d_iconlockedremoteoverlay.png.meta │ │ │ │ │ ├── d_iconlockedremoteoverlay@2x.png │ │ │ │ │ ├── d_iconlockedremoteoverlay@2x.png.meta │ │ │ │ │ ├── d_iconmergeconflictoverlay.png │ │ │ │ │ ├── d_iconmergeconflictoverlay.png.meta │ │ │ │ │ ├── d_iconmergeconflictoverlay@2x.png │ │ │ │ │ ├── d_iconmergeconflictoverlay@2x.png.meta │ │ │ │ │ ├── d_iconoutofsyncoverlay.png │ │ │ │ │ ├── d_iconoutofsyncoverlay.png.meta │ │ │ │ │ ├── d_iconoutofsyncoverlay@2x.png │ │ │ │ │ ├── d_iconoutofsyncoverlay@2x.png.meta │ │ │ │ │ ├── d_iconplasticnotifyconflict.png │ │ │ │ │ ├── d_iconplasticnotifyconflict.png.meta │ │ │ │ │ ├── d_iconplasticnotifyconflict@2x.png │ │ │ │ │ ├── d_iconplasticnotifyconflict@2x.png.meta │ │ │ │ │ ├── d_iconplasticnotifyincoming.png │ │ │ │ │ ├── d_iconplasticnotifyincoming.png.meta │ │ │ │ │ ├── d_iconplasticnotifyincoming@2x.png │ │ │ │ │ ├── d_iconplasticnotifyincoming@2x.png.meta │ │ │ │ │ ├── d_iconplasticview.png │ │ │ │ │ ├── d_iconplasticview.png.meta │ │ │ │ │ ├── d_iconplasticview@2x.png │ │ │ │ │ ├── d_iconplasticview@2x.png.meta │ │ │ │ │ ├── d_iconplasticviewnotify.png │ │ │ │ │ ├── d_iconplasticviewnotify.png.meta │ │ │ │ │ ├── d_iconplasticviewnotify@2x.png │ │ │ │ │ ├── d_iconplasticviewnotify@2x.png.meta │ │ │ │ │ ├── d_iconprivateoverlay.png │ │ │ │ │ ├── d_iconprivateoverlay.png.meta │ │ │ │ │ ├── d_iconprivateoverlay@2x.png │ │ │ │ │ ├── d_iconprivateoverlay@2x.png.meta │ │ │ │ │ ├── d_iconundo.png │ │ │ │ │ ├── d_iconundo.png.meta │ │ │ │ │ ├── d_iconundo@2x.png │ │ │ │ │ ├── d_iconundo@2x.png.meta │ │ │ │ │ ├── d_ignoredoverlay.png │ │ │ │ │ ├── d_ignoredoverlay.png.meta │ │ │ │ │ ├── d_ignoredoverlay@2x.png │ │ │ │ │ ├── d_ignoredoverlay@2x.png.meta │ │ │ │ │ ├── d_loading.png │ │ │ │ │ ├── d_loading.png.meta │ │ │ │ │ ├── d_loading@2x.png │ │ │ │ │ ├── d_loading@2x.png.meta │ │ │ │ │ ├── d_step1.png │ │ │ │ │ ├── d_step1.png.meta │ │ │ │ │ ├── d_step1@2x.png │ │ │ │ │ ├── d_step1@2x.png.meta │ │ │ │ │ ├── d_step2.png │ │ │ │ │ ├── d_step2.png.meta │ │ │ │ │ ├── d_step2@2x.png │ │ │ │ │ ├── d_step2@2x.png.meta │ │ │ │ │ ├── d_step3.png │ │ │ │ │ ├── d_step3.png.meta │ │ │ │ │ ├── d_step3@2x.png │ │ │ │ │ ├── d_step3@2x.png.meta │ │ │ │ │ ├── d_stepok.png │ │ │ │ │ ├── d_stepok.png.meta │ │ │ │ │ ├── d_stepok@2x.png │ │ │ │ │ ├── d_stepok@2x.png.meta │ │ │ │ │ ├── d_stevejobsbuho.png │ │ │ │ │ ├── d_stevejobsbuho.png.meta │ │ │ │ │ ├── d_stevejobsbuhochristmas.png │ │ │ │ │ ├── d_stevejobsbuhochristmas.png.meta │ │ │ │ │ ├── d_stevejobsbuhoshe.png │ │ │ │ │ ├── d_stevejobsbuhoshe.png.meta │ │ │ │ │ ├── d_stevejobsbuhoshechristmas.png │ │ │ │ │ ├── d_stevejobsbuhoshechristmas.png.meta │ │ │ │ │ ├── iconadded.png │ │ │ │ │ ├── iconadded.png.meta │ │ │ │ │ ├── iconaddedoverlay.png │ │ │ │ │ ├── iconaddedoverlay.png.meta │ │ │ │ │ ├── iconaddedoverlay@2x.png │ │ │ │ │ ├── iconaddedoverlay@2x.png.meta │ │ │ │ │ ├── iconbranch.png │ │ │ │ │ ├── iconbranch.png.meta │ │ │ │ │ ├── iconbranch@2x.png │ │ │ │ │ ├── iconbranch@2x.png.meta │ │ │ │ │ ├── iconchanged.png │ │ │ │ │ ├── iconchanged.png.meta │ │ │ │ │ ├── iconcheckedoutlocaloverlay.png │ │ │ │ │ ├── iconcheckedoutlocaloverlay.png.meta │ │ │ │ │ ├── iconcheckedoutlocaloverlay@2x.png │ │ │ │ │ ├── iconcheckedoutlocaloverlay@2x.png.meta │ │ │ │ │ ├── iconclosebutton.png │ │ │ │ │ ├── iconclosebutton.png.meta │ │ │ │ │ ├── iconconflictresolvedoverlay.png │ │ │ │ │ ├── iconconflictresolvedoverlay.png.meta │ │ │ │ │ ├── iconconflictresolvedoverlay@2x.png │ │ │ │ │ ├── iconconflictresolvedoverlay@2x.png.meta │ │ │ │ │ ├── icondeleted.png │ │ │ │ │ ├── icondeleted.png.meta │ │ │ │ │ ├── icondeletedlocaloverlay.png │ │ │ │ │ ├── icondeletedlocaloverlay.png.meta │ │ │ │ │ ├── icondeletedlocaloverlay@2x.png │ │ │ │ │ ├── icondeletedlocaloverlay@2x.png.meta │ │ │ │ │ ├── icondeletedremoteoverlay.png │ │ │ │ │ ├── icondeletedremoteoverlay.png.meta │ │ │ │ │ ├── icondeletedremoteoverlay@2x.png │ │ │ │ │ ├── icondeletedremoteoverlay@2x.png.meta │ │ │ │ │ ├── iconemptygravatar.png │ │ │ │ │ ├── iconemptygravatar.png.meta │ │ │ │ │ ├── iconemptygravatar@2x.png │ │ │ │ │ ├── iconemptygravatar@2x.png.meta │ │ │ │ │ ├── iconfschanged.png │ │ │ │ │ ├── iconfschanged.png.meta │ │ │ │ │ ├── iconlockedlocaloverlay.png │ │ │ │ │ ├── iconlockedlocaloverlay.png.meta │ │ │ │ │ ├── iconlockedlocaloverlay@2x.png │ │ │ │ │ ├── iconlockedlocaloverlay@2x.png.meta │ │ │ │ │ ├── iconlockedremoteoverlay.png │ │ │ │ │ ├── iconlockedremoteoverlay.png.meta │ │ │ │ │ ├── iconlockedremoteoverlay@2x.png │ │ │ │ │ ├── iconlockedremoteoverlay@2x.png.meta │ │ │ │ │ ├── iconmergecategory.png │ │ │ │ │ ├── iconmergecategory.png.meta │ │ │ │ │ ├── iconmergeconflict.png │ │ │ │ │ ├── iconmergeconflict.png.meta │ │ │ │ │ ├── iconmergeconflictoverlay.png │ │ │ │ │ ├── iconmergeconflictoverlay.png.meta │ │ │ │ │ ├── iconmergeconflictoverlay@2x.png │ │ │ │ │ ├── iconmergeconflictoverlay@2x.png.meta │ │ │ │ │ ├── iconmerged.png │ │ │ │ │ ├── iconmerged.png.meta │ │ │ │ │ ├── iconmergelink.png │ │ │ │ │ ├── iconmergelink.png.meta │ │ │ │ │ ├── iconmoved.png │ │ │ │ │ ├── iconmoved.png.meta │ │ │ │ │ ├── iconoutofsyncoverlay.png │ │ │ │ │ ├── iconoutofsyncoverlay.png.meta │ │ │ │ │ ├── iconoutofsyncoverlay@2x.png │ │ │ │ │ ├── iconoutofsyncoverlay@2x.png.meta │ │ │ │ │ ├── iconplastic.png │ │ │ │ │ ├── iconplastic.png.meta │ │ │ │ │ ├── iconplasticnotifyconflict.png │ │ │ │ │ ├── iconplasticnotifyconflict.png.meta │ │ │ │ │ ├── iconplasticnotifyconflict@2x.png │ │ │ │ │ ├── iconplasticnotifyconflict@2x.png.meta │ │ │ │ │ ├── iconplasticnotifyincoming.png │ │ │ │ │ ├── iconplasticnotifyincoming.png.meta │ │ │ │ │ ├── iconplasticnotifyincoming@2x.png │ │ │ │ │ ├── iconplasticnotifyincoming@2x.png.meta │ │ │ │ │ ├── iconplasticview.png │ │ │ │ │ ├── iconplasticview.png.meta │ │ │ │ │ ├── iconplasticview@2x.png │ │ │ │ │ ├── iconplasticview@2x.png.meta │ │ │ │ │ ├── iconplasticviewnotify.png │ │ │ │ │ ├── iconplasticviewnotify.png.meta │ │ │ │ │ ├── iconplasticviewnotify@2x.png │ │ │ │ │ ├── iconplasticviewnotify@2x.png.meta │ │ │ │ │ ├── iconpressedclosebutton.png │ │ │ │ │ ├── iconpressedclosebutton.png.meta │ │ │ │ │ ├── iconprivateoverlay.png │ │ │ │ │ ├── iconprivateoverlay.png.meta │ │ │ │ │ ├── iconprivateoverlay@2x.png │ │ │ │ │ ├── iconprivateoverlay@2x.png.meta │ │ │ │ │ ├── iconrepository.png │ │ │ │ │ ├── iconrepository.png.meta │ │ │ │ │ ├── iconundo.png │ │ │ │ │ ├── iconundo.png.meta │ │ │ │ │ ├── iconundo@2x.png │ │ │ │ │ ├── iconundo@2x.png.meta │ │ │ │ │ ├── ignored.png │ │ │ │ │ ├── ignored.png.meta │ │ │ │ │ ├── ignoredoverlay.png │ │ │ │ │ ├── ignoredoverlay.png.meta │ │ │ │ │ ├── ignoredoverlay@2x.png │ │ │ │ │ ├── ignoredoverlay@2x.png.meta │ │ │ │ │ ├── loading.png │ │ │ │ │ ├── loading.png.meta │ │ │ │ │ ├── loading@2x.png │ │ │ │ │ ├── loading@2x.png.meta │ │ │ │ │ ├── notondisk.png │ │ │ │ │ ├── notondisk.png.meta │ │ │ │ │ ├── ok.png │ │ │ │ │ ├── ok.png.meta │ │ │ │ │ ├── step1.png │ │ │ │ │ ├── step1.png.meta │ │ │ │ │ ├── step1@2x.png │ │ │ │ │ ├── step1@2x.png.meta │ │ │ │ │ ├── step2.png │ │ │ │ │ ├── step2.png.meta │ │ │ │ │ ├── step2@2x.png │ │ │ │ │ ├── step2@2x.png.meta │ │ │ │ │ ├── step3.png │ │ │ │ │ ├── step3.png.meta │ │ │ │ │ ├── step3@2x.png │ │ │ │ │ ├── step3@2x.png.meta │ │ │ │ │ ├── stepok.png │ │ │ │ │ ├── stepok.png.meta │ │ │ │ │ ├── stepok@2x.png │ │ │ │ │ ├── stepok@2x.png.meta │ │ │ │ │ ├── xlink.png │ │ │ │ │ └── xlink.png.meta │ │ │ │ ├── Layouts.meta │ │ │ │ ├── Layouts │ │ │ │ │ ├── CreateOrganizationPanel.uxml │ │ │ │ │ ├── CreateOrganizationPanel.uxml.meta │ │ │ │ │ ├── CreatedOrganizationPanel.uxml │ │ │ │ │ ├── CreatedOrganizationPanel.uxml.meta │ │ │ │ │ ├── DownloadPlasticExeWindow.uxml │ │ │ │ │ ├── DownloadPlasticExeWindow.uxml.meta │ │ │ │ │ ├── OrganizationPanel.uxml │ │ │ │ │ ├── OrganizationPanel.uxml.meta │ │ │ │ │ ├── PlasticWindow.meta │ │ │ │ │ ├── PlasticWindow │ │ │ │ │ │ ├── StatusBar.uxml │ │ │ │ │ │ └── StatusBar.uxml.meta │ │ │ │ │ ├── ProgressControlsForDialogs.uxml │ │ │ │ │ ├── ProgressControlsForDialogs.uxml.meta │ │ │ │ │ ├── SSOSignUpPanel.uxml │ │ │ │ │ ├── SSOSignUpPanel.uxml.meta │ │ │ │ │ ├── SignInPanel.uxml │ │ │ │ │ ├── SignInPanel.uxml.meta │ │ │ │ │ ├── SignInWithEmailPanel.uxml │ │ │ │ │ ├── SignInWithEmailPanel.uxml.meta │ │ │ │ │ ├── TabView.uxml │ │ │ │ │ ├── TabView.uxml.meta │ │ │ │ │ ├── TeamEditionConfigurationWindow.uxml │ │ │ │ │ ├── TeamEditionConfigurationWindow.uxml.meta │ │ │ │ │ ├── TurnOffPlasticWindow.uxml │ │ │ │ │ ├── TurnOffPlasticWindow.uxml.meta │ │ │ │ │ ├── WaitingSignInPanel.uxml │ │ │ │ │ └── WaitingSignInPanel.uxml.meta │ │ │ │ ├── Styles.meta │ │ │ │ └── Styles │ │ │ │ │ ├── CreateOrganizationPanel.uss │ │ │ │ │ ├── CreateOrganizationPanel.uss.meta │ │ │ │ │ ├── CreatedOrganizationPanel.uss │ │ │ │ │ ├── CreatedOrganizationPanel.uss.meta │ │ │ │ │ ├── DownloadPlasticExeWindow.uss │ │ │ │ │ ├── DownloadPlasticExeWindow.uss.meta │ │ │ │ │ ├── OrganizationPanel.uss │ │ │ │ │ ├── OrganizationPanel.uss.meta │ │ │ │ │ ├── PlasticWindow.meta │ │ │ │ │ ├── PlasticWindow │ │ │ │ │ ├── PlasticWindow.dark.uss │ │ │ │ │ ├── PlasticWindow.dark.uss.meta │ │ │ │ │ ├── PlasticWindow.light.uss │ │ │ │ │ ├── PlasticWindow.light.uss.meta │ │ │ │ │ ├── PlasticWindow.uss │ │ │ │ │ └── PlasticWindow.uss.meta │ │ │ │ │ ├── ProgressControlsForDialogs.uss │ │ │ │ │ ├── ProgressControlsForDialogs.uss.meta │ │ │ │ │ ├── SSOSignUpPanel.uss │ │ │ │ │ ├── SSOSignUpPanel.uss.meta │ │ │ │ │ ├── SignInPanel.uss │ │ │ │ │ ├── SignInPanel.uss.meta │ │ │ │ │ ├── SignInSignUp.uss │ │ │ │ │ ├── SignInSignUp.uss.meta │ │ │ │ │ ├── SignInWithEmailPanel.uss │ │ │ │ │ ├── SignInWithEmailPanel.uss.meta │ │ │ │ │ ├── TabView.uss │ │ │ │ │ ├── TabView.uss.meta │ │ │ │ │ ├── TeamEditionConfigurationWindow.uss │ │ │ │ │ ├── TeamEditionConfigurationWindow.uss.meta │ │ │ │ │ ├── TurnOffPlasticWindow.uss │ │ │ │ │ ├── TurnOffPlasticWindow.uss.meta │ │ │ │ │ ├── WaitingSignInPanel.uss │ │ │ │ │ └── WaitingSignInPanel.uss.meta │ │ │ │ ├── AssetsUtils.meta │ │ │ │ ├── AssetsUtils │ │ │ │ ├── AssetsPath.cs │ │ │ │ ├── AssetsPath.cs.meta │ │ │ │ ├── LoadAsset.cs │ │ │ │ ├── LoadAsset.cs.meta │ │ │ │ ├── Processor.meta │ │ │ │ ├── Processor │ │ │ │ │ ├── AssetModificationProcessor.cs │ │ │ │ │ ├── AssetModificationProcessor.cs.meta │ │ │ │ │ ├── AssetPostprocessor.cs │ │ │ │ │ ├── AssetPostprocessor.cs.meta │ │ │ │ │ ├── AssetsProcessor.cs │ │ │ │ │ ├── AssetsProcessor.cs.meta │ │ │ │ │ ├── PlasticAssetsProcessor.cs │ │ │ │ │ └── PlasticAssetsProcessor.cs.meta │ │ │ │ ├── ProjectPath.cs │ │ │ │ ├── ProjectPath.cs.meta │ │ │ │ ├── RefreshAsset.cs │ │ │ │ ├── RefreshAsset.cs.meta │ │ │ │ ├── SaveAssets.cs │ │ │ │ └── SaveAssets.cs.meta │ │ │ │ ├── AutoRefresh.cs │ │ │ │ ├── AutoRefresh.cs.meta │ │ │ │ ├── Beta.meta │ │ │ │ ├── Beta │ │ │ │ ├── CalculateUserBetaProgramSetting.cs │ │ │ │ └── CalculateUserBetaProgramSetting.cs.meta │ │ │ │ ├── CheckWorkspaceTreeNodeStatus.cs │ │ │ │ ├── CheckWorkspaceTreeNodeStatus.cs.meta │ │ │ │ ├── CloudProjectDownloader.meta │ │ │ │ ├── CloudProjectDownloader │ │ │ │ ├── AutoConfigClientConf.cs │ │ │ │ ├── AutoConfigClientConf.cs.meta │ │ │ │ ├── CloudProjectDownloader.cs │ │ │ │ ├── CloudProjectDownloader.cs.meta │ │ │ │ ├── CommandLineArguments.cs │ │ │ │ ├── CommandLineArguments.cs.meta │ │ │ │ ├── DownloadRepositoryOperation.cs │ │ │ │ ├── DownloadRepositoryOperation.cs.meta │ │ │ │ ├── ParseArguments.cs │ │ │ │ └── ParseArguments.cs.meta │ │ │ │ ├── CollabMigration.meta │ │ │ │ ├── CollabMigration │ │ │ │ ├── MigrateCollabProject.cs │ │ │ │ ├── MigrateCollabProject.cs.meta │ │ │ │ ├── MigrationDialog.cs │ │ │ │ └── MigrationDialog.cs.meta │ │ │ │ ├── CollabPlugin.cs │ │ │ │ ├── CollabPlugin.cs.meta │ │ │ │ ├── Configuration.meta │ │ │ │ ├── Configuration │ │ │ │ ├── ChannelCertificateUiImpl.cs │ │ │ │ ├── ChannelCertificateUiImpl.cs.meta │ │ │ │ ├── CloudEdition.meta │ │ │ │ ├── CloudEdition │ │ │ │ │ ├── Welcome.meta │ │ │ │ │ └── Welcome │ │ │ │ │ │ ├── AutoLogin.cs │ │ │ │ │ │ ├── AutoLogin.cs.meta │ │ │ │ │ │ ├── CloudEditionWelcomeWindow.cs │ │ │ │ │ │ ├── CloudEditionWelcomeWindow.cs.meta │ │ │ │ │ │ ├── CreateOrganizationPanel.cs │ │ │ │ │ │ ├── CreateOrganizationPanel.cs.meta │ │ │ │ │ │ ├── CreatedOrganizationPanel.cs │ │ │ │ │ │ ├── CreatedOrganizationPanel.cs.meta │ │ │ │ │ │ ├── OrganizationPanel.cs │ │ │ │ │ │ ├── OrganizationPanel.cs.meta │ │ │ │ │ │ ├── SSOSignUpPanel.cs │ │ │ │ │ │ ├── SSOSignUpPanel.cs.meta │ │ │ │ │ │ ├── SignInPanel.cs │ │ │ │ │ │ ├── SignInPanel.cs.meta │ │ │ │ │ │ ├── SignInWithEmailPanel.cs │ │ │ │ │ │ ├── SignInWithEmailPanel.cs.meta │ │ │ │ │ │ ├── WaitingSignInPanel.cs │ │ │ │ │ │ └── WaitingSignInPanel.cs.meta │ │ │ │ ├── ConfigurePartialWorkspace.cs │ │ │ │ ├── ConfigurePartialWorkspace.cs.meta │ │ │ │ ├── CredentialsDialog.cs │ │ │ │ ├── CredentialsDialog.cs.meta │ │ │ │ ├── CredentialsUIImpl.cs │ │ │ │ ├── CredentialsUIImpl.cs.meta │ │ │ │ ├── EncryptionConfigurationDialog.cs │ │ │ │ ├── EncryptionConfigurationDialog.cs.meta │ │ │ │ ├── MissingEncryptionPasswordPromptHandler.cs │ │ │ │ ├── MissingEncryptionPasswordPromptHandler.cs.meta │ │ │ │ ├── SSOCredentialsDialog.cs │ │ │ │ ├── SSOCredentialsDialog.cs.meta │ │ │ │ ├── TeamEdition.meta │ │ │ │ ├── TeamEdition │ │ │ │ │ ├── TeamEditionConfigurationWindow.cs │ │ │ │ │ └── TeamEditionConfigurationWindow.cs.meta │ │ │ │ ├── ToolConfig.cs │ │ │ │ ├── ToolConfig.cs.meta │ │ │ │ ├── TurnOffPlastic.meta │ │ │ │ ├── TurnOffPlastic │ │ │ │ │ ├── TurnOffPlasticWindow.cs │ │ │ │ │ └── TurnOffPlasticWindow.cs.meta │ │ │ │ ├── WriteLogConfiguration.cs │ │ │ │ └── WriteLogConfiguration.cs.meta │ │ │ │ ├── Developer.meta │ │ │ │ ├── Developer │ │ │ │ ├── CheckinProgress.cs │ │ │ │ ├── CheckinProgress.cs.meta │ │ │ │ ├── GenericProgress.cs │ │ │ │ ├── GenericProgress.cs.meta │ │ │ │ ├── IncomingChangesNotificationPanel.cs │ │ │ │ ├── IncomingChangesNotificationPanel.cs.meta │ │ │ │ ├── ProgressOperationHandler.cs │ │ │ │ ├── ProgressOperationHandler.cs.meta │ │ │ │ ├── UpdateProgress.cs │ │ │ │ ├── UpdateProgress.cs.meta │ │ │ │ ├── UpdateReport.meta │ │ │ │ └── UpdateReport │ │ │ │ │ ├── UpdateReportDialog.cs │ │ │ │ │ ├── UpdateReportDialog.cs.meta │ │ │ │ │ ├── UpdateReportLineListViewItem.cs │ │ │ │ │ ├── UpdateReportLineListViewItem.cs.meta │ │ │ │ │ ├── UpdateReportListHeaderState.cs │ │ │ │ │ ├── UpdateReportListHeaderState.cs.meta │ │ │ │ │ ├── UpdateReportListView.cs │ │ │ │ │ └── UpdateReportListView.cs.meta │ │ │ │ ├── DrawGuiModeSwitcher.cs │ │ │ │ ├── DrawGuiModeSwitcher.cs.meta │ │ │ │ ├── DrawIncomingChangesNotificationPanel.cs │ │ │ │ ├── DrawIncomingChangesNotificationPanel.cs.meta │ │ │ │ ├── DrawStatusBar.cs │ │ │ │ ├── DrawStatusBar.cs.meta │ │ │ │ ├── EnumExtensions.cs │ │ │ │ ├── EnumExtensions.cs.meta │ │ │ │ ├── FindWorkspace.cs │ │ │ │ ├── FindWorkspace.cs.meta │ │ │ │ ├── GetRelativePath.cs │ │ │ │ ├── GetRelativePath.cs.meta │ │ │ │ ├── Gluon.meta │ │ │ │ ├── Gluon │ │ │ │ ├── CheckinProgress.cs │ │ │ │ ├── CheckinProgress.cs.meta │ │ │ │ ├── IncomingChangesNotificationPanel.cs │ │ │ │ ├── IncomingChangesNotificationPanel.cs.meta │ │ │ │ ├── ProgressOperationHandler.cs │ │ │ │ ├── ProgressOperationHandler.cs.meta │ │ │ │ ├── UpdateProgress.cs │ │ │ │ ├── UpdateProgress.cs.meta │ │ │ │ ├── UpdateReport.meta │ │ │ │ └── UpdateReport │ │ │ │ │ ├── ErrorListViewItem.cs │ │ │ │ │ ├── ErrorListViewItem.cs.meta │ │ │ │ │ ├── UpdateReportDialog.cs │ │ │ │ │ ├── UpdateReportDialog.cs.meta │ │ │ │ │ ├── UpdateReportListHeaderState.cs │ │ │ │ │ ├── UpdateReportListHeaderState.cs.meta │ │ │ │ │ ├── UpdateReportListView.cs │ │ │ │ │ └── UpdateReportListView.cs.meta │ │ │ │ ├── Help.meta │ │ │ │ ├── Help │ │ │ │ ├── BuildFormattedHelp.cs │ │ │ │ ├── BuildFormattedHelp.cs.meta │ │ │ │ ├── DrawHelpPanel.cs │ │ │ │ ├── DrawHelpPanel.cs.meta │ │ │ │ ├── HelpData.cs │ │ │ │ ├── HelpData.cs.meta │ │ │ │ ├── HelpFormat.cs │ │ │ │ ├── HelpFormat.cs.meta │ │ │ │ ├── HelpLink.cs │ │ │ │ ├── HelpLink.cs.meta │ │ │ │ ├── HelpLinkData.cs │ │ │ │ ├── HelpLinkData.cs.meta │ │ │ │ ├── HelpPanel.cs │ │ │ │ ├── HelpPanel.cs.meta │ │ │ │ ├── TestingHelpData.cs │ │ │ │ └── TestingHelpData.cs.meta │ │ │ │ ├── Inspector.meta │ │ │ │ ├── Inspector │ │ │ │ ├── DrawInspectorOperations.cs │ │ │ │ ├── DrawInspectorOperations.cs.meta │ │ │ │ ├── InspectorAssetSelection.cs │ │ │ │ └── InspectorAssetSelection.cs.meta │ │ │ │ ├── MetaPath.cs │ │ │ │ ├── MetaPath.cs.meta │ │ │ │ ├── NewIncomingChanges.cs │ │ │ │ ├── NewIncomingChanges.cs.meta │ │ │ │ ├── PlasticApp.cs │ │ │ │ ├── PlasticApp.cs.meta │ │ │ │ ├── PlasticMenuItem.cs │ │ │ │ ├── PlasticMenuItem.cs.meta │ │ │ │ ├── PlasticNotification.cs │ │ │ │ ├── PlasticNotification.cs.meta │ │ │ │ ├── PlasticWindow.cs │ │ │ │ ├── PlasticWindow.cs.meta │ │ │ │ ├── PlasticWindow.meta │ │ │ │ ├── PlasticWindow │ │ │ │ ├── PlasticSCMWindow.cs │ │ │ │ └── PlasticSCMWindow.cs.meta │ │ │ │ ├── SetupCloudProjectId.cs │ │ │ │ ├── SetupCloudProjectId.cs.meta │ │ │ │ ├── SwitchModeConfirmationDialog.cs │ │ │ │ ├── SwitchModeConfirmationDialog.cs.meta │ │ │ │ ├── Tool.meta │ │ │ │ ├── Tool │ │ │ │ ├── BringWindowToFront.cs │ │ │ │ ├── BringWindowToFront.cs.meta │ │ │ │ ├── FindTool.cs │ │ │ │ ├── FindTool.cs.meta │ │ │ │ ├── IsExeAvailable.cs │ │ │ │ ├── IsExeAvailable.cs.meta │ │ │ │ ├── LaunchInstaller.cs │ │ │ │ ├── LaunchInstaller.cs.meta │ │ │ │ ├── LaunchTool.cs │ │ │ │ ├── LaunchTool.cs.meta │ │ │ │ ├── ToolConstants.cs │ │ │ │ └── ToolConstants.cs.meta │ │ │ │ ├── UI.meta │ │ │ │ ├── UI │ │ │ │ ├── Avatar.meta │ │ │ │ ├── Avatar │ │ │ │ │ ├── ApplyCircleMask.cs │ │ │ │ │ ├── ApplyCircleMask.cs.meta │ │ │ │ │ ├── AvatarImages.cs │ │ │ │ │ ├── AvatarImages.cs.meta │ │ │ │ │ ├── GetAvatar.cs │ │ │ │ │ └── GetAvatar.cs.meta │ │ │ │ ├── BoolSetting.cs │ │ │ │ ├── BoolSetting.cs.meta │ │ │ │ ├── CooldownWindowDelayer.cs │ │ │ │ ├── CooldownWindowDelayer.cs.meta │ │ │ │ ├── DockEditorWindow.cs │ │ │ │ ├── DockEditorWindow.cs.meta │ │ │ │ ├── DrawActionButton.cs │ │ │ │ ├── DrawActionButton.cs.meta │ │ │ │ ├── DrawActionHelpBox.cs │ │ │ │ ├── DrawActionHelpBox.cs.meta │ │ │ │ ├── DrawSearchField.cs │ │ │ │ ├── DrawSearchField.cs.meta │ │ │ │ ├── DrawSplitter.cs │ │ │ │ ├── DrawSplitter.cs.meta │ │ │ │ ├── DrawUserIcon.cs │ │ │ │ ├── DrawUserIcon.cs.meta │ │ │ │ ├── DropDownTextField.cs │ │ │ │ ├── DropDownTextField.cs.meta │ │ │ │ ├── EditorDispatcher.cs │ │ │ │ ├── EditorDispatcher.cs.meta │ │ │ │ ├── EditorProgressBar.cs │ │ │ │ ├── EditorProgressBar.cs.meta │ │ │ │ ├── EditorProgressControls.cs │ │ │ │ ├── EditorProgressControls.cs.meta │ │ │ │ ├── EditorVersion.cs │ │ │ │ ├── EditorVersion.cs.meta │ │ │ │ ├── EditorWindowFocus.cs │ │ │ │ ├── EditorWindowFocus.cs.meta │ │ │ │ ├── EnumPopupSetting.cs │ │ │ │ ├── EnumPopupSetting.cs.meta │ │ │ │ ├── FindEditorWindow.cs │ │ │ │ ├── FindEditorWindow.cs.meta │ │ │ │ ├── GUIActionRunner.cs │ │ │ │ ├── GUIActionRunner.cs.meta │ │ │ │ ├── GUISpace.cs │ │ │ │ ├── GUISpace.cs.meta │ │ │ │ ├── GetPlasticShortcut.cs │ │ │ │ ├── GetPlasticShortcut.cs.meta │ │ │ │ ├── GuiEnabled.cs │ │ │ │ ├── GuiEnabled.cs.meta │ │ │ │ ├── HandleMenuItem.cs │ │ │ │ ├── HandleMenuItem.cs.meta │ │ │ │ ├── Images.cs │ │ │ │ ├── Images.cs.meta │ │ │ │ ├── MeasureMaxWidth.cs │ │ │ │ ├── MeasureMaxWidth.cs.meta │ │ │ │ ├── Message.meta │ │ │ │ ├── Message │ │ │ │ │ ├── DrawDialogIcon.cs │ │ │ │ │ ├── DrawDialogIcon.cs.meta │ │ │ │ │ ├── PlasticQuestionAlert.cs │ │ │ │ │ └── PlasticQuestionAlert.cs.meta │ │ │ │ ├── NotificationDrawer.cs │ │ │ │ ├── NotificationDrawer.cs.meta │ │ │ │ ├── PlasticDialog.cs │ │ │ │ ├── PlasticDialog.cs.meta │ │ │ │ ├── PlasticSplitterGUILayout.cs │ │ │ │ ├── PlasticSplitterGUILayout.cs.meta │ │ │ │ ├── Progress.meta │ │ │ │ ├── Progress │ │ │ │ │ ├── DrawProgressForDialogs.cs │ │ │ │ │ ├── DrawProgressForDialogs.cs.meta │ │ │ │ │ ├── DrawProgressForOperations.cs │ │ │ │ │ ├── DrawProgressForOperations.cs.meta │ │ │ │ │ ├── DrawProgressForViews.cs │ │ │ │ │ ├── DrawProgressForViews.cs.meta │ │ │ │ │ ├── OperationProgressData.cs │ │ │ │ │ ├── OperationProgressData.cs.meta │ │ │ │ │ ├── ProgressControlsForDialogs.cs │ │ │ │ │ ├── ProgressControlsForDialogs.cs.meta │ │ │ │ │ ├── ProgressControlsForViews.cs │ │ │ │ │ └── ProgressControlsForViews.cs.meta │ │ │ │ ├── ResponseType.cs │ │ │ │ ├── ResponseType.cs.meta │ │ │ │ ├── RunModal.cs │ │ │ │ ├── RunModal.cs.meta │ │ │ │ ├── ShowWindow.cs │ │ │ │ ├── ShowWindow.cs.meta │ │ │ │ ├── SortOrderComparer.cs │ │ │ │ ├── SortOrderComparer.cs.meta │ │ │ │ ├── TabButton.cs │ │ │ │ ├── TabButton.cs.meta │ │ │ │ ├── Tree.meta │ │ │ │ ├── Tree │ │ │ │ │ ├── DrawTreeViewItem.cs │ │ │ │ │ ├── DrawTreeViewItem.cs.meta │ │ │ │ │ ├── GetChangesOverlayIcon.cs │ │ │ │ │ ├── GetChangesOverlayIcon.cs.meta │ │ │ │ │ ├── ListViewItemIds.cs │ │ │ │ │ ├── ListViewItemIds.cs.meta │ │ │ │ │ ├── TableViewOperations.cs │ │ │ │ │ ├── TableViewOperations.cs.meta │ │ │ │ │ ├── TreeHeaderColumns.cs │ │ │ │ │ ├── TreeHeaderColumns.cs.meta │ │ │ │ │ ├── TreeHeaderSettings.cs │ │ │ │ │ ├── TreeHeaderSettings.cs.meta │ │ │ │ │ ├── TreeViewItemIds.cs │ │ │ │ │ └── TreeViewItemIds.cs.meta │ │ │ │ ├── UIElements.meta │ │ │ │ ├── UIElements │ │ │ │ │ ├── LoadingSpinner.cs │ │ │ │ │ ├── LoadingSpinner.cs.meta │ │ │ │ │ ├── ProgressControlsForDialogs.cs │ │ │ │ │ ├── ProgressControlsForDialogs.cs.meta │ │ │ │ │ ├── TabView.cs │ │ │ │ │ ├── TabView.cs.meta │ │ │ │ │ ├── UIElementsExtensions.cs │ │ │ │ │ └── UIElementsExtensions.cs.meta │ │ │ │ ├── UnityConstants.cs │ │ │ │ ├── UnityConstants.cs.meta │ │ │ │ ├── UnityEvents.cs │ │ │ │ ├── UnityEvents.cs.meta │ │ │ │ ├── UnityMenuItem.cs │ │ │ │ ├── UnityMenuItem.cs.meta │ │ │ │ ├── UnityPlasticGuiMessage.cs │ │ │ │ ├── UnityPlasticGuiMessage.cs.meta │ │ │ │ ├── UnityPlasticTimer.cs │ │ │ │ ├── UnityPlasticTimer.cs.meta │ │ │ │ ├── UnityStyles.cs │ │ │ │ ├── UnityStyles.cs.meta │ │ │ │ ├── UnityThreadWaiter.cs │ │ │ │ └── UnityThreadWaiter.cs.meta │ │ │ │ ├── Unity.PlasticSCM.Editor.asmdef │ │ │ │ ├── Unity.PlasticSCM.Editor.asmdef.meta │ │ │ │ ├── UnityConfigurationChecker.cs │ │ │ │ ├── UnityConfigurationChecker.cs.meta │ │ │ │ ├── VCSPlugin.cs │ │ │ │ ├── VCSPlugin.cs.meta │ │ │ │ ├── ViewSwitcher.cs │ │ │ │ ├── ViewSwitcher.cs.meta │ │ │ │ ├── Views.meta │ │ │ │ ├── Views │ │ │ │ ├── Changesets.meta │ │ │ │ ├── Changesets │ │ │ │ │ ├── ChangesetListViewItem.cs │ │ │ │ │ ├── ChangesetListViewItem.cs.meta │ │ │ │ │ ├── ChangesetsListHeaderState.cs │ │ │ │ │ ├── ChangesetsListHeaderState.cs.meta │ │ │ │ │ ├── ChangesetsListView.cs │ │ │ │ │ ├── ChangesetsListView.cs.meta │ │ │ │ │ ├── ChangesetsSelection.cs │ │ │ │ │ ├── ChangesetsSelection.cs.meta │ │ │ │ │ ├── ChangesetsTab.cs │ │ │ │ │ ├── ChangesetsTab.cs.meta │ │ │ │ │ ├── ChangesetsViewMenu.cs │ │ │ │ │ ├── ChangesetsViewMenu.cs.meta │ │ │ │ │ ├── DateFilter.cs │ │ │ │ │ ├── DateFilter.cs.meta │ │ │ │ │ ├── LaunchDiffOperations.cs │ │ │ │ │ └── LaunchDiffOperations.cs.meta │ │ │ │ ├── CreateWorkspace.meta │ │ │ │ ├── CreateWorkspace │ │ │ │ │ ├── CreateWorkspaceView.cs │ │ │ │ │ ├── CreateWorkspaceView.cs.meta │ │ │ │ │ ├── CreateWorkspaceViewState.cs │ │ │ │ │ ├── CreateWorkspaceViewState.cs.meta │ │ │ │ │ ├── Dialogs.meta │ │ │ │ │ ├── Dialogs │ │ │ │ │ │ ├── CreateRepositoryDialog.cs │ │ │ │ │ │ ├── CreateRepositoryDialog.cs.meta │ │ │ │ │ │ ├── RepositoriesListHeaderState.cs │ │ │ │ │ │ ├── RepositoriesListHeaderState.cs.meta │ │ │ │ │ │ ├── RepositoriesListView.cs │ │ │ │ │ │ ├── RepositoriesListView.cs.meta │ │ │ │ │ │ ├── RepositoryExplorerDialog.cs │ │ │ │ │ │ ├── RepositoryExplorerDialog.cs.meta │ │ │ │ │ │ ├── RepositoryListViewItem.cs │ │ │ │ │ │ └── RepositoryListViewItem.cs.meta │ │ │ │ │ ├── DrawCreateWorkspaceView.cs │ │ │ │ │ ├── DrawCreateWorkspaceView.cs.meta │ │ │ │ │ ├── ValidRepositoryName.cs │ │ │ │ │ └── ValidRepositoryName.cs.meta │ │ │ │ ├── Diff.meta │ │ │ │ ├── Diff │ │ │ │ │ ├── ChangeCategoryTreeViewItem.cs │ │ │ │ │ ├── ChangeCategoryTreeViewItem.cs.meta │ │ │ │ │ ├── ClientDiffTreeViewItem.cs │ │ │ │ │ ├── ClientDiffTreeViewItem.cs.meta │ │ │ │ │ ├── Dialogs.meta │ │ │ │ │ ├── Dialogs │ │ │ │ │ │ ├── GetRestorePathDialog.cs │ │ │ │ │ │ └── GetRestorePathDialog.cs.meta │ │ │ │ │ ├── DiffPanel.cs │ │ │ │ │ ├── DiffPanel.cs.meta │ │ │ │ │ ├── DiffSelection.cs │ │ │ │ │ ├── DiffSelection.cs.meta │ │ │ │ │ ├── DiffTreeView.cs │ │ │ │ │ ├── DiffTreeView.cs.meta │ │ │ │ │ ├── DiffTreeViewMenu.cs │ │ │ │ │ ├── DiffTreeViewMenu.cs.meta │ │ │ │ │ ├── GetClientDiffInfos.cs │ │ │ │ │ ├── GetClientDiffInfos.cs.meta │ │ │ │ │ ├── MergeCategoryTreeViewItem.cs │ │ │ │ │ ├── MergeCategoryTreeViewItem.cs.meta │ │ │ │ │ ├── UnityDiffTree.cs │ │ │ │ │ └── UnityDiffTree.cs.meta │ │ │ │ ├── DownloadPlasticExeWindow.cs │ │ │ │ ├── DownloadPlasticExeWindow.cs.meta │ │ │ │ ├── FileSystemOperation.cs │ │ │ │ ├── FileSystemOperation.cs.meta │ │ │ │ ├── History.meta │ │ │ │ ├── History │ │ │ │ │ ├── HistoryListHeaderState.cs │ │ │ │ │ ├── HistoryListHeaderState.cs.meta │ │ │ │ │ ├── HistoryListView.cs │ │ │ │ │ ├── HistoryListView.cs.meta │ │ │ │ │ ├── HistoryListViewItem.cs │ │ │ │ │ ├── HistoryListViewItem.cs.meta │ │ │ │ │ ├── HistoryListViewMenu.cs │ │ │ │ │ ├── HistoryListViewMenu.cs.meta │ │ │ │ │ ├── HistorySelection.cs │ │ │ │ │ ├── HistorySelection.cs.meta │ │ │ │ │ ├── HistoryTab.cs │ │ │ │ │ ├── HistoryTab.cs.meta │ │ │ │ │ ├── SaveAction.cs │ │ │ │ │ └── SaveAction.cs.meta │ │ │ │ ├── IncomingChanges.meta │ │ │ │ ├── IncomingChanges │ │ │ │ │ ├── Developer.meta │ │ │ │ │ ├── Developer │ │ │ │ │ │ ├── ChangeCategoryTreeViewItem.cs │ │ │ │ │ │ ├── ChangeCategoryTreeViewItem.cs.meta │ │ │ │ │ │ ├── ChangeTreeViewItem.cs │ │ │ │ │ │ ├── ChangeTreeViewItem.cs.meta │ │ │ │ │ │ ├── DirectoryConflicts.meta │ │ │ │ │ │ ├── DirectoryConflicts │ │ │ │ │ │ │ ├── ConflictResolutionState.cs │ │ │ │ │ │ │ ├── ConflictResolutionState.cs.meta │ │ │ │ │ │ │ ├── DrawDirectoryResolutionPanel.cs │ │ │ │ │ │ │ └── DrawDirectoryResolutionPanel.cs.meta │ │ │ │ │ │ ├── IncomingChangesSelection.cs │ │ │ │ │ │ ├── IncomingChangesSelection.cs.meta │ │ │ │ │ │ ├── IncomingChangesTab.cs │ │ │ │ │ │ ├── IncomingChangesTab.cs.meta │ │ │ │ │ │ ├── IncomingChangesTreeHeaderState.cs │ │ │ │ │ │ ├── IncomingChangesTreeHeaderState.cs.meta │ │ │ │ │ │ ├── IncomingChangesTreeView.cs │ │ │ │ │ │ ├── IncomingChangesTreeView.cs.meta │ │ │ │ │ │ ├── IncomingChangesViewMenu.cs │ │ │ │ │ │ ├── IncomingChangesViewMenu.cs.meta │ │ │ │ │ │ ├── IsCurrent.cs │ │ │ │ │ │ ├── IsCurrent.cs.meta │ │ │ │ │ │ ├── IsResolved.cs │ │ │ │ │ │ ├── IsResolved.cs.meta │ │ │ │ │ │ ├── UnityIncomingChangesTree.cs │ │ │ │ │ │ └── UnityIncomingChangesTree.cs.meta │ │ │ │ │ ├── Gluon.meta │ │ │ │ │ ├── Gluon │ │ │ │ │ │ ├── ChangeCategoryTreeViewItem.cs │ │ │ │ │ │ ├── ChangeCategoryTreeViewItem.cs.meta │ │ │ │ │ │ ├── ChangeTreeViewItem.cs │ │ │ │ │ │ ├── ChangeTreeViewItem.cs.meta │ │ │ │ │ │ ├── Errors.meta │ │ │ │ │ │ ├── Errors │ │ │ │ │ │ │ ├── ErrorListViewItem.cs │ │ │ │ │ │ │ ├── ErrorListViewItem.cs.meta │ │ │ │ │ │ │ ├── ErrorsListHeaderState.cs │ │ │ │ │ │ │ ├── ErrorsListHeaderState.cs.meta │ │ │ │ │ │ │ ├── ErrorsListView.cs │ │ │ │ │ │ │ └── ErrorsListView.cs.meta │ │ │ │ │ │ ├── IncomingChangesSelection.cs │ │ │ │ │ │ ├── IncomingChangesSelection.cs.meta │ │ │ │ │ │ ├── IncomingChangesTab.cs │ │ │ │ │ │ ├── IncomingChangesTab.cs.meta │ │ │ │ │ │ ├── IncomingChangesTreeHeaderState.cs │ │ │ │ │ │ ├── IncomingChangesTreeHeaderState.cs.meta │ │ │ │ │ │ ├── IncomingChangesTreeView.cs │ │ │ │ │ │ ├── IncomingChangesTreeView.cs.meta │ │ │ │ │ │ ├── IncomingChangesViewMenu.cs │ │ │ │ │ │ ├── IncomingChangesViewMenu.cs.meta │ │ │ │ │ │ ├── UnityIncomingChangesTree.cs │ │ │ │ │ │ └── UnityIncomingChangesTree.cs.meta │ │ │ │ │ ├── IIncomingChangesTab.cs │ │ │ │ │ └── IIncomingChangesTab.cs.meta │ │ │ │ ├── PendingChanges.meta │ │ │ │ ├── PendingChanges │ │ │ │ │ ├── ChangeCategoryTreeViewItem.cs │ │ │ │ │ ├── ChangeCategoryTreeViewItem.cs.meta │ │ │ │ │ ├── ChangeTreeViewItem.cs │ │ │ │ │ ├── ChangeTreeViewItem.cs.meta │ │ │ │ │ ├── Dialogs.meta │ │ │ │ │ ├── Dialogs │ │ │ │ │ │ ├── CheckinConflictsDialog.cs │ │ │ │ │ │ ├── CheckinConflictsDialog.cs.meta │ │ │ │ │ │ ├── CheckinMergeNeededDialog.cs │ │ │ │ │ │ ├── CheckinMergeNeededDialog.cs.meta │ │ │ │ │ │ ├── DependenciesDialog.cs │ │ │ │ │ │ ├── DependenciesDialog.cs.meta │ │ │ │ │ │ ├── EmptyCheckinMessageDialog.cs │ │ │ │ │ │ ├── EmptyCheckinMessageDialog.cs.meta │ │ │ │ │ │ ├── FilterRulesConfirmationDialog.cs │ │ │ │ │ │ ├── FilterRulesConfirmationDialog.cs.meta │ │ │ │ │ │ ├── LaunchCheckinConflictsDialog.cs │ │ │ │ │ │ ├── LaunchCheckinConflictsDialog.cs.meta │ │ │ │ │ │ ├── LaunchDependenciesDialog.cs │ │ │ │ │ │ ├── LaunchDependenciesDialog.cs.meta │ │ │ │ │ │ ├── PendingChangesOptionsDialog.cs │ │ │ │ │ │ └── PendingChangesOptionsDialog.cs.meta │ │ │ │ │ ├── DrawCommentTextArea.cs │ │ │ │ │ ├── DrawCommentTextArea.cs.meta │ │ │ │ │ ├── FilesFilterPatternsMenuBuilder.cs │ │ │ │ │ ├── FilesFilterPatternsMenuBuilder.cs.meta │ │ │ │ │ ├── PendingChangesMultiColumnHeader.cs │ │ │ │ │ ├── PendingChangesMultiColumnHeader.cs.meta │ │ │ │ │ ├── PendingChangesSelection.cs │ │ │ │ │ ├── PendingChangesSelection.cs.meta │ │ │ │ │ ├── PendingChangesTab.cs │ │ │ │ │ ├── PendingChangesTab.cs.meta │ │ │ │ │ ├── PendingChangesTab_Operations.cs │ │ │ │ │ ├── PendingChangesTab_Operations.cs.meta │ │ │ │ │ ├── PendingChangesTreeHeaderState.cs │ │ │ │ │ ├── PendingChangesTreeHeaderState.cs.meta │ │ │ │ │ ├── PendingChangesTreeView.cs │ │ │ │ │ ├── PendingChangesTreeView.cs.meta │ │ │ │ │ ├── PendingChangesViewMenu.cs │ │ │ │ │ ├── PendingChangesViewMenu.cs.meta │ │ │ │ │ ├── PendingMergeLinks.meta │ │ │ │ │ ├── PendingMergeLinks │ │ │ │ │ │ ├── MergeLinkListViewItem.cs │ │ │ │ │ │ ├── MergeLinkListViewItem.cs.meta │ │ │ │ │ │ ├── MergeLinksListView.cs │ │ │ │ │ │ └── MergeLinksListView.cs.meta │ │ │ │ │ ├── UnityPendingChangesTree.cs │ │ │ │ │ └── UnityPendingChangesTree.cs.meta │ │ │ │ ├── Welcome.meta │ │ │ │ └── Welcome │ │ │ │ │ ├── DownloadAndInstallOperation.cs │ │ │ │ │ ├── DownloadAndInstallOperation.cs.meta │ │ │ │ │ ├── GetInstallerTmpFileName.cs │ │ │ │ │ ├── GetInstallerTmpFileName.cs.meta │ │ │ │ │ ├── MacOSConfigWorkaround.cs │ │ │ │ │ ├── MacOSConfigWorkaround.cs.meta │ │ │ │ │ ├── WelcomeView.cs │ │ │ │ │ └── WelcomeView.cs.meta │ │ │ │ ├── WebApi.meta │ │ │ │ ├── WebApi │ │ │ │ ├── ChangesetFromCollabCommitResponse.cs │ │ │ │ ├── ChangesetFromCollabCommitResponse.cs.meta │ │ │ │ ├── CredentialsResponse.cs │ │ │ │ ├── CredentialsResponse.cs.meta │ │ │ │ ├── IsCollabProjectMigratedResponse.cs │ │ │ │ ├── IsCollabProjectMigratedResponse.cs.meta │ │ │ │ ├── OrganizationCredentials.cs │ │ │ │ ├── OrganizationCredentials.cs.meta │ │ │ │ ├── TokenExchangeResponse.cs │ │ │ │ ├── TokenExchangeResponse.cs.meta │ │ │ │ ├── UnityPackageBetaEnrollResponse.cs │ │ │ │ ├── UnityPackageBetaEnrollResponse.cs.meta │ │ │ │ ├── WebRestApiClient.cs │ │ │ │ └── WebRestApiClient.cs.meta │ │ │ │ ├── WorkspaceWindow.cs │ │ │ │ └── WorkspaceWindow.cs.meta │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── Lib.meta │ │ ├── Lib │ │ │ ├── Editor.meta │ │ │ └── Editor │ │ │ │ ├── PlasticSCM.meta │ │ │ │ └── PlasticSCM │ │ │ │ ├── FileSystemWatcherLicense.txt │ │ │ │ ├── FileSystemWatcherLicense.txt.meta │ │ │ │ ├── Unity.Plastic.Antlr3.Runtime.dll │ │ │ │ ├── Unity.Plastic.Antlr3.Runtime.dll.meta │ │ │ │ ├── Unity.Plastic.Newtonsoft.Json.dll │ │ │ │ ├── Unity.Plastic.Newtonsoft.Json.dll.meta │ │ │ │ ├── liblz4Plastic.dylib │ │ │ │ ├── liblz4Plastic.dylib.meta │ │ │ │ ├── localization.meta │ │ │ │ ├── localization │ │ │ │ ├── basecommands.en.txt │ │ │ │ ├── basecommands.en.txt.meta │ │ │ │ ├── basecommands.es.txt │ │ │ │ ├── basecommands.es.txt.meta │ │ │ │ ├── basecommands.ja.txt │ │ │ │ ├── basecommands.ja.txt.meta │ │ │ │ ├── basecommands.ko.txt │ │ │ │ ├── basecommands.ko.txt.meta │ │ │ │ ├── basecommands.zh-Hans.txt │ │ │ │ ├── basecommands.zh-Hans.txt.meta │ │ │ │ ├── basecommands.zh-Hant.txt │ │ │ │ ├── basecommands.zh-Hant.txt.meta │ │ │ │ ├── binmergetool.en.txt │ │ │ │ ├── binmergetool.en.txt.meta │ │ │ │ ├── binmergetool.es.txt │ │ │ │ ├── binmergetool.es.txt.meta │ │ │ │ ├── binmergetool.ja.txt │ │ │ │ ├── binmergetool.ja.txt.meta │ │ │ │ ├── binmergetool.ko.txt │ │ │ │ ├── binmergetool.ko.txt.meta │ │ │ │ ├── binmergetool.zh-Hans.txt │ │ │ │ ├── binmergetool.zh-Hans.txt.meta │ │ │ │ ├── binmergetool.zh-Hant.txt │ │ │ │ ├── binmergetool.zh-Hant.txt.meta │ │ │ │ ├── clientcommon.en.txt │ │ │ │ ├── clientcommon.en.txt.meta │ │ │ │ ├── clientcommon.es.txt │ │ │ │ ├── clientcommon.es.txt.meta │ │ │ │ ├── clientcommon.ja.txt │ │ │ │ ├── clientcommon.ja.txt.meta │ │ │ │ ├── clientcommon.ko.txt │ │ │ │ ├── clientcommon.ko.txt.meta │ │ │ │ ├── clientcommon.zh-Hans.txt │ │ │ │ ├── clientcommon.zh-Hans.txt.meta │ │ │ │ ├── clientcommon.zh-Hant.txt │ │ │ │ ├── clientcommon.zh-Hant.txt.meta │ │ │ │ ├── cm-help.en.txt │ │ │ │ ├── cm-help.en.txt.meta │ │ │ │ ├── cm-help.es.txt │ │ │ │ ├── cm-help.es.txt.meta │ │ │ │ ├── cm-help.ja.txt │ │ │ │ ├── cm-help.ja.txt.meta │ │ │ │ ├── cm-help.ko.txt │ │ │ │ ├── cm-help.ko.txt.meta │ │ │ │ ├── cm-help.zh-Hans.txt │ │ │ │ ├── cm-help.zh-Hans.txt.meta │ │ │ │ ├── cm-help.zh-Hant.txt │ │ │ │ ├── cm-help.zh-Hant.txt.meta │ │ │ │ ├── cm.en.txt │ │ │ │ ├── cm.en.txt.meta │ │ │ │ ├── cm.es.txt │ │ │ │ ├── cm.es.txt.meta │ │ │ │ ├── cm.ja.txt │ │ │ │ ├── cm.ja.txt.meta │ │ │ │ ├── cm.ko.txt │ │ │ │ ├── cm.ko.txt.meta │ │ │ │ ├── cm.zh-Hans.txt │ │ │ │ ├── cm.zh-Hans.txt.meta │ │ │ │ ├── cm.zh-Hant.txt │ │ │ │ ├── cm.zh-Hant.txt.meta │ │ │ │ ├── commontypes.en.txt │ │ │ │ ├── commontypes.en.txt.meta │ │ │ │ ├── commontypes.es.txt │ │ │ │ ├── commontypes.es.txt.meta │ │ │ │ ├── commontypes.ja.txt │ │ │ │ ├── commontypes.ja.txt.meta │ │ │ │ ├── commontypes.ko.txt │ │ │ │ ├── commontypes.ko.txt.meta │ │ │ │ ├── commontypes.zh-Hans.txt │ │ │ │ ├── commontypes.zh-Hans.txt.meta │ │ │ │ ├── commontypes.zh-Hant.txt │ │ │ │ ├── commontypes.zh-Hant.txt.meta │ │ │ │ ├── configurehelper.en.txt │ │ │ │ ├── configurehelper.en.txt.meta │ │ │ │ ├── configurehelper.es.txt │ │ │ │ ├── configurehelper.es.txt.meta │ │ │ │ ├── configurehelper.ja.txt │ │ │ │ ├── configurehelper.ja.txt.meta │ │ │ │ ├── configurehelper.ko.txt │ │ │ │ ├── configurehelper.ko.txt.meta │ │ │ │ ├── configurehelper.zh-Hans.txt │ │ │ │ ├── configurehelper.zh-Hans.txt.meta │ │ │ │ ├── configurehelper.zh-Hant.txt │ │ │ │ ├── configurehelper.zh-Hant.txt.meta │ │ │ │ ├── differences.en.txt │ │ │ │ ├── differences.en.txt.meta │ │ │ │ ├── differences.es.txt │ │ │ │ ├── differences.es.txt.meta │ │ │ │ ├── differences.ja.txt │ │ │ │ ├── differences.ja.txt.meta │ │ │ │ ├── differences.ko.txt │ │ │ │ ├── differences.ko.txt.meta │ │ │ │ ├── differences.zh-Hans.txt │ │ │ │ ├── differences.zh-Hans.txt.meta │ │ │ │ ├── differences.zh-Hant.txt │ │ │ │ ├── differences.zh-Hant.txt.meta │ │ │ │ ├── guihelp.en.txt │ │ │ │ ├── guihelp.en.txt.meta │ │ │ │ ├── guihelp.es.txt │ │ │ │ ├── guihelp.es.txt.meta │ │ │ │ ├── guihelp.ja.txt │ │ │ │ ├── guihelp.ja.txt.meta │ │ │ │ ├── guihelp.ko.txt │ │ │ │ ├── guihelp.ko.txt.meta │ │ │ │ ├── guihelp.zh-Hans.txt │ │ │ │ ├── guihelp.zh-Hans.txt.meta │ │ │ │ ├── guihelp.zh-Hant.txt │ │ │ │ ├── guihelp.zh-Hant.txt.meta │ │ │ │ ├── i3.en.txt │ │ │ │ ├── i3.en.txt.meta │ │ │ │ ├── i3.es.txt │ │ │ │ ├── i3.es.txt.meta │ │ │ │ ├── i3.ja.txt │ │ │ │ ├── i3.ja.txt.meta │ │ │ │ ├── i3.ko.txt │ │ │ │ ├── i3.ko.txt.meta │ │ │ │ ├── i3.zh-Hans.txt │ │ │ │ ├── i3.zh-Hans.txt.meta │ │ │ │ ├── i3.zh-Hant.txt │ │ │ │ ├── i3.zh-Hant.txt.meta │ │ │ │ ├── images.en.txt │ │ │ │ ├── images.en.txt.meta │ │ │ │ ├── images.es.txt │ │ │ │ ├── images.es.txt.meta │ │ │ │ ├── images.ja.txt │ │ │ │ ├── images.ja.txt.meta │ │ │ │ ├── images.ko.txt │ │ │ │ ├── images.ko.txt.meta │ │ │ │ ├── images.zh-Hans.txt │ │ │ │ ├── images.zh-Hans.txt.meta │ │ │ │ ├── images.zh-Hant.txt │ │ │ │ ├── images.zh-Hant.txt.meta │ │ │ │ ├── mergetool.en.txt │ │ │ │ ├── mergetool.en.txt.meta │ │ │ │ ├── mergetool.es.txt │ │ │ │ ├── mergetool.es.txt.meta │ │ │ │ ├── mergetool.ja.txt │ │ │ │ ├── mergetool.ja.txt.meta │ │ │ │ ├── mergetool.ko.txt │ │ │ │ ├── mergetool.ko.txt.meta │ │ │ │ ├── mergetool.zh-Hans.txt │ │ │ │ ├── mergetool.zh-Hans.txt.meta │ │ │ │ ├── mergetool.zh-Hant.txt │ │ │ │ ├── mergetool.zh-Hant.txt.meta │ │ │ │ ├── plastic-gui.en.txt │ │ │ │ ├── plastic-gui.en.txt.meta │ │ │ │ ├── plastic-gui.es.txt │ │ │ │ ├── plastic-gui.es.txt.meta │ │ │ │ ├── plastic-gui.ja.txt │ │ │ │ ├── plastic-gui.ja.txt.meta │ │ │ │ ├── plastic-gui.ko.txt │ │ │ │ ├── plastic-gui.ko.txt.meta │ │ │ │ ├── plastic-gui.zh-Hans.txt │ │ │ │ ├── plastic-gui.zh-Hans.txt.meta │ │ │ │ ├── plastic-gui.zh-Hant.txt │ │ │ │ ├── plastic-gui.zh-Hant.txt.meta │ │ │ │ ├── semantic.en.txt │ │ │ │ ├── semantic.en.txt.meta │ │ │ │ ├── semantic.ja.txt │ │ │ │ ├── semantic.ja.txt.meta │ │ │ │ ├── semantic.ko.txt │ │ │ │ ├── semantic.ko.txt.meta │ │ │ │ ├── semantic.zh-Hans.txt │ │ │ │ ├── semantic.zh-Hans.txt.meta │ │ │ │ ├── semantic.zh-Hant.txt │ │ │ │ ├── semantic.zh-Hant.txt.meta │ │ │ │ ├── workspaceserver.en.txt │ │ │ │ ├── workspaceserver.en.txt.meta │ │ │ │ ├── workspaceserver.es.txt │ │ │ │ ├── workspaceserver.es.txt.meta │ │ │ │ ├── workspaceserver.ja.txt │ │ │ │ ├── workspaceserver.ja.txt.meta │ │ │ │ ├── workspaceserver.ko.txt │ │ │ │ ├── workspaceserver.ko.txt.meta │ │ │ │ ├── workspaceserver.zh-Hans.txt │ │ │ │ ├── workspaceserver.zh-Hans.txt.meta │ │ │ │ ├── workspaceserver.zh-Hant.txt │ │ │ │ ├── workspaceserver.zh-Hant.txt.meta │ │ │ │ ├── xdiff.en.txt │ │ │ │ ├── xdiff.en.txt.meta │ │ │ │ ├── xdiff.es.txt │ │ │ │ ├── xdiff.es.txt.meta │ │ │ │ ├── xdiff.ja.txt │ │ │ │ ├── xdiff.ja.txt.meta │ │ │ │ ├── xdiff.ko.txt │ │ │ │ ├── xdiff.ko.txt.meta │ │ │ │ ├── xdiff.zh-Hans.txt │ │ │ │ ├── xdiff.zh-Hans.txt.meta │ │ │ │ ├── xdiff.zh-Hant.txt │ │ │ │ └── xdiff.zh-Hant.txt.meta │ │ │ │ ├── log4netPlastic.dll │ │ │ │ ├── log4netPlastic.dll.meta │ │ │ │ ├── lz4x64Plastic.dll │ │ │ │ ├── lz4x64Plastic.dll.meta │ │ │ │ ├── unityplastic.dll │ │ │ │ ├── unityplastic.dll.meta │ │ │ │ ├── zlib64Plastic.dll │ │ │ │ └── zlib64Plastic.dll.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Tests.meta │ │ ├── Tests │ │ │ ├── .tests.json │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── Collaborate.meta │ │ │ │ ├── Collaborate │ │ │ │ │ ├── Models.meta │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── ChangesModelTests.cs │ │ │ │ │ │ ├── ChangesModelTests.cs.meta │ │ │ │ │ │ ├── HistoryModelTests.cs │ │ │ │ │ │ ├── HistoryModelTests.cs.meta │ │ │ │ │ │ ├── Providers.meta │ │ │ │ │ │ ├── Providers │ │ │ │ │ │ │ ├── MockSourceControlProvider.cs │ │ │ │ │ │ │ └── MockSourceControlProvider.cs.meta │ │ │ │ │ │ ├── StartModelTests.cs │ │ │ │ │ │ ├── StartModelTests.cs.meta │ │ │ │ │ │ ├── TestChangesModel.cs │ │ │ │ │ │ ├── TestChangesModel.cs.meta │ │ │ │ │ │ ├── TestHistoryModel.cs │ │ │ │ │ │ ├── TestHistoryModel.cs.meta │ │ │ │ │ │ ├── TestMainModel.cs │ │ │ │ │ │ ├── TestMainModel.cs.meta │ │ │ │ │ │ ├── TestSourceControlProvider.cs │ │ │ │ │ │ ├── TestSourceControlProvider.cs.meta │ │ │ │ │ │ ├── TestStartModel.cs │ │ │ │ │ │ ├── TestStartModel.cs.meta │ │ │ │ │ │ ├── TestWindowCache.cs │ │ │ │ │ │ └── TestWindowCache.cs.meta │ │ │ │ │ ├── Presenters.meta │ │ │ │ │ ├── Presenters │ │ │ │ │ │ ├── ChangesPresenterTests.cs │ │ │ │ │ │ ├── ChangesPresenterTests.cs.meta │ │ │ │ │ │ ├── HistoryPresenterTests.cs │ │ │ │ │ │ ├── HistoryPresenterTests.cs.meta │ │ │ │ │ │ ├── MainPresenterTests.cs │ │ │ │ │ │ ├── MainPresenterTests.cs.meta │ │ │ │ │ │ ├── StartPresenterTests.cs │ │ │ │ │ │ ├── StartPresenterTests.cs.meta │ │ │ │ │ │ ├── TestChangesView.cs │ │ │ │ │ │ ├── TestChangesView.cs.meta │ │ │ │ │ │ ├── TestHistoryView.cs │ │ │ │ │ │ ├── TestHistoryView.cs.meta │ │ │ │ │ │ ├── TestMainView.cs │ │ │ │ │ │ ├── TestMainView.cs.meta │ │ │ │ │ │ ├── TestStartView.cs │ │ │ │ │ │ └── TestStartView.cs.meta │ │ │ │ │ ├── Scenario.meta │ │ │ │ │ ├── Scenario │ │ │ │ │ │ ├── AsyncToCoroutine.cs │ │ │ │ │ │ ├── AsyncToCoroutine.cs.meta │ │ │ │ │ │ ├── BasicTests.cs │ │ │ │ │ │ └── BasicTests.cs.meta │ │ │ │ │ ├── ScenarioTestBase.cs │ │ │ │ │ ├── ScenarioTestBase.cs.meta │ │ │ │ │ ├── TestConstants.cs │ │ │ │ │ ├── TestConstants.cs.meta │ │ │ │ │ ├── TestHelpers.cs │ │ │ │ │ ├── TestHelpers.cs.meta │ │ │ │ │ ├── TestWindow.cs │ │ │ │ │ ├── TestWindow.cs.meta │ │ │ │ │ ├── UITestHelpers.cs │ │ │ │ │ ├── UITestHelpers.cs.meta │ │ │ │ │ ├── Unity.CollabProxy.EditorTests.asmdef │ │ │ │ │ └── Unity.CollabProxy.EditorTests.asmdef.meta │ │ │ │ ├── PlasticSCM.meta │ │ │ │ └── PlasticSCM │ │ │ │ │ ├── AssetMenu.meta │ │ │ │ │ ├── AssetMenu │ │ │ │ │ ├── AssetMenuUpdaterTests.cs │ │ │ │ │ ├── AssetMenuUpdaterTests.cs.meta │ │ │ │ │ ├── SelectedAssetGroupInfoTests.cs │ │ │ │ │ └── SelectedAssetGroupInfoTests.cs.meta │ │ │ │ │ ├── Mock.meta │ │ │ │ │ ├── Mock │ │ │ │ │ ├── BuildWorkspaceTreeNode.cs │ │ │ │ │ ├── BuildWorkspaceTreeNode.cs.meta │ │ │ │ │ ├── PlasticApiMock.cs │ │ │ │ │ └── PlasticApiMock.cs.meta │ │ │ │ │ ├── ProjectDownloader.meta │ │ │ │ │ ├── ProjectDownloader │ │ │ │ │ ├── CommandLineArgumentsTests.cs │ │ │ │ │ ├── CommandLineArgumentsTests.cs.meta │ │ │ │ │ ├── ParseArgumentsTest.cs │ │ │ │ │ └── ParseArgumentsTest.cs.meta │ │ │ │ │ ├── UI.meta │ │ │ │ │ ├── UI │ │ │ │ │ ├── EditorVersionTests.cs │ │ │ │ │ ├── EditorVersionTests.cs.meta │ │ │ │ │ ├── TextureLoadTests.cs │ │ │ │ │ └── TextureLoadTests.cs.meta │ │ │ │ │ ├── Unity.PlasticSCM.EditorTests.asmdef │ │ │ │ │ ├── Unity.PlasticSCM.EditorTests.asmdef.meta │ │ │ │ │ ├── Views.meta │ │ │ │ │ └── Views │ │ │ │ │ ├── Diff.meta │ │ │ │ │ ├── Diff │ │ │ │ │ ├── UnityDiffTreeTests.cs │ │ │ │ │ └── UnityDiffTreeTests.cs.meta │ │ │ │ │ ├── IncomingChanges.meta │ │ │ │ │ ├── IncomingChanges │ │ │ │ │ ├── Developer.meta │ │ │ │ │ ├── Developer │ │ │ │ │ │ ├── IsCurrentTests.cs │ │ │ │ │ │ ├── IsCurrentTests.cs.meta │ │ │ │ │ │ ├── IsResolvedTests.cs │ │ │ │ │ │ ├── IsResolvedTests.cs.meta │ │ │ │ │ │ ├── MergetTreeResultMock.cs │ │ │ │ │ │ ├── MergetTreeResultMock.cs.meta │ │ │ │ │ │ ├── UnityIncomingChangesTreeTests.cs │ │ │ │ │ │ └── UnityIncomingChangesTreeTests.cs.meta │ │ │ │ │ ├── Gluon.meta │ │ │ │ │ └── Gluon │ │ │ │ │ │ ├── UnityIncomingChangesTreeTests.cs │ │ │ │ │ │ └── UnityIncomingChangesTreeTests.cs.meta │ │ │ │ │ ├── PendingChanges.meta │ │ │ │ │ └── PendingChanges │ │ │ │ │ ├── UnityPendingChangesTreeTests.cs │ │ │ │ │ └── UnityPendingChangesTreeTests.cs.meta │ │ │ ├── README.md │ │ │ └── README.md.meta │ │ ├── Third Party Notices.md │ │ ├── Third Party Notices.md.meta │ │ ├── ValidationConfig.json │ │ ├── ValidationConfig.json.meta │ │ ├── ValidationExceptions.json │ │ ├── ValidationExceptions.json.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.editorcoroutines@1.0.0 │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── Documentation~ │ │ │ ├── TableOfContents.md │ │ │ └── index.md │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── EditorCoroutine.cs │ │ │ ├── EditorCoroutine.cs.meta │ │ │ ├── EditorCoroutineUtility.cs │ │ │ ├── EditorCoroutineUtility.cs.meta │ │ │ ├── EditorWaitForSeconds.cs │ │ │ ├── EditorWaitForSeconds.cs.meta │ │ │ ├── EditorWindowCoroutineExtension.cs │ │ │ ├── EditorWindowCoroutineExtension.cs.meta │ │ │ ├── Unity.EditorCoroutines.Editor.asmdef │ │ │ └── Unity.EditorCoroutines.Editor.asmdef.meta │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.ext.nunit@1.0.6 │ │ ├── .gitlab-ci.yml │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── Documentation~ │ │ │ └── ext.nunit.md │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── net35.meta │ │ ├── net35 │ │ │ ├── unity-custom.meta │ │ │ └── unity-custom │ │ │ │ ├── nunit.framework.dll │ │ │ │ └── nunit.framework.dll.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.ide.rider@2.0.7 │ │ ├── .editorconfig │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTING.md.meta │ │ ├── Documentation~ │ │ │ ├── README.md │ │ │ ├── TableOfContents.md │ │ │ ├── images │ │ │ │ ├── preferences-rider-tab.png │ │ │ │ └── preferences-settings-external-tools-window.png │ │ │ ├── index.md │ │ │ └── using-the-jetbrains-rider-editor-package.md │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── Rider.meta │ │ ├── Rider │ │ │ ├── Editor.meta │ │ │ └── Editor │ │ │ │ ├── Discovery.cs │ │ │ │ ├── Discovery.cs.meta │ │ │ │ ├── EditorPluginInterop.cs │ │ │ │ ├── EditorPluginInterop.cs.meta │ │ │ │ ├── LoggingLevel.cs │ │ │ │ ├── LoggingLevel.cs.meta │ │ │ │ ├── PluginSettings.cs │ │ │ │ ├── PluginSettings.cs.meta │ │ │ │ ├── PostProcessors.meta │ │ │ │ ├── PostProcessors │ │ │ │ ├── RiderAssetPostprocessor.cs │ │ │ │ └── RiderAssetPostprocessor.cs.meta │ │ │ │ ├── ProjectGeneration.meta │ │ │ │ ├── ProjectGeneration │ │ │ │ ├── AssemblyNameProvider.cs │ │ │ │ ├── AssemblyNameProvider.cs.meta │ │ │ │ ├── FileIOProvider.cs │ │ │ │ ├── FileIOProvider.cs.meta │ │ │ │ ├── GUIDProvider.cs │ │ │ │ ├── GUIDProvider.cs.meta │ │ │ │ ├── IAssemblyNameProvider.cs │ │ │ │ ├── IAssemblyNameProvider.cs.meta │ │ │ │ ├── IFileIO.cs │ │ │ │ ├── IFileIO.cs.meta │ │ │ │ ├── IGUIDGenerator.cs │ │ │ │ ├── IGUIDGenerator.cs.meta │ │ │ │ ├── IGenerator.cs │ │ │ │ ├── IGenerator.cs.meta │ │ │ │ ├── ProjectGeneration.cs │ │ │ │ ├── ProjectGeneration.cs.meta │ │ │ │ ├── ProjectGenerationFlag.cs │ │ │ │ ├── ProjectGenerationFlag.cs.meta │ │ │ │ ├── SolutionGuidGenerator.cs │ │ │ │ └── SolutionGuidGenerator.cs.meta │ │ │ │ ├── Properties.meta │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── AssemblyInfo.cs.meta │ │ │ │ ├── RiderFileSystemWatcher.cs │ │ │ │ ├── RiderFileSystemWatcher.cs.meta │ │ │ │ ├── RiderInitializer.cs │ │ │ │ ├── RiderInitializer.cs.meta │ │ │ │ ├── RiderScriptEditor.cs │ │ │ │ ├── RiderScriptEditor.cs.meta │ │ │ │ ├── RiderScriptEditorData.cs │ │ │ │ ├── RiderScriptEditorData.cs.meta │ │ │ │ ├── UnitTesting.meta │ │ │ │ ├── UnitTesting │ │ │ │ ├── CallbackData.cs │ │ │ │ ├── CallbackData.cs.meta │ │ │ │ ├── CallbackInitializer.cs │ │ │ │ ├── CallbackInitializer.cs.meta │ │ │ │ ├── RiderTestRunner.cs │ │ │ │ ├── RiderTestRunner.cs.meta │ │ │ │ ├── SyncTestRunCallback.cs │ │ │ │ ├── SyncTestRunCallback.cs.meta │ │ │ │ ├── SyncTestRunEventsHandler.cs │ │ │ │ ├── SyncTestRunEventsHandler.cs.meta │ │ │ │ ├── TestEvent.cs │ │ │ │ ├── TestEvent.cs.meta │ │ │ │ ├── TestsCallback.cs │ │ │ │ └── TestsCallback.cs.meta │ │ │ │ ├── Util.meta │ │ │ │ ├── Util │ │ │ │ ├── CommandLineParser.cs │ │ │ │ ├── CommandLineParser.cs.meta │ │ │ │ ├── FileSystemUtil.cs │ │ │ │ ├── FileSystemUtil.cs.meta │ │ │ │ ├── LibcNativeInterop.cs │ │ │ │ ├── LibcNativeInterop.cs.meta │ │ │ │ ├── RiderMenu.cs │ │ │ │ ├── RiderMenu.cs.meta │ │ │ │ ├── SerializableVersion.cs │ │ │ │ └── SerializableVersion.cs.meta │ │ │ │ ├── com.unity.ide.rider.asmdef │ │ │ │ └── com.unity.ide.rider.asmdef.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.ide.visualstudio@2.0.11 │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTING.md.meta │ │ ├── Documentation~ │ │ │ └── README.md │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── AppleEventIntegration~ │ │ │ │ ├── AppleEventIntegration.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── AppleEventIntegration │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── main.mm │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyInfo.cs.meta │ │ │ ├── AsyncOperation.cs │ │ │ ├── AsyncOperation.cs.meta │ │ │ ├── COMIntegration.meta │ │ │ ├── COMIntegration │ │ │ │ ├── COMIntegration~ │ │ │ │ │ ├── BStrHolder.h │ │ │ │ │ ├── BStrHolder.h.meta │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CMakeLists.txt.meta │ │ │ │ │ ├── COMIntegration.cpp │ │ │ │ │ ├── COMIntegration.cpp.meta │ │ │ │ │ ├── ComPtr.h │ │ │ │ │ ├── ComPtr.h.meta │ │ │ │ │ ├── dte80a.tlh │ │ │ │ │ ├── dte80a.tlh.meta │ │ │ │ │ ├── release-build.txt │ │ │ │ │ └── release-build.txt.meta │ │ │ │ ├── Release.meta │ │ │ │ └── Release │ │ │ │ │ ├── COMIntegration.exe │ │ │ │ │ └── COMIntegration.exe.meta │ │ │ ├── Cli.cs │ │ │ ├── Cli.cs.meta │ │ │ ├── Discovery.cs │ │ │ ├── Discovery.cs.meta │ │ │ ├── FileUtility.cs │ │ │ ├── FileUtility.cs.meta │ │ │ ├── Image.cs │ │ │ ├── Image.cs.meta │ │ │ ├── KnownAssemblies.cs │ │ │ ├── KnownAssemblies.cs.meta │ │ │ ├── Messaging.meta │ │ │ ├── Messaging │ │ │ │ ├── Deserializer.cs │ │ │ │ ├── Deserializer.cs.meta │ │ │ │ ├── ExceptionEventArgs.cs │ │ │ │ ├── ExceptionEventArgs.cs.meta │ │ │ │ ├── Message.cs │ │ │ │ ├── Message.cs.meta │ │ │ │ ├── MessageEventArgs.cs │ │ │ │ ├── MessageEventArgs.cs.meta │ │ │ │ ├── MessageType.cs │ │ │ │ ├── MessageType.cs.meta │ │ │ │ ├── Messenger.cs │ │ │ │ ├── Messenger.cs.meta │ │ │ │ ├── Serializer.cs │ │ │ │ ├── Serializer.cs.meta │ │ │ │ ├── TcpClient.cs │ │ │ │ ├── TcpClient.cs.meta │ │ │ │ ├── TcpListener.cs │ │ │ │ ├── TcpListener.cs.meta │ │ │ │ ├── UdpSocket.cs │ │ │ │ └── UdpSocket.cs.meta │ │ │ ├── Plugins.meta │ │ │ ├── Plugins │ │ │ │ ├── .gitattributes │ │ │ │ ├── AppleEventIntegration.bundle.meta │ │ │ │ └── AppleEventIntegration.bundle │ │ │ │ │ ├── Contents.meta │ │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Info.plist.meta │ │ │ │ │ ├── MacOS.meta │ │ │ │ │ ├── MacOS │ │ │ │ │ ├── AppleEventIntegration │ │ │ │ │ └── AppleEventIntegration.meta │ │ │ │ │ ├── _CodeSignature.meta │ │ │ │ │ └── _CodeSignature │ │ │ │ │ ├── CodeResources │ │ │ │ │ └── CodeResources.meta │ │ │ ├── ProjectGeneration.meta │ │ │ ├── ProjectGeneration │ │ │ │ ├── AssemblyNameProvider.cs │ │ │ │ ├── AssemblyNameProvider.cs.meta │ │ │ │ ├── FileIOProvider.cs │ │ │ │ ├── FileIOProvider.cs.meta │ │ │ │ ├── GUIDProvider.cs │ │ │ │ ├── GUIDProvider.cs.meta │ │ │ │ ├── ProjectGeneration.cs │ │ │ │ ├── ProjectGeneration.cs.meta │ │ │ │ ├── ProjectGenerationFlag.cs │ │ │ │ ├── ProjectGenerationFlag.cs.meta │ │ │ │ ├── ProjectProperties.cs │ │ │ │ └── ProjectProperties.cs.meta │ │ │ ├── Solution.cs │ │ │ ├── Solution.cs.meta │ │ │ ├── SolutionParser.cs │ │ │ ├── SolutionParser.cs.meta │ │ │ ├── SolutionProjectEntry.cs │ │ │ ├── SolutionProjectEntry.cs.meta │ │ │ ├── SolutionProperties.cs │ │ │ ├── SolutionProperties.cs.meta │ │ │ ├── Symbols.cs │ │ │ ├── Symbols.cs.meta │ │ │ ├── Testing.meta │ │ │ ├── Testing │ │ │ │ ├── TestAdaptor.cs │ │ │ │ ├── TestAdaptor.cs.meta │ │ │ │ ├── TestResultAdaptor.cs │ │ │ │ ├── TestResultAdaptor.cs.meta │ │ │ │ ├── TestRunnerApiListener.cs │ │ │ │ ├── TestRunnerApiListener.cs.meta │ │ │ │ ├── TestRunnerCallbacks.cs │ │ │ │ ├── TestRunnerCallbacks.cs.meta │ │ │ │ ├── TestStatusAdaptor.cs │ │ │ │ └── TestStatusAdaptor.cs.meta │ │ │ ├── UnityInstallation.cs │ │ │ ├── UnityInstallation.cs.meta │ │ │ ├── UsageUtility.cs │ │ │ ├── UsageUtility.cs.meta │ │ │ ├── VSWhere.meta │ │ │ ├── VSWhere │ │ │ │ ├── vswhere.exe │ │ │ │ └── vswhere.exe.meta │ │ │ ├── VersionPair.cs │ │ │ ├── VersionPair.cs.meta │ │ │ ├── VisualStudioEditor.cs │ │ │ ├── VisualStudioEditor.cs.meta │ │ │ ├── VisualStudioInstallation.cs │ │ │ ├── VisualStudioInstallation.cs.meta │ │ │ ├── VisualStudioIntegration.cs │ │ │ ├── VisualStudioIntegration.cs.meta │ │ │ ├── com.unity.ide.visualstudio.asmdef │ │ │ └── com.unity.ide.visualstudio.asmdef.meta │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── ThirdPartyNotices.md │ │ ├── ThirdPartyNotices.md.meta │ │ ├── ValidationConfig.json │ │ ├── ValidationConfig.json.meta │ │ ├── ValidationExceptions.json │ │ ├── ValidationExceptions.json.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.ide.vscode@1.2.4 │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTING.md.meta │ │ ├── Documentation~ │ │ │ └── README.md │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── ProjectGeneration.meta │ │ │ ├── ProjectGeneration │ │ │ │ ├── AssemblyNameProvider.cs │ │ │ │ ├── AssemblyNameProvider.cs.meta │ │ │ │ ├── FileIO.cs │ │ │ │ ├── FileIO.cs.meta │ │ │ │ ├── GUIDGenerator.cs │ │ │ │ ├── GUIDGenerator.cs.meta │ │ │ │ ├── ProjectGeneration.cs │ │ │ │ ├── ProjectGeneration.cs.meta │ │ │ │ ├── ProjectGenerationFlag.cs │ │ │ │ ├── ProjectGenerationFlag.cs.meta │ │ │ │ ├── StringUtils.cs │ │ │ │ └── StringUtils.cs.meta │ │ │ ├── Unity.com.unity.vscode.Editor.asmdef │ │ │ ├── Unity.com.unity.vscode.Editor.asmdef.meta │ │ │ ├── VSCodeDiscovery.cs │ │ │ ├── VSCodeDiscovery.cs.meta │ │ │ ├── VSCodeScriptEditor.cs │ │ │ └── VSCodeScriptEditor.cs.meta │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.ai@1.0.0 │ │ ├── .icon.png │ │ ├── .icon.png.meta │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.androidjni@1.0.0 │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.animation@1.0.0 │ │ ├── .icon.png │ │ ├── .icon.png.meta │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.assetbundle@1.0.0 │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.audio@1.0.0 │ │ ├── .icon.png │ │ ├── .icon.png.meta │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.cloth@1.0.0 │ │ ├── .icon.png │ │ ├── .icon.png.meta │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.director@1.0.0 │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.imageconversion@1.0.0 │ │ ├── .icon.png │ │ ├── .icon.png.meta │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.imgui@1.0.0 │ │ ├── .icon.png │ │ ├── .icon.png.meta │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.jsonserialize@1.0.0 │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.particlesystem@1.0.0 │ │ ├── .icon.png │ │ ├── .icon.png.meta │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.physics2d@1.0.0 │ │ ├── .icon.png │ │ ├── .icon.png.meta │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.physics@1.0.0 │ │ ├── .icon.png │ │ ├── .icon.png.meta │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.screencapture@1.0.0 │ │ ├── .icon.png │ │ ├── .icon.png.meta │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.subsystems@1.0.0 │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.terrain@1.0.0 │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.terrainphysics@1.0.0 │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.tilemap@1.0.0 │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.ui@1.0.0 │ │ ├── .icon.png │ │ ├── .icon.png.meta │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.uielements@1.0.0 │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.uielementsnative@1.0.0 │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.umbra@1.0.0 │ │ ├── .icon.png │ │ ├── .icon.png.meta │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.unityanalytics@1.0.0 │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.unitywebrequest@1.0.0 │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.unitywebrequestassetbundle@1.0.0 │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.unitywebrequestaudio@1.0.0 │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.unitywebrequesttexture@1.0.0 │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.unitywebrequestwww@1.0.0 │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.vehicles@1.0.0 │ │ ├── .icon.png │ │ ├── .icon.png.meta │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.video@1.0.0 │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.vr@1.0.0 │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.wind@1.0.0 │ │ ├── .icon.png │ │ ├── .icon.png.meta │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.modules.xr@1.0.0 │ │ ├── package.ModuleCompilationTrigger │ │ ├── package.ModuleCompilationTrigger.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.nuget.newtonsoft-json@2.0.0 │ │ ├── .gitattributes │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── Documentation~ │ │ │ └── index.md │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Runtime.meta │ │ ├── Runtime │ │ │ ├── AOT.meta │ │ │ ├── AOT │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.dll.meta │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Newtonsoft.Json.dll.meta │ │ │ ├── Portable.meta │ │ │ └── Portable │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.dll.meta │ │ ├── Tests.meta │ │ ├── Tests │ │ │ ├── .tests.json │ │ │ ├── Editor.meta │ │ │ └── Editor │ │ │ │ ├── SanityTests.cs │ │ │ │ ├── SanityTests.cs.meta │ │ │ │ ├── Unity.Nuget.NewtonsoftJson.EditorTests.asmdef │ │ │ │ └── Unity.Nuget.NewtonsoftJson.EditorTests.asmdef.meta │ │ ├── Third Party Notices.md │ │ ├── Third Party Notices.md.meta │ │ ├── link.xml │ │ ├── link.xml.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.services.core@1.0.1 │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── Documentation~ │ │ │ └── index.md │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Core.meta │ │ │ └── Core │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── AssemblyInfo.cs.meta │ │ │ │ ├── AsyncOperation.meta │ │ │ │ ├── AsyncOperation │ │ │ │ ├── AsyncOperation.cs │ │ │ │ ├── AsyncOperation.cs.meta │ │ │ │ ├── AsyncOperationAwaiter.cs │ │ │ │ ├── AsyncOperationAwaiter.cs.meta │ │ │ │ ├── AsyncOperationExtensions.cs │ │ │ │ ├── AsyncOperationExtensions.cs.meta │ │ │ │ ├── AsyncOperationStatus.cs │ │ │ │ ├── AsyncOperationStatus.cs.meta │ │ │ │ ├── IAsyncOperation.cs │ │ │ │ ├── IAsyncOperation.cs.meta │ │ │ │ ├── IAsyncOperationAwaiter.cs │ │ │ │ └── IAsyncOperationAwaiter.cs.meta │ │ │ │ ├── BackendHelpers.meta │ │ │ │ ├── BackendHelpers │ │ │ │ ├── JsonHelper.cs │ │ │ │ ├── JsonHelper.cs.meta │ │ │ │ ├── UnityWebRequestHelper.cs │ │ │ │ └── UnityWebRequestHelper.cs.meta │ │ │ │ ├── EditorGameService.meta │ │ │ │ ├── EditorGameService │ │ │ │ ├── Analytics.meta │ │ │ │ ├── Analytics │ │ │ │ │ ├── EditorGameServiceAnalyticsSender.cs │ │ │ │ │ └── EditorGameServiceAnalyticsSender.cs.meta │ │ │ │ ├── DefaultCdnConfiguredEndpoint.cs │ │ │ │ ├── DefaultCdnConfiguredEndpoint.cs.meta │ │ │ │ ├── EditorGameServiceDashboardHelper.cs │ │ │ │ ├── EditorGameServiceDashboardHelper.cs.meta │ │ │ │ ├── EditorGameServiceFlagEnabler.cs │ │ │ │ ├── EditorGameServiceFlagEnabler.cs.meta │ │ │ │ ├── EditorGameServiceRegistry.cs │ │ │ │ ├── EditorGameServiceRegistry.cs.meta │ │ │ │ ├── EditorGameServiceRemoteConfiguration.cs │ │ │ │ ├── EditorGameServiceRemoteConfiguration.cs.meta │ │ │ │ ├── EditorGameServiceSettingsProvider.cs │ │ │ │ ├── EditorGameServiceSettingsProvider.cs.meta │ │ │ │ ├── IEditorGameService.cs │ │ │ │ ├── IEditorGameService.cs.meta │ │ │ │ ├── IEditorGameServiceEnabler.cs │ │ │ │ ├── IEditorGameServiceEnabler.cs.meta │ │ │ │ ├── IEditorGameServiceIdentifier.cs │ │ │ │ ├── IEditorGameServiceIdentifier.cs.meta │ │ │ │ ├── IEditorGameServiceRegistry.cs │ │ │ │ ├── IEditorGameServiceRegistry.cs.meta │ │ │ │ ├── ServiceFlagEndpoint.cs │ │ │ │ ├── ServiceFlagEndpoint.cs.meta │ │ │ │ ├── ServiceInstallationListener.cs │ │ │ │ ├── ServiceInstallationListener.cs.meta │ │ │ │ ├── USS.meta │ │ │ │ └── USS │ │ │ │ │ ├── ServicesProjectSettingsCommon.uss │ │ │ │ │ ├── ServicesProjectSettingsCommon.uss.meta │ │ │ │ │ ├── ServicesProjectSettingsDark.uss │ │ │ │ │ ├── ServicesProjectSettingsDark.uss.meta │ │ │ │ │ ├── ServicesProjectSettingsLight.uss │ │ │ │ │ └── ServicesProjectSettingsLight.uss.meta │ │ │ │ ├── Networking.meta │ │ │ │ ├── Networking │ │ │ │ ├── HttpOptions.cs │ │ │ │ ├── HttpOptions.cs.meta │ │ │ │ ├── HttpRequest.cs │ │ │ │ ├── HttpRequest.cs.meta │ │ │ │ ├── HttpRequestExtensions.cs │ │ │ │ ├── HttpRequestExtensions.cs.meta │ │ │ │ ├── HttpResponse.cs │ │ │ │ ├── HttpResponse.cs.meta │ │ │ │ ├── HttpServiceConfig.cs │ │ │ │ ├── HttpServiceConfig.cs.meta │ │ │ │ ├── IHttpClient.cs │ │ │ │ ├── IHttpClient.cs.meta │ │ │ │ ├── ReadOnlyHttpRequest.cs │ │ │ │ ├── ReadOnlyHttpRequest.cs.meta │ │ │ │ ├── ReadOnlyHttpResponse.cs │ │ │ │ ├── ReadOnlyHttpResponse.cs.meta │ │ │ │ ├── UnityWebRequestClient.cs │ │ │ │ └── UnityWebRequestClient.cs.meta │ │ │ │ ├── ProjectStateManagement.meta │ │ │ │ ├── ProjectStateManagement │ │ │ │ ├── IProjectStateHelper.cs │ │ │ │ ├── IProjectStateHelper.cs.meta │ │ │ │ ├── IProjectStateRequest.cs │ │ │ │ ├── IProjectStateRequest.cs.meta │ │ │ │ ├── IServiceFlagRequest.cs │ │ │ │ ├── IServiceFlagRequest.cs.meta │ │ │ │ ├── IServiceFlags.cs │ │ │ │ ├── IServiceFlags.cs.meta │ │ │ │ ├── ProjectState.cs │ │ │ │ ├── ProjectState.cs.meta │ │ │ │ ├── ProjectStateHelper.cs │ │ │ │ ├── ProjectStateHelper.cs.meta │ │ │ │ ├── ProjectStateRequest.cs │ │ │ │ ├── ProjectStateRequest.cs.meta │ │ │ │ ├── ServiceFlagRequest.cs │ │ │ │ ├── ServiceFlagRequest.cs.meta │ │ │ │ ├── ServiceFlags.cs │ │ │ │ └── ServiceFlags.cs.meta │ │ │ │ ├── ServiceActivationPopup.meta │ │ │ │ ├── ServiceActivationPopup │ │ │ │ ├── IActivationPopupVisual.cs │ │ │ │ ├── IActivationPopupVisual.cs.meta │ │ │ │ ├── ServiceActivationPopupWindow.cs │ │ │ │ ├── ServiceActivationPopupWindow.cs.meta │ │ │ │ ├── Visuals.meta │ │ │ │ └── Visuals │ │ │ │ │ ├── CoppaVisual.cs │ │ │ │ │ ├── CoppaVisual.cs.meta │ │ │ │ │ ├── ExceptionVisual.cs │ │ │ │ │ ├── ExceptionVisual.cs.meta │ │ │ │ │ ├── InsufficientPermissionVisual.cs │ │ │ │ │ ├── InsufficientPermissionVisual.cs.meta │ │ │ │ │ ├── LoggedOutVisual.cs │ │ │ │ │ ├── LoggedOutVisual.cs.meta │ │ │ │ │ ├── OfflineVisual.cs │ │ │ │ │ ├── OfflineVisual.cs.meta │ │ │ │ │ ├── ProjectBindAndUserRequestVisual.cs │ │ │ │ │ ├── ProjectBindAndUserRequestVisual.cs.meta │ │ │ │ │ ├── ProjectBindVisual.cs │ │ │ │ │ ├── ProjectBindVisual.cs.meta │ │ │ │ │ ├── ServiceActivationConfirmationVisual.cs │ │ │ │ │ ├── ServiceActivationConfirmationVisual.cs.meta │ │ │ │ │ ├── ServiceActivationPopupVisual.cs │ │ │ │ │ ├── ServiceActivationPopupVisual.cs.meta │ │ │ │ │ ├── USS.meta │ │ │ │ │ ├── USS │ │ │ │ │ ├── ServiceActivationWindow.uss │ │ │ │ │ └── ServiceActivationWindow.uss.meta │ │ │ │ │ ├── UXML.meta │ │ │ │ │ ├── UXML │ │ │ │ │ ├── CoppaCompliance.uxml │ │ │ │ │ ├── CoppaCompliance.uxml.meta │ │ │ │ │ ├── EndConfirmation.uxml │ │ │ │ │ ├── EndConfirmation.uxml.meta │ │ │ │ │ ├── General.uxml │ │ │ │ │ ├── General.uxml.meta │ │ │ │ │ ├── InsufficientPermission.uxml │ │ │ │ │ ├── InsufficientPermission.uxml.meta │ │ │ │ │ ├── ProjectBind.uxml │ │ │ │ │ ├── ProjectBind.uxml.meta │ │ │ │ │ ├── ProjectBindingAndUserRequest.uxml │ │ │ │ │ └── ProjectBindingAndUserRequest.uxml.meta │ │ │ │ │ ├── UserRequestVisual.cs │ │ │ │ │ └── UserRequestVisual.cs.meta │ │ │ │ ├── UiHelpers.meta │ │ │ │ ├── UiHelpers │ │ │ │ ├── AccessTokenErrorUiHelper.cs │ │ │ │ ├── AccessTokenErrorUiHelper.cs.meta │ │ │ │ ├── ExceptionHelper.cs │ │ │ │ ├── ExceptionHelper.cs.meta │ │ │ │ ├── IProjectEditorDrawerFactory.cs │ │ │ │ ├── IProjectEditorDrawerFactory.cs.meta │ │ │ │ ├── Images.meta │ │ │ │ ├── Images │ │ │ │ │ ├── ToggleOff.png │ │ │ │ │ ├── ToggleOff.png.meta │ │ │ │ │ ├── ToggleOn.png │ │ │ │ │ └── ToggleOn.png.meta │ │ │ │ ├── LoggedOutUiHelper.cs │ │ │ │ ├── LoggedOutUiHelper.cs.meta │ │ │ │ ├── OfflineUiHelper.cs │ │ │ │ ├── OfflineUiHelper.cs.meta │ │ │ │ ├── PlatformSupportUiHelper.cs │ │ │ │ ├── PlatformSupportUiHelper.cs.meta │ │ │ │ ├── SettingsCommonHeaderUiHelper.cs │ │ │ │ ├── SettingsCommonHeaderUiHelper.cs.meta │ │ │ │ ├── SliderToggleUiHelper.cs │ │ │ │ ├── SliderToggleUiHelper.cs.meta │ │ │ │ ├── USS.meta │ │ │ │ ├── USS │ │ │ │ │ ├── PlatformSupportVisualCommon.uss │ │ │ │ │ ├── PlatformSupportVisualCommon.uss.meta │ │ │ │ │ ├── PlatformSupportVisualDark.uss │ │ │ │ │ ├── PlatformSupportVisualDark.uss.meta │ │ │ │ │ ├── PlatformSupportVisualLight.uss │ │ │ │ │ ├── PlatformSupportVisualLight.uss.meta │ │ │ │ │ ├── SliderToggleCommon.uss │ │ │ │ │ └── SliderToggleCommon.uss.meta │ │ │ │ ├── UXML.meta │ │ │ │ ├── UXML │ │ │ │ │ ├── AccessTokenError.uxml │ │ │ │ │ ├── AccessTokenError.uxml.meta │ │ │ │ │ ├── ExceptionVisual.uxml │ │ │ │ │ ├── ExceptionVisual.uxml.meta │ │ │ │ │ ├── LoggedOut.uxml │ │ │ │ │ ├── LoggedOut.uxml.meta │ │ │ │ │ ├── Offline.uxml │ │ │ │ │ ├── Offline.uxml.meta │ │ │ │ │ ├── PlatformSupportVisual.uxml │ │ │ │ │ ├── PlatformSupportVisual.uxml.meta │ │ │ │ │ ├── PleaseWait.uxml │ │ │ │ │ ├── PleaseWait.uxml.meta │ │ │ │ │ ├── ProjectSettingsCommonHeader.uxml │ │ │ │ │ └── ProjectSettingsCommonHeader.uxml.meta │ │ │ │ ├── UserRoleRequestUiHelper.cs │ │ │ │ ├── UserRoleRequestUiHelper.cs.meta │ │ │ │ ├── VisualElementHelper.cs │ │ │ │ └── VisualElementHelper.cs.meta │ │ │ │ ├── Unity.Services.Core.Editor.api │ │ │ │ ├── Unity.Services.Core.Editor.api.meta │ │ │ │ ├── Unity.Services.Core.Editor.asmdef │ │ │ │ ├── Unity.Services.Core.Editor.asmdef.meta │ │ │ │ ├── UserRoleManagement.meta │ │ │ │ ├── UserRoleManagement │ │ │ │ ├── IUserRoleHandler.cs │ │ │ │ ├── IUserRoleHandler.cs.meta │ │ │ │ ├── IUserRoleRequest.cs │ │ │ │ ├── IUserRoleRequest.cs.meta │ │ │ │ ├── UserRole.cs │ │ │ │ ├── UserRole.cs.meta │ │ │ │ ├── UserRoleHandler.cs │ │ │ │ ├── UserRoleHandler.cs.meta │ │ │ │ ├── UserRoleRequest.cs │ │ │ │ └── UserRoleRequest.cs.meta │ │ │ │ ├── Utils.meta │ │ │ │ └── Utils │ │ │ │ ├── MiniJson.cs │ │ │ │ └── MiniJson.cs.meta │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Third Party Notices.md │ │ ├── Third Party Notices.md.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.test-framework@1.1.29 │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTING.md.meta │ │ ├── Documentation~ │ │ │ ├── TableOfContents.md │ │ │ ├── edit-mode-vs-play-mode-tests.md │ │ │ ├── extending.md │ │ │ ├── extension-get-test-results.md │ │ │ ├── extension-retrieve-test-list.md │ │ │ ├── extension-run-tests.md │ │ │ ├── getting-started.md │ │ │ ├── images │ │ │ │ ├── assembly-definition-references.png │ │ │ │ ├── editmode-create-test-script.png │ │ │ │ ├── editmode-run-test.png │ │ │ │ ├── editmode-run-tests.png │ │ │ │ ├── editmode-tab.png │ │ │ │ ├── execution-order-full.svg │ │ │ │ ├── execution-order-outerunitytestaction.svg │ │ │ │ ├── execution-order-unitysetup-teardown.svg │ │ │ │ ├── import-settings.png │ │ │ │ ├── new-test-script.png │ │ │ │ ├── playmode-disable-all.png │ │ │ │ ├── playmode-results-standalone.png │ │ │ │ ├── playmode-run-standalone.png │ │ │ │ ├── playmode-tab.png │ │ │ │ ├── test-runner-window.png │ │ │ │ ├── test-templates.png │ │ │ │ └── tests-folder-assembly.png │ │ │ ├── index.md │ │ │ ├── manual.md │ │ │ ├── reference-actions-outside-tests.md │ │ │ ├── reference-attribute-conditionalignore.md │ │ │ ├── reference-attribute-testmustexpectalllogs.md │ │ │ ├── reference-attribute-testplayerbuildmodifier.md │ │ │ ├── reference-attribute-testruncallback.md │ │ │ ├── reference-attribute-unityplatform.md │ │ │ ├── reference-attribute-unitytest.md │ │ │ ├── reference-command-line.md │ │ │ ├── reference-comparer-color.md │ │ │ ├── reference-comparer-equals.md │ │ │ ├── reference-comparer-float.md │ │ │ ├── reference-comparer-quaternion.md │ │ │ ├── reference-comparer-vector2.md │ │ │ ├── reference-comparer-vector3.md │ │ │ ├── reference-comparer-vector4.md │ │ │ ├── reference-custom-assertion.md │ │ │ ├── reference-custom-attributes.md │ │ │ ├── reference-custom-constraints.md │ │ │ ├── reference-custom-equality-comparers.md │ │ │ ├── reference-custom-yield-instructions.md │ │ │ ├── reference-execution-settings.md │ │ │ ├── reference-filter.md │ │ │ ├── reference-icallbacks.md │ │ │ ├── reference-ierror-callbacks.md │ │ │ ├── reference-itest-adaptor.md │ │ │ ├── reference-itest-result-adaptor.md │ │ │ ├── reference-itest-run-settings.md │ │ │ ├── reference-outerunitytestaction.md │ │ │ ├── reference-recompile-scripts.md │ │ │ ├── reference-setup-and-cleanup.md │ │ │ ├── reference-test-runner-api.md │ │ │ ├── reference-test-utils.md │ │ │ ├── reference-tests-monobehaviour.md │ │ │ ├── reference-tests-parameterized.md │ │ │ ├── reference-unitysetup-and-unityteardown.md │ │ │ ├── reference-wait-for-domain-reload.md │ │ │ ├── resources.md │ │ │ ├── workflow-create-playmode-test.md │ │ │ ├── workflow-create-test-assembly.md │ │ │ ├── workflow-create-test.md │ │ │ ├── workflow-run-playmode-test-standalone.md │ │ │ └── workflow-run-test.md │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── UnityEditor.TestRunner.meta │ │ ├── UnityEditor.TestRunner │ │ │ ├── Api.meta │ │ │ ├── Api │ │ │ │ ├── CallbacksDelegator.cs │ │ │ │ ├── CallbacksDelegator.cs.meta │ │ │ │ ├── CallbacksDelegatorListener.cs │ │ │ │ ├── CallbacksDelegatorListener.cs.meta │ │ │ │ ├── CallbacksHolder.cs │ │ │ │ ├── CallbacksHolder.cs.meta │ │ │ │ ├── ExecutionSettings.cs │ │ │ │ ├── ExecutionSettings.cs.meta │ │ │ │ ├── Filter.cs │ │ │ │ ├── Filter.cs.meta │ │ │ │ ├── ICallbacks.cs │ │ │ │ ├── ICallbacks.cs.meta │ │ │ │ ├── ICallbacksDelegator.cs │ │ │ │ ├── ICallbacksDelegator.cs.meta │ │ │ │ ├── ICallbacksHolder.cs │ │ │ │ ├── ICallbacksHolder.cs.meta │ │ │ │ ├── IErrorCallbacks.cs │ │ │ │ ├── IErrorCallbacks.cs.meta │ │ │ │ ├── ITestAdaptor.cs │ │ │ │ ├── ITestAdaptor.cs.meta │ │ │ │ ├── ITestAdaptorFactory.cs │ │ │ │ ├── ITestAdaptorFactory.cs.meta │ │ │ │ ├── ITestResultAdaptor.cs │ │ │ │ ├── ITestResultAdaptor.cs.meta │ │ │ │ ├── ITestRunSettings.cs │ │ │ │ ├── ITestRunSettings.cs.meta │ │ │ │ ├── ITestRunnerApi.cs │ │ │ │ ├── ITestRunnerApi.cs.meta │ │ │ │ ├── ITestTreeRebuildCallbacks.cs │ │ │ │ ├── ITestTreeRebuildCallbacks.cs.meta │ │ │ │ ├── RunState.cs │ │ │ │ ├── RunState.cs.meta │ │ │ │ ├── TestAdaptor.cs │ │ │ │ ├── TestAdaptor.cs.meta │ │ │ │ ├── TestAdaptorFactory.cs │ │ │ │ ├── TestAdaptorFactory.cs.meta │ │ │ │ ├── TestMode.cs │ │ │ │ ├── TestMode.cs.meta │ │ │ │ ├── TestResultAdaptor.cs │ │ │ │ ├── TestResultAdaptor.cs.meta │ │ │ │ ├── TestRunnerApi.cs │ │ │ │ ├── TestRunnerApi.cs.meta │ │ │ │ ├── TestStatus.cs │ │ │ │ └── TestStatus.cs.meta │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyInfo.cs.meta │ │ │ ├── CommandLineParser.meta │ │ │ ├── CommandLineParser │ │ │ │ ├── CommandLineOption.cs │ │ │ │ ├── CommandLineOption.cs.meta │ │ │ │ ├── CommandLineOptionSet.cs │ │ │ │ ├── CommandLineOptionSet.cs.meta │ │ │ │ ├── ICommandLineOption.cs │ │ │ │ └── ICommandLineOption.cs.meta │ │ │ ├── CommandLineTest.meta │ │ │ ├── CommandLineTest │ │ │ │ ├── Executer.cs │ │ │ │ ├── Executer.cs.meta │ │ │ │ ├── ExecutionSettings.cs │ │ │ │ ├── ExecutionSettings.cs.meta │ │ │ │ ├── ExitCallbacks.cs │ │ │ │ ├── ExitCallbacks.cs.meta │ │ │ │ ├── ExitCallbacksDataHolder.cs │ │ │ │ ├── ExitCallbacksDataHolder.cs.meta │ │ │ │ ├── ISettingsBuilder.cs │ │ │ │ ├── ISettingsBuilder.cs.meta │ │ │ │ ├── LogSavingCallbacks.cs │ │ │ │ ├── LogSavingCallbacks.cs.meta │ │ │ │ ├── LogWriter.cs │ │ │ │ ├── LogWriter.cs.meta │ │ │ │ ├── ResultsSavingCallbacks.cs │ │ │ │ ├── ResultsSavingCallbacks.cs.meta │ │ │ │ ├── ResultsWriter.cs │ │ │ │ ├── ResultsWriter.cs.meta │ │ │ │ ├── RunData.cs │ │ │ │ ├── RunData.cs.meta │ │ │ │ ├── RunSettings.cs │ │ │ │ ├── RunSettings.cs.meta │ │ │ │ ├── SettingsBuilder.cs │ │ │ │ ├── SettingsBuilder.cs.meta │ │ │ │ ├── SetupException.cs │ │ │ │ ├── SetupException.cs.meta │ │ │ │ ├── TestStarter.cs │ │ │ │ └── TestStarter.cs.meta │ │ │ ├── GUI.meta │ │ │ ├── GUI │ │ │ │ ├── AssetsDatabaseHelper.cs │ │ │ │ ├── AssetsDatabaseHelper.cs.meta │ │ │ │ ├── GuiHelper.cs │ │ │ │ ├── GuiHelper.cs.meta │ │ │ │ ├── IAssetsDatabaseHelper.cs │ │ │ │ ├── IAssetsDatabaseHelper.cs.meta │ │ │ │ ├── IGuiHelper.cs │ │ │ │ ├── IGuiHelper.cs.meta │ │ │ │ ├── TestListBuilder.meta │ │ │ │ ├── TestListBuilder │ │ │ │ │ ├── RenderingOptions.cs │ │ │ │ │ ├── RenderingOptions.cs.meta │ │ │ │ │ ├── ResultSummarizer.cs │ │ │ │ │ ├── ResultSummarizer.cs.meta │ │ │ │ │ ├── TestFilterSettings.cs │ │ │ │ │ ├── TestFilterSettings.cs.meta │ │ │ │ │ ├── TestTreeViewBuilder.cs │ │ │ │ │ └── TestTreeViewBuilder.cs.meta │ │ │ │ ├── TestListGuiHelper.cs │ │ │ │ ├── TestListGuiHelper.cs.meta │ │ │ │ ├── TestListTreeView.meta │ │ │ │ ├── TestListTreeView │ │ │ │ │ ├── Icons.cs │ │ │ │ │ ├── Icons.cs.meta │ │ │ │ │ ├── TestListTreeViewDataSource.cs │ │ │ │ │ ├── TestListTreeViewDataSource.cs.meta │ │ │ │ │ ├── TestListTreeViewGUI.cs │ │ │ │ │ ├── TestListTreeViewGUI.cs.meta │ │ │ │ │ ├── TestTreeViewItem.cs │ │ │ │ │ └── TestTreeViewItem.cs.meta │ │ │ │ ├── TestRunnerResult.cs │ │ │ │ ├── TestRunnerResult.cs.meta │ │ │ │ ├── TestRunnerUIFilter.cs │ │ │ │ ├── TestRunnerUIFilter.cs.meta │ │ │ │ ├── UITestRunnerFilter.cs │ │ │ │ ├── UITestRunnerFilter.cs.meta │ │ │ │ ├── Views.meta │ │ │ │ └── Views │ │ │ │ │ ├── EditModeTestListGUI.cs │ │ │ │ │ ├── EditModeTestListGUI.cs.meta │ │ │ │ │ ├── PlayModeTestListGUI.cs │ │ │ │ │ ├── PlayModeTestListGUI.cs.meta │ │ │ │ │ ├── TestListGUIBase.cs │ │ │ │ │ └── TestListGUIBase.cs.meta │ │ │ ├── NUnitExtension.meta │ │ │ ├── NUnitExtension │ │ │ │ ├── Attributes.meta │ │ │ │ ├── Attributes │ │ │ │ │ ├── AssetPipelineIgnore.cs │ │ │ │ │ ├── AssetPipelineIgnore.cs.meta │ │ │ │ │ ├── ITestPlayerBuildModifier.cs │ │ │ │ │ ├── ITestPlayerBuildModifier.cs.meta │ │ │ │ │ ├── TestPlayerBuildModifierAttribute.cs │ │ │ │ │ └── TestPlayerBuildModifierAttribute.cs.meta │ │ │ │ ├── TestRunnerStateSerializer.cs │ │ │ │ └── TestRunnerStateSerializer.cs.meta │ │ │ ├── RequireApiProfileAttribute.cs │ │ │ ├── RequireApiProfileAttribute.cs.meta │ │ │ ├── RequirePlatformSupportAttribute.cs │ │ │ ├── RequirePlatformSupportAttribute.cs.meta │ │ │ ├── TestBuildAssemblyFilter.cs │ │ │ ├── TestBuildAssemblyFilter.cs.meta │ │ │ ├── TestLaunchers.meta │ │ │ ├── TestLaunchers │ │ │ │ ├── AttributeFinderBase.cs │ │ │ │ ├── AttributeFinderBase.cs.meta │ │ │ │ ├── DelayedCallback.cs │ │ │ │ ├── DelayedCallback.cs.meta │ │ │ │ ├── EditModeLauncher.cs │ │ │ │ ├── EditModeLauncher.cs.meta │ │ │ │ ├── EditModeLauncherContextSettings.cs │ │ │ │ ├── EditModeLauncherContextSettings.cs.meta │ │ │ │ ├── PlatformSetup.meta │ │ │ │ ├── PlatformSetup │ │ │ │ │ ├── AndroidPlatformSetup.cs │ │ │ │ │ ├── AndroidPlatformSetup.cs.meta │ │ │ │ │ ├── ApplePlatformSetup.cs │ │ │ │ │ ├── ApplePlatformSetup.cs.meta │ │ │ │ │ ├── IPlatformSetup.cs │ │ │ │ │ ├── IPlatformSetup.cs.meta │ │ │ │ │ ├── LuminPlatformSetup.cs │ │ │ │ │ ├── LuminPlatformSetup.cs.meta │ │ │ │ │ ├── PlatformSpecificSetup.cs │ │ │ │ │ ├── PlatformSpecificSetup.cs.meta │ │ │ │ │ ├── StadiaPlatformSetup.cs │ │ │ │ │ ├── StadiaPlatformSetup.cs.meta │ │ │ │ │ ├── SwitchPlatformSetup.cs │ │ │ │ │ ├── SwitchPlatformSetup.cs.meta │ │ │ │ │ ├── UwpPlatformSetup.cs │ │ │ │ │ ├── UwpPlatformSetup.cs.meta │ │ │ │ │ ├── XboxOnePlatformSetup.cs │ │ │ │ │ └── XboxOnePlatformSetup.cs.meta │ │ │ │ ├── PlayerLauncher.cs │ │ │ │ ├── PlayerLauncher.cs.meta │ │ │ │ ├── PlayerLauncherBuildOptions.cs │ │ │ │ ├── PlayerLauncherBuildOptions.cs.meta │ │ │ │ ├── PlayerLauncherContextSettings.cs │ │ │ │ ├── PlayerLauncherContextSettings.cs.meta │ │ │ │ ├── PlayerLauncherTestRunSettings.cs │ │ │ │ ├── PlayerLauncherTestRunSettings.cs.meta │ │ │ │ ├── PlaymodeLauncher.cs │ │ │ │ ├── PlaymodeLauncher.cs.meta │ │ │ │ ├── PostbuildCleanupAttributeFinder.cs │ │ │ │ ├── PostbuildCleanupAttributeFinder.cs.meta │ │ │ │ ├── PrebuildSetupAttributeFinder.cs │ │ │ │ ├── PrebuildSetupAttributeFinder.cs.meta │ │ │ │ ├── RemotePlayerLogController.cs │ │ │ │ ├── RemotePlayerLogController.cs.meta │ │ │ │ ├── RemotePlayerTestController.cs │ │ │ │ ├── RemotePlayerTestController.cs.meta │ │ │ │ ├── RemoteTestResultReciever.cs │ │ │ │ ├── RemoteTestResultReciever.cs.meta │ │ │ │ ├── RuntimeTestLauncherBase.cs │ │ │ │ ├── RuntimeTestLauncherBase.cs.meta │ │ │ │ ├── TestLauncherBase.cs │ │ │ │ └── TestLauncherBase.cs.meta │ │ │ ├── TestResultSerializer.cs │ │ │ ├── TestResultSerializer.cs.meta │ │ │ ├── TestRun.meta │ │ │ ├── TestRun │ │ │ │ ├── Tasks.meta │ │ │ │ ├── Tasks │ │ │ │ │ ├── BuildActionTaskBase.cs │ │ │ │ │ ├── BuildActionTaskBase.cs.meta │ │ │ │ │ ├── BuildTestTreeTask.cs │ │ │ │ │ ├── BuildTestTreeTask.cs.meta │ │ │ │ │ ├── CleanupVerificationTask.cs │ │ │ │ │ ├── CleanupVerificationTask.cs.meta │ │ │ │ │ ├── FileCleanupVerifierTaskBase.cs │ │ │ │ │ ├── FileCleanupVerifierTaskBase.cs.meta │ │ │ │ │ ├── LegacyEditModeRunTask.cs │ │ │ │ │ ├── LegacyEditModeRunTask.cs.meta │ │ │ │ │ ├── LegacyPlayModeRunTask.cs │ │ │ │ │ ├── LegacyPlayModeRunTask.cs.meta │ │ │ │ │ ├── LegacyPlayerRunTask.cs │ │ │ │ │ ├── LegacyPlayerRunTask.cs.meta │ │ │ │ │ ├── PerformUndoTask.cs │ │ │ │ │ ├── PerformUndoTask.cs.meta │ │ │ │ │ ├── PrebuildSetupTask.cs │ │ │ │ │ ├── PrebuildSetupTask.cs.meta │ │ │ │ │ ├── RegisterFilesForCleanupVerificationTask.cs │ │ │ │ │ ├── RegisterFilesForCleanupVerificationTask.cs.meta │ │ │ │ │ ├── SaveModiedSceneTask.cs │ │ │ │ │ ├── SaveModiedSceneTask.cs.meta │ │ │ │ │ ├── SaveUndoIndexTask.cs │ │ │ │ │ ├── SaveUndoIndexTask.cs.meta │ │ │ │ │ ├── TestTaskBase.cs │ │ │ │ │ └── TestTaskBase.cs.meta │ │ │ │ ├── TestJobData.cs │ │ │ │ ├── TestJobData.cs.meta │ │ │ │ ├── TestJobDataHolder.cs │ │ │ │ ├── TestJobDataHolder.cs.meta │ │ │ │ ├── TestJobRunner.cs │ │ │ │ ├── TestJobRunner.cs.meta │ │ │ │ ├── TestRunCanceledException.cs │ │ │ │ └── TestRunCanceledException.cs.meta │ │ │ ├── TestRunner.meta │ │ │ ├── TestRunner │ │ │ │ ├── Callbacks.meta │ │ │ │ ├── Callbacks │ │ │ │ │ ├── EditModeRunnerCallback.cs │ │ │ │ │ ├── EditModeRunnerCallback.cs.meta │ │ │ │ │ ├── RerunCallback.cs │ │ │ │ │ ├── RerunCallback.cs.meta │ │ │ │ │ ├── RerunCallbackData.cs │ │ │ │ │ ├── RerunCallbackData.cs.meta │ │ │ │ │ ├── RerunCallbackInitializer.cs │ │ │ │ │ ├── RerunCallbackInitializer.cs.meta │ │ │ │ │ ├── TestRunnerCallback.cs │ │ │ │ │ ├── TestRunnerCallback.cs.meta │ │ │ │ │ ├── WindowResultUpdater.cs │ │ │ │ │ ├── WindowResultUpdater.cs.meta │ │ │ │ │ ├── WindowResultUpdaterDataHolder.cs │ │ │ │ │ └── WindowResultUpdaterDataHolder.cs.meta │ │ │ │ ├── EditModePCHelper.cs │ │ │ │ ├── EditModePCHelper.cs.meta │ │ │ │ ├── EditModeRunner.cs │ │ │ │ ├── EditModeRunner.cs.meta │ │ │ │ ├── EditmodeWorkItemFactory.cs │ │ │ │ ├── EditmodeWorkItemFactory.cs.meta │ │ │ │ ├── EditorEnumeratorTestWorkItem.cs │ │ │ │ ├── EditorEnumeratorTestWorkItem.cs.meta │ │ │ │ ├── EnumeratorStepHelper.cs │ │ │ │ ├── EnumeratorStepHelper.cs.meta │ │ │ │ ├── Messages.meta │ │ │ │ ├── Messages │ │ │ │ │ ├── EnterPlayMode.cs │ │ │ │ │ ├── EnterPlayMode.cs.meta │ │ │ │ │ ├── ExitPlayMode.cs │ │ │ │ │ ├── ExitPlayMode.cs.meta │ │ │ │ │ ├── RecompileScripts.cs │ │ │ │ │ ├── RecompileScripts.cs.meta │ │ │ │ │ ├── WaitForDomainReload.cs │ │ │ │ │ └── WaitForDomainReload.cs.meta │ │ │ │ ├── Utils.meta │ │ │ │ └── Utils │ │ │ │ │ ├── CachingTestListProvider.cs │ │ │ │ │ ├── CachingTestListProvider.cs.meta │ │ │ │ │ ├── EditorAssembliesProxy.cs │ │ │ │ │ ├── EditorAssembliesProxy.cs.meta │ │ │ │ │ ├── EditorAssemblyWrapper.cs │ │ │ │ │ ├── EditorAssemblyWrapper.cs.meta │ │ │ │ │ ├── EditorCompilationInterfaceProxy.cs │ │ │ │ │ ├── EditorCompilationInterfaceProxy.cs.meta │ │ │ │ │ ├── EditorLoadedTestAssemblyProvider.cs │ │ │ │ │ ├── EditorLoadedTestAssemblyProvider.cs.meta │ │ │ │ │ ├── IEditorAssembliesProxy.cs │ │ │ │ │ ├── IEditorAssembliesProxy.cs.meta │ │ │ │ │ ├── IEditorCompilationInterfaceProxy.cs │ │ │ │ │ ├── IEditorCompilationInterfaceProxy.cs.meta │ │ │ │ │ ├── IEditorLoadedTestAssemblyProvider.cs │ │ │ │ │ ├── IEditorLoadedTestAssemblyProvider.cs.meta │ │ │ │ │ ├── ITestListCache.cs │ │ │ │ │ ├── ITestListCache.cs.meta │ │ │ │ │ ├── ITestListCacheData.cs │ │ │ │ │ ├── ITestListCacheData.cs.meta │ │ │ │ │ ├── ITestListProvider.cs │ │ │ │ │ ├── ITestListProvider.cs.meta │ │ │ │ │ ├── TestListCache.cs │ │ │ │ │ ├── TestListCache.cs.meta │ │ │ │ │ ├── TestListCacheData.cs │ │ │ │ │ ├── TestListCacheData.cs.meta │ │ │ │ │ ├── TestListJob.cs │ │ │ │ │ ├── TestListJob.cs.meta │ │ │ │ │ ├── TestListProvider.cs │ │ │ │ │ └── TestListProvider.cs.meta │ │ │ ├── TestRunnerWindow.cs │ │ │ ├── TestRunnerWindow.cs.meta │ │ │ ├── TestRunnerWindowSettings.cs │ │ │ ├── TestRunnerWindowSettings.cs.meta │ │ │ ├── TestSettings.meta │ │ │ ├── TestSettings │ │ │ │ ├── ITestSettings.cs │ │ │ │ ├── ITestSettings.cs.meta │ │ │ │ ├── ITestSettingsDeserializer.cs │ │ │ │ ├── ITestSettingsDeserializer.cs.meta │ │ │ │ ├── TestSettings.cs │ │ │ │ ├── TestSettings.cs.meta │ │ │ │ ├── TestSettingsDeserializer.cs │ │ │ │ └── TestSettingsDeserializer.cs.meta │ │ │ ├── UnityEditor.TestRunner.asmdef │ │ │ ├── UnityEditor.TestRunner.asmdef.meta │ │ │ ├── UnityTestProtocol.meta │ │ │ └── UnityTestProtocol │ │ │ │ ├── ITestRunnerApiMapper.cs │ │ │ │ ├── ITestRunnerApiMapper.cs.meta │ │ │ │ ├── IUtpLogger.cs │ │ │ │ ├── IUtpLogger.cs.meta │ │ │ │ ├── IUtpMessageReporter.cs │ │ │ │ ├── IUtpMessageReporter.cs.meta │ │ │ │ ├── Message.cs │ │ │ │ ├── Message.cs.meta │ │ │ │ ├── TestFinishedMessage.cs │ │ │ │ ├── TestFinishedMessage.cs.meta │ │ │ │ ├── TestPlanMessage.cs │ │ │ │ ├── TestPlanMessage.cs.meta │ │ │ │ ├── TestRunnerApiMapper.cs │ │ │ │ ├── TestRunnerApiMapper.cs.meta │ │ │ │ ├── TestStartedMessage.cs │ │ │ │ ├── TestStartedMessage.cs.meta │ │ │ │ ├── TestState.cs │ │ │ │ ├── TestState.cs.meta │ │ │ │ ├── UnityTestProtocolListener.cs │ │ │ │ ├── UnityTestProtocolListener.cs.meta │ │ │ │ ├── UnityTestProtocolStarter.cs │ │ │ │ ├── UnityTestProtocolStarter.cs.meta │ │ │ │ ├── UtpDebuglogger.cs │ │ │ │ ├── UtpDebuglogger.cs.meta │ │ │ │ ├── UtpMessageReporter.cs │ │ │ │ └── UtpMessageReporter.cs.meta │ │ ├── UnityEngine.TestRunner.meta │ │ ├── UnityEngine.TestRunner │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyInfo.cs.meta │ │ │ ├── Assertions.meta │ │ │ ├── Assertions │ │ │ │ ├── AllocatingGCMemoryConstraint.cs │ │ │ │ ├── AllocatingGCMemoryConstraint.cs.meta │ │ │ │ ├── ConstraintsExtensions.cs │ │ │ │ ├── ConstraintsExtensions.cs.meta │ │ │ │ ├── InvalidSignatureException.cs │ │ │ │ ├── InvalidSignatureException.cs.meta │ │ │ │ ├── Is.cs │ │ │ │ ├── Is.cs.meta │ │ │ │ ├── LogAssert.cs │ │ │ │ ├── LogAssert.cs.meta │ │ │ │ ├── LogScope.meta │ │ │ │ ├── LogScope │ │ │ │ │ ├── ILogScope.cs │ │ │ │ │ ├── ILogScope.cs.meta │ │ │ │ │ ├── LogEvent.cs │ │ │ │ │ ├── LogEvent.cs.meta │ │ │ │ │ ├── LogMatch.cs │ │ │ │ │ ├── LogMatch.cs.meta │ │ │ │ │ ├── LogScope.cs │ │ │ │ │ └── LogScope.cs.meta │ │ │ │ ├── UnexpectedLogMessageException.cs │ │ │ │ ├── UnexpectedLogMessageException.cs.meta │ │ │ │ ├── UnhandledLogMessageException.cs │ │ │ │ ├── UnhandledLogMessageException.cs.meta │ │ │ │ ├── UnityTestTimeoutException.cs │ │ │ │ └── UnityTestTimeoutException.cs.meta │ │ │ ├── NUnitExtensions.meta │ │ │ ├── NUnitExtensions │ │ │ │ ├── ActionDelegator.cs │ │ │ │ ├── ActionDelegator.cs.meta │ │ │ │ ├── Attributes.meta │ │ │ │ ├── Attributes │ │ │ │ │ ├── ConditionalIgnoreAttribute.cs │ │ │ │ │ ├── ConditionalIgnoreAttribute.cs.meta │ │ │ │ │ ├── TestEnumerator.cs │ │ │ │ │ ├── TestEnumerator.cs.meta │ │ │ │ │ ├── TestMustExpectAllLogsAttribute.cs │ │ │ │ │ ├── TestMustExpectAllLogsAttribute.cs.meta │ │ │ │ │ ├── UnityCombinatorialStrategy.cs │ │ │ │ │ ├── UnityCombinatorialStrategy.cs.meta │ │ │ │ │ ├── UnityPlatformAttribute.cs │ │ │ │ │ ├── UnityPlatformAttribute.cs.meta │ │ │ │ │ ├── UnitySetUpAttribute.cs │ │ │ │ │ ├── UnitySetUpAttribute.cs.meta │ │ │ │ │ ├── UnityTearDownAttribute.cs │ │ │ │ │ ├── UnityTearDownAttribute.cs.meta │ │ │ │ │ ├── UnityTestAttribute.cs │ │ │ │ │ └── UnityTestAttribute.cs.meta │ │ │ │ ├── BaseDelegator.cs │ │ │ │ ├── BaseDelegator.cs.meta │ │ │ │ ├── Commands.meta │ │ │ │ ├── Commands │ │ │ │ │ ├── BeforeAfterTestCommandBase.cs │ │ │ │ │ ├── BeforeAfterTestCommandBase.cs.meta │ │ │ │ │ ├── BeforeAfterTestCommandState.cs │ │ │ │ │ ├── BeforeAfterTestCommandState.cs.meta │ │ │ │ │ ├── EnumerableApplyChangesToContextCommand.cs │ │ │ │ │ ├── EnumerableApplyChangesToContextCommand.cs.meta │ │ │ │ │ ├── EnumerableRepeatedTestCommand.cs │ │ │ │ │ ├── EnumerableRepeatedTestCommand.cs.meta │ │ │ │ │ ├── EnumerableRetryTestCommand.cs │ │ │ │ │ ├── EnumerableRetryTestCommand.cs.meta │ │ │ │ │ ├── EnumerableSetUpTearDownCommand.cs │ │ │ │ │ ├── EnumerableSetUpTearDownCommand.cs.meta │ │ │ │ │ ├── EnumerableTestMethodCommand.cs │ │ │ │ │ ├── EnumerableTestMethodCommand.cs.meta │ │ │ │ │ ├── EnumerableTestState.cs │ │ │ │ │ ├── EnumerableTestState.cs.meta │ │ │ │ │ ├── ImmediateEnumerableCommand.cs │ │ │ │ │ ├── ImmediateEnumerableCommand.cs.meta │ │ │ │ │ ├── OuterUnityTestActionCommand.cs │ │ │ │ │ ├── OuterUnityTestActionCommand.cs.meta │ │ │ │ │ ├── SetUpTearDownCommand.cs │ │ │ │ │ ├── SetUpTearDownCommand.cs.meta │ │ │ │ │ ├── TestActionCommand.cs │ │ │ │ │ ├── TestActionCommand.cs.meta │ │ │ │ │ ├── TestCommandPcHelper.cs │ │ │ │ │ ├── TestCommandPcHelper.cs.meta │ │ │ │ │ ├── UnityTestMethodCommand.cs │ │ │ │ │ └── UnityTestMethodCommand.cs.meta │ │ │ │ ├── ConstructDelegator.cs │ │ │ │ ├── ConstructDelegator.cs.meta │ │ │ │ ├── Filters.meta │ │ │ │ ├── Filters │ │ │ │ │ ├── AssemblyNameFilter.cs │ │ │ │ │ ├── AssemblyNameFilter.cs.meta │ │ │ │ │ ├── CategoryFilterExtended.cs │ │ │ │ │ ├── CategoryFilterExtended.cs.meta │ │ │ │ │ ├── FullNameFilter.cs │ │ │ │ │ └── FullNameFilter.cs.meta │ │ │ │ ├── IAsyncTestAssemblyBuilder.cs │ │ │ │ ├── IAsyncTestAssemblyBuilder.cs.meta │ │ │ │ ├── IStateSerializer.cs │ │ │ │ ├── IStateSerializer.cs.meta │ │ │ │ ├── Runner.meta │ │ │ │ ├── Runner │ │ │ │ │ ├── CompositeWorkItem.cs │ │ │ │ │ ├── CompositeWorkItem.cs.meta │ │ │ │ │ ├── CoroutineTestWorkItem.cs │ │ │ │ │ ├── CoroutineTestWorkItem.cs.meta │ │ │ │ │ ├── DefaultTestWorkItem.cs │ │ │ │ │ ├── DefaultTestWorkItem.cs.meta │ │ │ │ │ ├── FailCommand.cs │ │ │ │ │ ├── FailCommand.cs.meta │ │ │ │ │ ├── IEnumerableTestMethodCommand.cs │ │ │ │ │ ├── IEnumerableTestMethodCommand.cs.meta │ │ │ │ │ ├── PlaymodeWorkItemFactory.cs │ │ │ │ │ ├── PlaymodeWorkItemFactory.cs.meta │ │ │ │ │ ├── RestoreTestContextAfterDomainReload.cs │ │ │ │ │ ├── RestoreTestContextAfterDomainReload.cs.meta │ │ │ │ │ ├── TestCommandBuilder.cs │ │ │ │ │ ├── TestCommandBuilder.cs.meta │ │ │ │ │ ├── UnityLogCheckDelegatingCommand.cs │ │ │ │ │ ├── UnityLogCheckDelegatingCommand.cs.meta │ │ │ │ │ ├── UnityTestAssemblyRunner.cs │ │ │ │ │ ├── UnityTestAssemblyRunner.cs.meta │ │ │ │ │ ├── UnityTestExecutionContext.cs │ │ │ │ │ ├── UnityTestExecutionContext.cs.meta │ │ │ │ │ ├── UnityWorkItem.cs │ │ │ │ │ ├── UnityWorkItem.cs.meta │ │ │ │ │ ├── UnityWorkItemDataHolder.cs │ │ │ │ │ ├── UnityWorkItemDataHolder.cs.meta │ │ │ │ │ ├── WorkItemFactory.cs │ │ │ │ │ └── WorkItemFactory.cs.meta │ │ │ │ ├── TestExtensions.cs │ │ │ │ ├── TestExtensions.cs.meta │ │ │ │ ├── TestResultExtensions.cs │ │ │ │ ├── TestResultExtensions.cs.meta │ │ │ │ ├── UnityTestAssemblyBuilder.cs │ │ │ │ └── UnityTestAssemblyBuilder.cs.meta │ │ │ ├── TestRunner.meta │ │ │ ├── TestRunner │ │ │ │ ├── Callbacks.meta │ │ │ │ ├── Callbacks │ │ │ │ │ ├── PlayModeRunnerCallback.cs │ │ │ │ │ ├── PlayModeRunnerCallback.cs.meta │ │ │ │ │ ├── PlayerQuitHandler.cs │ │ │ │ │ ├── PlayerQuitHandler.cs.meta │ │ │ │ │ ├── RemoteTestResultSender.cs │ │ │ │ │ ├── RemoteTestResultSender.cs.meta │ │ │ │ │ ├── TestResultRenderer.cs │ │ │ │ │ ├── TestResultRenderer.cs.meta │ │ │ │ │ ├── TestResultRendererCallback.cs │ │ │ │ │ └── TestResultRendererCallback.cs.meta │ │ │ │ ├── ITestRunnerListener.cs │ │ │ │ ├── ITestRunnerListener.cs.meta │ │ │ │ ├── Messages.meta │ │ │ │ ├── Messages │ │ │ │ │ ├── IEditModeTestYieldInstruction.cs │ │ │ │ │ └── IEditModeTestYieldInstruction.cs.meta │ │ │ │ ├── PlaymodeTestsController.cs │ │ │ │ ├── PlaymodeTestsController.cs.meta │ │ │ │ ├── PlaymodeTestsControllerSettings.cs │ │ │ │ ├── PlaymodeTestsControllerSettings.cs.meta │ │ │ │ ├── RemoteHelpers.meta │ │ │ │ ├── RemoteHelpers │ │ │ │ │ ├── IRemoteTestResultDataFactory.cs │ │ │ │ │ ├── IRemoteTestResultDataFactory.cs.meta │ │ │ │ │ ├── PlayerConnectionMessageIds.cs │ │ │ │ │ ├── PlayerConnectionMessageIds.cs.meta │ │ │ │ │ ├── RemoteTestData.cs │ │ │ │ │ ├── RemoteTestData.cs.meta │ │ │ │ │ ├── RemoteTestResultData.cs │ │ │ │ │ ├── RemoteTestResultData.cs.meta │ │ │ │ │ ├── RemoteTestResultDataFactory.cs │ │ │ │ │ ├── RemoteTestResultDataFactory.cs.meta │ │ │ │ │ ├── RemoteTestResultDataWithTestData.cs │ │ │ │ │ └── RemoteTestResultDataWithTestData.cs.meta │ │ │ │ ├── RuntimeTestRunnerFilter.cs │ │ │ │ ├── RuntimeTestRunnerFilter.cs.meta │ │ │ │ ├── SynchronousFilter.cs │ │ │ │ ├── SynchronousFilter.cs.meta │ │ │ │ ├── TestEnumeratorWrapper.cs │ │ │ │ ├── TestEnumeratorWrapper.cs.meta │ │ │ │ ├── TestListenerWrapper.cs │ │ │ │ ├── TestListenerWrapper.cs.meta │ │ │ │ ├── TestPlatform.cs │ │ │ │ └── TestPlatform.cs.meta │ │ │ ├── UnityEngine.TestRunner.asmdef │ │ │ ├── UnityEngine.TestRunner.asmdef.meta │ │ │ ├── Utils.meta │ │ │ └── Utils │ │ │ │ ├── AssemblyProvider.meta │ │ │ │ ├── AssemblyProvider │ │ │ │ ├── AssemblyLoadProxy.cs │ │ │ │ ├── AssemblyLoadProxy.cs.meta │ │ │ │ ├── AssemblyWrapper.cs │ │ │ │ ├── AssemblyWrapper.cs.meta │ │ │ │ ├── IAssemblyLoadProxy.cs │ │ │ │ ├── IAssemblyLoadProxy.cs.meta │ │ │ │ ├── IAssemblyWrapper.cs │ │ │ │ ├── IAssemblyWrapper.cs.meta │ │ │ │ ├── IScriptingRuntimeProxy.cs │ │ │ │ ├── IScriptingRuntimeProxy.cs.meta │ │ │ │ ├── ITestAssemblyProvider.cs │ │ │ │ ├── ITestAssemblyProvider.cs.meta │ │ │ │ ├── PlayerTestAssemblyProvider.cs │ │ │ │ ├── PlayerTestAssemblyProvider.cs.meta │ │ │ │ ├── ScriptingRuntimeProxy.cs │ │ │ │ └── ScriptingRuntimeProxy.cs.meta │ │ │ │ ├── AttributeHelper.cs │ │ │ │ ├── AttributeHelper.cs.meta │ │ │ │ ├── ColorEqualityComparer.cs │ │ │ │ ├── ColorEqualityComparer.cs.meta │ │ │ │ ├── CoroutineRunner.cs │ │ │ │ ├── CoroutineRunner.cs.meta │ │ │ │ ├── FloatEqualityComparer.cs │ │ │ │ ├── FloatEqualityComparer.cs.meta │ │ │ │ ├── IOuterUnityTestAction.cs │ │ │ │ ├── IOuterUnityTestAction.cs.meta │ │ │ │ ├── IPostBuildCleanup.cs │ │ │ │ ├── IPostBuildCleanup.cs.meta │ │ │ │ ├── IPrebuildSceneSetup.cs │ │ │ │ ├── IPrebuildSceneSetup.cs.meta │ │ │ │ ├── ITestRunCallback.cs │ │ │ │ ├── ITestRunCallback.cs.meta │ │ │ │ ├── MonoBehaviourTest.meta │ │ │ │ ├── MonoBehaviourTest │ │ │ │ ├── IMonoBehaviourTest.cs │ │ │ │ ├── IMonoBehaviourTest.cs.meta │ │ │ │ ├── MonoBehaviourTest.cs │ │ │ │ └── MonoBehaviourTest.cs.meta │ │ │ │ ├── PostBuildCleanupAttribute.cs │ │ │ │ ├── PostBuildCleanupAttribute.cs.meta │ │ │ │ ├── PrebuildSceneSetupAttribute.cs │ │ │ │ ├── PrebuildSceneSetupAttribute.cs.meta │ │ │ │ ├── QuaternionEqualityComparer.cs │ │ │ │ ├── QuaternionEqualityComparer.cs.meta │ │ │ │ ├── StacktraceFilter.cs │ │ │ │ ├── StacktraceFilter.cs.meta │ │ │ │ ├── TestRunCallbackAttribute.cs │ │ │ │ ├── TestRunCallbackAttribute.cs.meta │ │ │ │ ├── TestRunCallbackListener.cs │ │ │ │ ├── TestRunCallbackListener.cs.meta │ │ │ │ ├── Utils.cs │ │ │ │ ├── Utils.cs.meta │ │ │ │ ├── Vector2ComparerWithEqualsOperator.cs │ │ │ │ ├── Vector2ComparerWithEqualsOperator.cs.meta │ │ │ │ ├── Vector2EqualityComparer.cs │ │ │ │ ├── Vector2EqualityComparer.cs.meta │ │ │ │ ├── Vector3ComparerWithEqualsOperator.cs │ │ │ │ ├── Vector3ComparerWithEqualsOperator.cs.meta │ │ │ │ ├── Vector3EqualityComparer.cs │ │ │ │ ├── Vector3EqualityComparer.cs.meta │ │ │ │ ├── Vector4ComparerWithEqualsOperator.cs │ │ │ │ ├── Vector4ComparerWithEqualsOperator.cs.meta │ │ │ │ ├── Vector4EqualityComparer.cs │ │ │ │ └── Vector4EqualityComparer.cs.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.textmeshpro@3.0.6 │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── Documentation~ │ │ │ ├── TextMeshPro.md │ │ │ └── TextMeshPro.md.meta │ │ ├── Editor Resources.meta │ │ ├── Editor Resources │ │ │ ├── Gizmos.meta │ │ │ ├── Gizmos │ │ │ │ ├── TMP - Dropdown Icon.psd │ │ │ │ ├── TMP - Dropdown Icon.psd.meta │ │ │ │ ├── TMP - Font Asset Icon.psd │ │ │ │ ├── TMP - Font Asset Icon.psd.meta │ │ │ │ ├── TMP - Input Field Icon.psd │ │ │ │ ├── TMP - Input Field Icon.psd.meta │ │ │ │ ├── TMP - Sprite Asset Icon.psd │ │ │ │ ├── TMP - Sprite Asset Icon.psd.meta │ │ │ │ ├── TMP - Text Component Icon.psd │ │ │ │ └── TMP - Text Component Icon.psd.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ │ ├── TMP_Properties.cginc │ │ │ │ ├── TMP_Properties.cginc.meta │ │ │ │ ├── TMP_SDF Internal Editor.shader │ │ │ │ ├── TMP_SDF Internal Editor.shader.meta │ │ │ │ ├── TMP_SDF_SSD.cginc │ │ │ │ └── TMP_SDF_SSD.cginc.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── SectionHeader_Dark.psd │ │ │ │ ├── SectionHeader_Dark.psd.meta │ │ │ │ ├── SectionHeader_Light.psd │ │ │ │ ├── SectionHeader_Light.psd.meta │ │ │ │ ├── btn_AlignBaseLine.psd │ │ │ │ ├── btn_AlignBaseLine.psd.meta │ │ │ │ ├── btn_AlignBaseLine_Light.psd │ │ │ │ ├── btn_AlignBaseLine_Light.psd.meta │ │ │ │ ├── btn_AlignBottom.psd │ │ │ │ ├── btn_AlignBottom.psd.meta │ │ │ │ ├── btn_AlignBottom_Light.psd │ │ │ │ ├── btn_AlignBottom_Light.psd.meta │ │ │ │ ├── btn_AlignCapLine.psd │ │ │ │ ├── btn_AlignCapLine.psd.meta │ │ │ │ ├── btn_AlignCapLine_Light.psd │ │ │ │ ├── btn_AlignCapLine_Light.psd.meta │ │ │ │ ├── btn_AlignCenter.psd │ │ │ │ ├── btn_AlignCenter.psd.meta │ │ │ │ ├── btn_AlignCenterGeo.psd │ │ │ │ ├── btn_AlignCenterGeo.psd.meta │ │ │ │ ├── btn_AlignCenterGeo_Light.psd │ │ │ │ ├── btn_AlignCenterGeo_Light.psd.meta │ │ │ │ ├── btn_AlignCenter_Light.psd │ │ │ │ ├── btn_AlignCenter_Light.psd.meta │ │ │ │ ├── btn_AlignFlush.psd │ │ │ │ ├── btn_AlignFlush.psd.meta │ │ │ │ ├── btn_AlignFlush_Light.psd │ │ │ │ ├── btn_AlignFlush_Light.psd.meta │ │ │ │ ├── btn_AlignJustified.psd │ │ │ │ ├── btn_AlignJustified.psd.meta │ │ │ │ ├── btn_AlignJustified_Light.psd │ │ │ │ ├── btn_AlignJustified_Light.psd.meta │ │ │ │ ├── btn_AlignLeft.psd │ │ │ │ ├── btn_AlignLeft.psd.meta │ │ │ │ ├── btn_AlignLeft_Light.psd │ │ │ │ ├── btn_AlignLeft_Light.psd.meta │ │ │ │ ├── btn_AlignMidLine.psd │ │ │ │ ├── btn_AlignMidLine.psd.meta │ │ │ │ ├── btn_AlignMiddle.psd │ │ │ │ ├── btn_AlignMiddle.psd.meta │ │ │ │ ├── btn_AlignMiddle_Light.psd │ │ │ │ ├── btn_AlignMiddle_Light.psd.meta │ │ │ │ ├── btn_AlignMidline_Light.psd │ │ │ │ ├── btn_AlignMidline_Light.psd.meta │ │ │ │ ├── btn_AlignRight.psd │ │ │ │ ├── btn_AlignRight.psd.meta │ │ │ │ ├── btn_AlignRight_Light.psd │ │ │ │ ├── btn_AlignRight_Light.psd.meta │ │ │ │ ├── btn_AlignTop.psd │ │ │ │ ├── btn_AlignTop.psd.meta │ │ │ │ ├── btn_AlignTop_Light.psd │ │ │ │ └── btn_AlignTop_Light.psd.meta │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── Package Resources.meta │ │ ├── Package Resources │ │ │ ├── TMP Essential Resources.unitypackage │ │ │ ├── TMP Essential Resources.unitypackage.meta │ │ │ ├── TMP Examples & Extras.unitypackage │ │ │ └── TMP Examples & Extras.unitypackage.meta │ │ ├── PackageConversionData.json │ │ ├── PackageConversionData.json.meta │ │ ├── PackageConversionData_Assets.json │ │ ├── PackageConversionData_Assets.json.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── DropdownOptionListDrawer.cs │ │ │ │ ├── DropdownOptionListDrawer.cs.meta │ │ │ │ ├── GlyphInfoDrawer.cs │ │ │ │ ├── GlyphInfoDrawer.cs.meta │ │ │ │ ├── GlyphMetricsPropertyDrawer.cs │ │ │ │ ├── GlyphMetricsPropertyDrawer.cs.meta │ │ │ │ ├── GlyphRectPropertyDrawer.cs │ │ │ │ ├── GlyphRectPropertyDrawer.cs.meta │ │ │ │ ├── TMP_BaseEditorPanel.cs │ │ │ │ ├── TMP_BaseEditorPanel.cs.meta │ │ │ │ ├── TMP_BaseShaderGUI.cs │ │ │ │ ├── TMP_BaseShaderGUI.cs.meta │ │ │ │ ├── TMP_BitmapShaderGUI.cs │ │ │ │ ├── TMP_BitmapShaderGUI.cs.meta │ │ │ │ ├── TMP_CharacterPropertyDrawer.cs │ │ │ │ ├── TMP_CharacterPropertyDrawer.cs.meta │ │ │ │ ├── TMP_ColorGradientAssetMenu.cs │ │ │ │ ├── TMP_ColorGradientAssetMenu.cs.meta │ │ │ │ ├── TMP_ColorGradientEditor.cs │ │ │ │ ├── TMP_ColorGradientEditor.cs.meta │ │ │ │ ├── TMP_DropdownEditor.cs │ │ │ │ ├── TMP_DropdownEditor.cs.meta │ │ │ │ ├── TMP_EditorCoroutine.cs │ │ │ │ ├── TMP_EditorCoroutine.cs.meta │ │ │ │ ├── TMP_EditorPanel.cs │ │ │ │ ├── TMP_EditorPanel.cs.meta │ │ │ │ ├── TMP_EditorPanelUI.cs │ │ │ │ ├── TMP_EditorPanelUI.cs.meta │ │ │ │ ├── TMP_EditorUtility.cs │ │ │ │ ├── TMP_EditorUtility.cs.meta │ │ │ │ ├── TMP_FontAssetEditor.cs │ │ │ │ ├── TMP_FontAssetEditor.cs.meta │ │ │ │ ├── TMP_FontAsset_CreationMenu.cs │ │ │ │ ├── TMP_FontAsset_CreationMenu.cs.meta │ │ │ │ ├── TMP_GlyphPairAdjustmentRecordPropertyDrawer.cs │ │ │ │ ├── TMP_GlyphPairAdjustmentRecordPropertyDrawer.cs.meta │ │ │ │ ├── TMP_GlyphPropertyDrawer.cs │ │ │ │ ├── TMP_GlyphPropertyDrawer.cs.meta │ │ │ │ ├── TMP_InputFieldEditor.cs │ │ │ │ ├── TMP_InputFieldEditor.cs.meta │ │ │ │ ├── TMP_MeshRendererEditor.cs │ │ │ │ ├── TMP_MeshRendererEditor.cs.meta │ │ │ │ ├── TMP_PackageUtilities.cs │ │ │ │ ├── TMP_PackageUtilities.cs.meta │ │ │ │ ├── TMP_PostBuildProcessHandler.cs │ │ │ │ ├── TMP_PostBuildProcessHandler.cs.meta │ │ │ │ ├── TMP_PreBuildProcessor.cs │ │ │ │ ├── TMP_PreBuildProcessor.cs.meta │ │ │ │ ├── TMP_ProjectTextSettings.cs │ │ │ │ ├── TMP_ProjectTextSettings.cs.meta │ │ │ │ ├── TMP_ResourcesLoader.cs │ │ │ │ ├── TMP_ResourcesLoader.cs.meta │ │ │ │ ├── TMP_SDFShaderGUI.cs │ │ │ │ ├── TMP_SDFShaderGUI.cs.meta │ │ │ │ ├── TMP_SerializedPropertyHolder.cs │ │ │ │ ├── TMP_SerializedPropertyHolder.cs.meta │ │ │ │ ├── TMP_SettingsEditor.cs │ │ │ │ ├── TMP_SettingsEditor.cs.meta │ │ │ │ ├── TMP_SpriteAssetEditor.cs │ │ │ │ ├── TMP_SpriteAssetEditor.cs.meta │ │ │ │ ├── TMP_SpriteAssetImporter.cs │ │ │ │ ├── TMP_SpriteAssetImporter.cs.meta │ │ │ │ ├── TMP_SpriteAssetMenu.cs │ │ │ │ ├── TMP_SpriteAssetMenu.cs.meta │ │ │ │ ├── TMP_SpriteCharacterPropertyDrawer.cs │ │ │ │ ├── TMP_SpriteCharacterPropertyDrawer.cs.meta │ │ │ │ ├── TMP_SpriteGlyphPropertyDrawer.cs │ │ │ │ ├── TMP_SpriteGlyphPropertyDrawer.cs.meta │ │ │ │ ├── TMP_StyleAssetMenu.cs │ │ │ │ ├── TMP_StyleAssetMenu.cs.meta │ │ │ │ ├── TMP_StyleSheetEditor.cs │ │ │ │ ├── TMP_StyleSheetEditor.cs.meta │ │ │ │ ├── TMP_SubMeshUI_Editor.cs │ │ │ │ ├── TMP_SubMeshUI_Editor.cs.meta │ │ │ │ ├── TMP_SubMesh_Editor.cs │ │ │ │ ├── TMP_SubMesh_Editor.cs.meta │ │ │ │ ├── TMP_TextAlignmentDrawer.cs │ │ │ │ ├── TMP_TextAlignmentDrawer.cs.meta │ │ │ │ ├── TMP_UIStyleManager.cs │ │ │ │ ├── TMP_UIStyleManager.cs.meta │ │ │ │ ├── TMPro_ContextMenus.cs │ │ │ │ ├── TMPro_ContextMenus.cs.meta │ │ │ │ ├── TMPro_CreateObjectMenu.cs │ │ │ │ ├── TMPro_CreateObjectMenu.cs.meta │ │ │ │ ├── TMPro_EditorShaderUtilities.cs │ │ │ │ ├── TMPro_EditorShaderUtilities.cs.meta │ │ │ │ ├── TMPro_FontAssetCreatorWindow.cs │ │ │ │ ├── TMPro_FontAssetCreatorWindow.cs.meta │ │ │ │ ├── TMPro_FontPlugin.cs │ │ │ │ ├── TMPro_FontPlugin.cs.meta │ │ │ │ ├── TMPro_SortingLayerHelper.cs │ │ │ │ ├── TMPro_SortingLayerHelper.cs.meta │ │ │ │ ├── TMPro_TextContainerEditor.cs │ │ │ │ ├── TMPro_TextContainerEditor.cs.meta │ │ │ │ ├── TMPro_TexturePostProcessor.cs │ │ │ │ ├── TMPro_TexturePostProcessor.cs.meta │ │ │ │ ├── Unity.TextMeshPro.Editor.asmdef │ │ │ │ └── Unity.TextMeshPro.Editor.asmdef.meta │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── AssemblyInfo.cs.meta │ │ │ │ ├── FastAction.cs │ │ │ │ ├── FastAction.cs.meta │ │ │ │ ├── ITextPreProcessor.cs │ │ │ │ ├── ITextPreProcessor.cs.meta │ │ │ │ ├── MaterialReferenceManager.cs │ │ │ │ ├── MaterialReferenceManager.cs.meta │ │ │ │ ├── TMP_Asset.cs │ │ │ │ ├── TMP_Asset.cs.meta │ │ │ │ ├── TMP_Character.cs │ │ │ │ ├── TMP_Character.cs.meta │ │ │ │ ├── TMP_CharacterInfo.cs │ │ │ │ ├── TMP_CharacterInfo.cs.meta │ │ │ │ ├── TMP_ColorGradient.cs │ │ │ │ ├── TMP_ColorGradient.cs.meta │ │ │ │ ├── TMP_Compatibility.cs │ │ │ │ ├── TMP_Compatibility.cs.meta │ │ │ │ ├── TMP_CoroutineTween.cs │ │ │ │ ├── TMP_CoroutineTween.cs.meta │ │ │ │ ├── TMP_DefaultControls.cs │ │ │ │ ├── TMP_DefaultControls.cs.meta │ │ │ │ ├── TMP_Dropdown.cs │ │ │ │ ├── TMP_Dropdown.cs.meta │ │ │ │ ├── TMP_EditorResourceManager.cs │ │ │ │ ├── TMP_EditorResourceManager.cs.meta │ │ │ │ ├── TMP_FontAsset.cs │ │ │ │ ├── TMP_FontAsset.cs.meta │ │ │ │ ├── TMP_FontAssetCommon.cs │ │ │ │ ├── TMP_FontAssetCommon.cs.meta │ │ │ │ ├── TMP_FontAssetUtilities.cs │ │ │ │ ├── TMP_FontAssetUtilities.cs.meta │ │ │ │ ├── TMP_FontFeatureTable.cs │ │ │ │ ├── TMP_FontFeatureTable.cs.meta │ │ │ │ ├── TMP_FontFeaturesCommon.cs │ │ │ │ ├── TMP_FontFeaturesCommon.cs.meta │ │ │ │ ├── TMP_InputField.cs │ │ │ │ ├── TMP_InputField.cs.meta │ │ │ │ ├── TMP_InputValidator.cs │ │ │ │ ├── TMP_InputValidator.cs.meta │ │ │ │ ├── TMP_LineInfo.cs │ │ │ │ ├── TMP_LineInfo.cs.meta │ │ │ │ ├── TMP_ListPool.cs │ │ │ │ ├── TMP_ListPool.cs.meta │ │ │ │ ├── TMP_MaterialManager.cs │ │ │ │ ├── TMP_MaterialManager.cs.meta │ │ │ │ ├── TMP_MeshInfo.cs │ │ │ │ ├── TMP_MeshInfo.cs.meta │ │ │ │ ├── TMP_ObjectPool.cs │ │ │ │ ├── TMP_ObjectPool.cs.meta │ │ │ │ ├── TMP_PackageResourceImporter.cs │ │ │ │ ├── TMP_PackageResourceImporter.cs.meta │ │ │ │ ├── TMP_ResourcesManager.cs │ │ │ │ ├── TMP_ResourcesManager.cs.meta │ │ │ │ ├── TMP_RichTextTagsCommon.cs │ │ │ │ ├── TMP_RichTextTagsCommon.cs.meta │ │ │ │ ├── TMP_ScrollbarEventHandler.cs │ │ │ │ ├── TMP_ScrollbarEventHandler.cs.meta │ │ │ │ ├── TMP_SelectionCaret.cs │ │ │ │ ├── TMP_SelectionCaret.cs.meta │ │ │ │ ├── TMP_Settings.cs │ │ │ │ ├── TMP_Settings.cs.meta │ │ │ │ ├── TMP_ShaderUtilities.cs │ │ │ │ ├── TMP_ShaderUtilities.cs.meta │ │ │ │ ├── TMP_Sprite.cs │ │ │ │ ├── TMP_Sprite.cs.meta │ │ │ │ ├── TMP_SpriteAnimator.cs │ │ │ │ ├── TMP_SpriteAnimator.cs.meta │ │ │ │ ├── TMP_SpriteAsset.cs │ │ │ │ ├── TMP_SpriteAsset.cs.meta │ │ │ │ ├── TMP_SpriteAssetImportFormats.cs │ │ │ │ ├── TMP_SpriteAssetImportFormats.cs.meta │ │ │ │ ├── TMP_SpriteCharacter.cs │ │ │ │ ├── TMP_SpriteCharacter.cs.meta │ │ │ │ ├── TMP_SpriteGlyph.cs │ │ │ │ ├── TMP_SpriteGlyph.cs.meta │ │ │ │ ├── TMP_Style.cs │ │ │ │ ├── TMP_Style.cs.meta │ │ │ │ ├── TMP_StyleSheet.cs │ │ │ │ ├── TMP_StyleSheet.cs.meta │ │ │ │ ├── TMP_SubMesh.cs │ │ │ │ ├── TMP_SubMesh.cs.meta │ │ │ │ ├── TMP_SubMeshUI.cs │ │ │ │ ├── TMP_SubMeshUI.cs.meta │ │ │ │ ├── TMP_Text.cs │ │ │ │ ├── TMP_Text.cs.meta │ │ │ │ ├── TMP_TextElement.cs │ │ │ │ ├── TMP_TextElement.cs.meta │ │ │ │ ├── TMP_TextElement_Legacy.cs │ │ │ │ ├── TMP_TextElement_Legacy.cs.meta │ │ │ │ ├── TMP_TextInfo.cs │ │ │ │ ├── TMP_TextInfo.cs.meta │ │ │ │ ├── TMP_TextParsingUtilities.cs │ │ │ │ ├── TMP_TextParsingUtilities.cs.meta │ │ │ │ ├── TMP_TextProcessingStack.cs │ │ │ │ ├── TMP_TextProcessingStack.cs.meta │ │ │ │ ├── TMP_TextUtilities.cs │ │ │ │ ├── TMP_TextUtilities.cs.meta │ │ │ │ ├── TMP_UpdateManager.cs │ │ │ │ ├── TMP_UpdateManager.cs.meta │ │ │ │ ├── TMP_UpdateRegistery.cs │ │ │ │ ├── TMP_UpdateRegistery.cs.meta │ │ │ │ ├── TMPro_EventManager.cs │ │ │ │ ├── TMPro_EventManager.cs.meta │ │ │ │ ├── TMPro_ExtensionMethods.cs │ │ │ │ ├── TMPro_ExtensionMethods.cs.meta │ │ │ │ ├── TMPro_MeshUtilities.cs │ │ │ │ ├── TMPro_MeshUtilities.cs.meta │ │ │ │ ├── TMPro_Private.cs │ │ │ │ ├── TMPro_Private.cs.meta │ │ │ │ ├── TMPro_UGUI_Private.cs │ │ │ │ ├── TMPro_UGUI_Private.cs.meta │ │ │ │ ├── TextContainer.cs │ │ │ │ ├── TextContainer.cs.meta │ │ │ │ ├── TextMeshPro.cs │ │ │ │ ├── TextMeshPro.cs.meta │ │ │ │ ├── TextMeshProUGUI.cs │ │ │ │ ├── TextMeshProUGUI.cs.meta │ │ │ │ ├── Unity.TextMeshPro.asmdef │ │ │ │ └── Unity.TextMeshPro.asmdef.meta │ │ ├── Tests.meta │ │ ├── Tests │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── TMP_EditorTests.cs │ │ │ │ ├── TMP_EditorTests.cs.meta │ │ │ │ ├── Unity.TextMeshPro.Editor.Tests.asmdef │ │ │ │ └── Unity.TextMeshPro.Editor.Tests.asmdef.meta │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── TMP_RuntimeTests.cs │ │ │ │ ├── TMP_RuntimeTests.cs.meta │ │ │ │ ├── Unity.TextMeshPro.Tests.asmdef │ │ │ │ └── Unity.TextMeshPro.Tests.asmdef.meta │ │ ├── ValidationExceptions.json │ │ ├── ValidationExceptions.json.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── com.unity.timeline@1.4.8 │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── DocCodeExamples.meta │ │ ├── DocCodeExamples │ │ │ ├── ActionExamples.cs │ │ │ ├── ActionExamples.cs.meta │ │ │ ├── DocCodeExamples.asmdef │ │ │ ├── DocCodeExamples.asmdef.meta │ │ │ ├── TimelineAttributesExamples.cs │ │ │ ├── TimelineAttributesExamples.cs.meta │ │ │ ├── TimelineEditorExamples.cs │ │ │ ├── TimelineEditorExamples.cs.meta │ │ │ ├── TrackAssetExamples.cs │ │ │ └── TrackAssetExamples.cs.meta │ │ ├── Documentation~ │ │ │ ├── TableOfContents.md │ │ │ ├── clp_about.md │ │ │ ├── clp_add.md │ │ │ ├── clp_blend.md │ │ │ ├── clp_dup.md │ │ │ ├── clp_ease.md │ │ │ ├── clp_gap_extrap.md │ │ │ ├── clp_insert.md │ │ │ ├── clp_match.md │ │ │ ├── clp_pan_zoom.md │ │ │ ├── clp_position.md │ │ │ ├── clp_reset.md │ │ │ ├── clp_select.md │ │ │ ├── clp_speed.md │ │ │ ├── clp_split.md │ │ │ ├── clp_tile.md │ │ │ ├── clp_trim.md │ │ │ ├── crv_about.md │ │ │ ├── crv_hide.md │ │ │ ├── crv_keys_add.md │ │ │ ├── crv_keys_del.md │ │ │ ├── crv_keys_edit.md │ │ │ ├── crv_keys_interp.md │ │ │ ├── crv_keys_sel.md │ │ │ ├── crv_nav.md │ │ │ ├── filter.yml │ │ │ ├── grp_hide.md │ │ │ ├── grp_lock.md │ │ │ ├── grp_use.md │ │ │ ├── images │ │ │ │ ├── timeline_add_track_menu.png │ │ │ │ ├── timeline_animation_window_locked.png │ │ │ │ ├── timeline_cinematic_example.png │ │ │ │ ├── timeline_clip_blend_area.png │ │ │ │ ├── timeline_clip_double_speed.png │ │ │ │ ├── timeline_clip_duplicate_before.png │ │ │ │ ├── timeline_clip_duplicate_clip_after.png │ │ │ │ ├── timeline_clip_duplicate_clip_before.png │ │ │ │ ├── timeline_clip_duplicate_project.png │ │ │ │ ├── timeline_clip_ease_in_bad_gap.png │ │ │ │ ├── timeline_clip_ease_in_good_gap.png │ │ │ │ ├── timeline_clip_ease_in_out.png │ │ │ │ ├── timeline_clip_ease_in_override_scene.png │ │ │ │ ├── timeline_clip_ease_in_override_track.png │ │ │ │ ├── timeline_clip_split_after.png │ │ │ │ ├── timeline_clip_split_before.png │ │ │ │ ├── timeline_clip_trim_end_keys.png │ │ │ │ ├── timeline_clip_trim_loop.png │ │ │ │ ├── timeline_clip_trim_start_keys.png │ │ │ │ ├── timeline_clips_anim_clip_timing.png │ │ │ │ ├── timeline_clips_arrows.png │ │ │ │ ├── timeline_clips_position_invalid.png │ │ │ │ ├── timeline_clips_positioning.png │ │ │ │ ├── timeline_clips_select_first.png │ │ │ │ ├── timeline_clips_select_last.png │ │ │ │ ├── timeline_clips_split_after.png │ │ │ │ ├── timeline_clips_split_before.png │ │ │ │ ├── timeline_clips_tile_result.png │ │ │ │ ├── timeline_clips_tile_selection.png │ │ │ │ ├── timeline_clips_view.png │ │ │ │ ├── timeline_clips_view_adding.png │ │ │ │ ├── timeline_clips_view_inserting_after.png │ │ │ │ ├── timeline_clips_view_inserting_before.png │ │ │ │ ├── timeline_cog_menu.png │ │ │ │ ├── timeline_curves_first_last_tangent.png │ │ │ │ ├── timeline_curves_interp_menu.png │ │ │ │ ├── timeline_curves_tangent_joined.png │ │ │ │ ├── timeline_curves_view_icon.png │ │ │ │ ├── timeline_curves_view_position_x.png │ │ │ │ ├── timeline_curves_view_select_contiguous.png │ │ │ │ ├── timeline_curves_view_select_key.png │ │ │ │ ├── timeline_duration_mode.png │ │ │ │ ├── timeline_editor_bindings.png │ │ │ │ ├── timeline_editor_create.png │ │ │ │ ├── timeline_editor_project.png │ │ │ │ ├── timeline_editor_to_start.png │ │ │ │ ├── timeline_end_button.png │ │ │ │ ├── timeline_frames_subframes.png │ │ │ │ ├── timeline_gap_extrap_icons.png │ │ │ │ ├── timeline_gap_extrap_two_tracks.png │ │ │ │ ├── timeline_humanoid_after_match.png │ │ │ │ ├── timeline_humanoid_before_match.png │ │ │ │ ├── timeline_humanoid_blend.png │ │ │ │ ├── timeline_humanoid_idle.png │ │ │ │ ├── timeline_humanoid_manual.png │ │ │ │ ├── timeline_humanoid_match_menu.png │ │ │ │ ├── timeline_humanoid_runleft.png │ │ │ │ ├── timeline_humanoid_start.png │ │ │ │ ├── timeline_inspector_activation_clip.png │ │ │ │ ├── timeline_inspector_activation_track.png │ │ │ │ ├── timeline_inspector_anim_extrap.png │ │ │ │ ├── timeline_inspector_animation_clip.png │ │ │ │ ├── timeline_inspector_animation_clip_common.png │ │ │ │ ├── timeline_inspector_animation_clip_playable.png │ │ │ │ ├── timeline_inspector_animation_track.png │ │ │ │ ├── timeline_inspector_audio_clip.png │ │ │ │ ├── timeline_inspector_blend_curves.png │ │ │ │ ├── timeline_inspector_clip_speed.png │ │ │ │ ├── timeline_inspector_clip_timing.png │ │ │ │ ├── timeline_inspector_control_clip_common.png │ │ │ │ ├── timeline_inspector_control_clip_playable.png │ │ │ │ ├── timeline_inspector_curve_editor.png │ │ │ │ ├── timeline_inspector_ease_in_blend_out.png │ │ │ │ ├── timeline_inspector_ease_in_out.png │ │ │ │ ├── timeline_inspector_multiple_selection.png │ │ │ │ ├── timeline_inspector_narrow_selection.png │ │ │ │ ├── timeline_inspector_playable_director.png │ │ │ │ ├── timeline_inspector_timeline.png │ │ │ │ ├── timeline_last_loop_before.png │ │ │ │ ├── timeline_last_loop_complete.png │ │ │ │ ├── timeline_last_loop_trim.png │ │ │ │ ├── timeline_masking_avatar_inspector.png │ │ │ │ ├── timeline_masking_avatar_off.png │ │ │ │ ├── timeline_masking_avatar_on.png │ │ │ │ ├── timeline_masking_override.png │ │ │ │ ├── timeline_masking_override_selected.png │ │ │ │ ├── timeline_masking_start.png │ │ │ │ ├── timeline_masking_waving.png │ │ │ │ ├── timeline_match_clip_many.png │ │ │ │ ├── timeline_match_clip_two.png │ │ │ │ ├── timeline_match_prematch_clips.png │ │ │ │ ├── timeline_match_prematch_scene.png │ │ │ │ ├── timeline_mix_mode_blend_arrow.png │ │ │ │ ├── timeline_mix_mode_position_cursor.png │ │ │ │ ├── timeline_move_track_after copy.png │ │ │ │ ├── timeline_move_track_after.png │ │ │ │ ├── timeline_move_track_before.png │ │ │ │ ├── timeline_nesting_editing.png │ │ │ │ ├── timeline_nesting_example.png │ │ │ │ ├── timeline_nesting_global.png │ │ │ │ ├── timeline_nesting_local.png │ │ │ │ ├── timeline_next_frame_button.png │ │ │ │ ├── timeline_overview_asset.png │ │ │ │ ├── timeline_overview_enemy.png │ │ │ │ ├── timeline_overview_instance.png │ │ │ │ ├── timeline_overview_player.png │ │ │ │ ├── timeline_play_button.png │ │ │ │ ├── timeline_play_range.png │ │ │ │ ├── timeline_play_range_button.png │ │ │ │ ├── timeline_playback_controls.png │ │ │ │ ├── timeline_playhead_insert_100_after.png │ │ │ │ ├── timeline_playhead_insert_before.png │ │ │ │ ├── timeline_playhead_insert_menu.png │ │ │ │ ├── timeline_playhead_location.png │ │ │ │ ├── timeline_playhead_select_menu.png │ │ │ │ ├── timeline_playhead_trim_after.png │ │ │ │ ├── timeline_playhead_trim_before.png │ │ │ │ ├── timeline_preview_selector.png │ │ │ │ ├── timeline_previous_frame_button.png │ │ │ │ ├── timeline_property_red.png │ │ │ │ ├── timeline_replace_mode.png │ │ │ │ ├── timeline_replace_mode_red_cut.png │ │ │ │ ├── timeline_ripple_mode.png │ │ │ │ ├── timeline_ripple_mode_yellow_arrow.png │ │ │ │ ├── timeline_splash.png │ │ │ │ ├── timeline_start_button.png │ │ │ │ ├── timeline_track_alert_icon.png │ │ │ │ ├── timeline_track_duplicate.png │ │ │ │ ├── timeline_track_group_add.png │ │ │ │ ├── timeline_track_group_hidden.png │ │ │ │ ├── timeline_track_group_locked.png │ │ │ │ ├── timeline_track_group_plus.png │ │ │ │ ├── timeline_track_list.png │ │ │ │ ├── timeline_track_locked.png │ │ │ │ ├── timeline_track_muted.png │ │ │ │ ├── timeline_track_priority.png │ │ │ │ ├── timeline_track_reorder.png │ │ │ │ ├── timeline_track_select_first.png │ │ │ │ ├── timeline_track_select_last.png │ │ │ │ ├── timeline_workflow_clip_in_project.png │ │ │ │ ├── timeline_workflow_converted_clip.png │ │ │ │ ├── timeline_workflow_dopesheet.png │ │ │ │ ├── timeline_workflow_keyframing_menu.png │ │ │ │ ├── timeline_workflow_record_button.png │ │ │ │ ├── timeline_workflow_recorded_clip_track_menu.png │ │ │ │ ├── timeline_workflow_recording.png │ │ │ │ ├── timeline_workflow_recording_diamonds.png │ │ │ │ ├── timeline_zoombar.png │ │ │ │ ├── timeline_zoomed_clip_edit_modes.png │ │ │ │ ├── workflow_inspector_animation_clip_playable.png │ │ │ │ ├── workflow_nesting_control_disabled.png │ │ │ │ ├── workflow_nesting_done.png │ │ │ │ ├── workflow_nesting_double_click.png │ │ │ │ ├── workflow_nesting_drag_board.png │ │ │ │ ├── workflow_nesting_edit_warning.png │ │ │ │ └── workflow_nesting_master.png │ │ │ ├── index.md │ │ │ ├── insp_about.md │ │ │ ├── insp_clp.md │ │ │ ├── insp_clp_act.md │ │ │ ├── insp_clp_anim_com.md │ │ │ ├── insp_clp_anim_plyb.md │ │ │ ├── insp_clp_aud.md │ │ │ ├── insp_clp_ctrl_com.md │ │ │ ├── insp_clp_ctrl_plyb.md │ │ │ ├── insp_tl.md │ │ │ ├── insp_trk.md │ │ │ ├── insp_trk_act.md │ │ │ ├── insp_trk_anim.md │ │ │ ├── play_director.md │ │ │ ├── tl_about.md │ │ │ ├── tl_gloss.md │ │ │ ├── tl_play_cntrls.md │ │ │ ├── tl_selector.md │ │ │ ├── tl_settings.md │ │ │ ├── tl_window.md │ │ │ ├── trk_add.md │ │ │ ├── trk_delete.md │ │ │ ├── trk_dup.md │ │ │ ├── trk_list_about.md │ │ │ ├── trk_lock.md │ │ │ ├── trk_mute.md │ │ │ ├── trk_reorder.md │ │ │ ├── trk_select.md │ │ │ ├── wf_about.md │ │ │ ├── wf_char_anim.md │ │ │ ├── wf_conv_infinite.md │ │ │ ├── wf_instance.md │ │ │ ├── wf_mask.md │ │ │ ├── wf_nested.md │ │ │ └── wf_rec_anim.md │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Actions.meta │ │ │ ├── Actions │ │ │ │ ├── ActionContext.cs │ │ │ │ ├── ActionContext.cs.meta │ │ │ │ ├── ActionManager.cs │ │ │ │ ├── ActionManager.cs.meta │ │ │ │ ├── ClipAction.cs │ │ │ │ ├── ClipAction.cs.meta │ │ │ │ ├── ClipsActions.cs │ │ │ │ ├── ClipsActions.cs.meta │ │ │ │ ├── IAction.cs │ │ │ │ ├── IAction.cs.meta │ │ │ │ ├── IMenuChecked.cs │ │ │ │ ├── IMenuChecked.cs.meta │ │ │ │ ├── IMenuName.cs │ │ │ │ ├── IMenuName.cs.meta │ │ │ │ ├── Invoker.cs │ │ │ │ ├── Invoker.cs.meta │ │ │ │ ├── MarkerAction.cs │ │ │ │ ├── MarkerAction.cs.meta │ │ │ │ ├── MarkerActions.cs │ │ │ │ ├── MarkerActions.cs.meta │ │ │ │ ├── Menus.meta │ │ │ │ ├── Menus │ │ │ │ │ ├── MenuItemActionBase.cs │ │ │ │ │ ├── MenuItemActionBase.cs.meta │ │ │ │ │ ├── TimelineContextMenu.cs │ │ │ │ │ └── TimelineContextMenu.cs.meta │ │ │ │ ├── TimelineAction.cs │ │ │ │ ├── TimelineAction.cs.meta │ │ │ │ ├── TimelineActions.cs │ │ │ │ ├── TimelineActions.cs.meta │ │ │ │ ├── TrackAction.cs │ │ │ │ ├── TrackAction.cs.meta │ │ │ │ ├── TrackActions.cs │ │ │ │ └── TrackActions.cs.meta │ │ │ ├── Activation.meta │ │ │ ├── Activation │ │ │ │ ├── ActivationTrackEditor.cs │ │ │ │ ├── ActivationTrackEditor.cs.meta │ │ │ │ ├── ActivationTrackInspector.cs │ │ │ │ └── ActivationTrackInspector.cs.meta │ │ │ ├── Analytics.meta │ │ │ ├── Analytics │ │ │ │ ├── TimelineAnalytics.cs │ │ │ │ └── TimelineAnalytics.cs.meta │ │ │ ├── Animation.meta │ │ │ ├── Animation │ │ │ │ ├── AnimationClipActions.cs │ │ │ │ ├── AnimationClipActions.cs.meta │ │ │ │ ├── AnimationClipCurveCache.cs │ │ │ │ ├── AnimationClipCurveCache.cs.meta │ │ │ │ ├── AnimationClipExtensions.cs │ │ │ │ ├── AnimationClipExtensions.cs.meta │ │ │ │ ├── AnimationOffsetMenu.cs │ │ │ │ ├── AnimationOffsetMenu.cs.meta │ │ │ │ ├── AnimationPlayableAssetEditor.cs │ │ │ │ ├── AnimationPlayableAssetEditor.cs.meta │ │ │ │ ├── AnimationTrackActions.cs │ │ │ │ ├── AnimationTrackActions.cs.meta │ │ │ │ ├── BindingSelector.cs │ │ │ │ ├── BindingSelector.cs.meta │ │ │ │ ├── BindingTreeViewDataSource.cs │ │ │ │ ├── BindingTreeViewDataSource.cs.meta │ │ │ │ ├── BindingTreeViewDataSourceGUI.cs │ │ │ │ ├── BindingTreeViewDataSourceGUI.cs.meta │ │ │ │ ├── ClipCurveEditor.cs │ │ │ │ ├── ClipCurveEditor.cs.meta │ │ │ │ ├── CurveDataSource.cs │ │ │ │ ├── CurveDataSource.cs.meta │ │ │ │ ├── CurveTreeViewNode.cs │ │ │ │ ├── CurveTreeViewNode.cs.meta │ │ │ │ ├── CurvesProxy.cs │ │ │ │ ├── CurvesProxy.cs.meta │ │ │ │ ├── TimelineAnimationUtilities.cs │ │ │ │ └── TimelineAnimationUtilities.cs.meta │ │ │ ├── Attributes.meta │ │ │ ├── Attributes │ │ │ │ ├── ActiveInModeAttribute.cs │ │ │ │ ├── ActiveInModeAttribute.cs.meta │ │ │ │ ├── MenuEntryAttribute.cs │ │ │ │ ├── MenuEntryAttribute.cs.meta │ │ │ │ ├── ShortcutAttribute.cs │ │ │ │ ├── ShortcutAttribute.cs.meta │ │ │ │ ├── TimelineShortcutAttribute.cs │ │ │ │ └── TimelineShortcutAttribute.cs.meta │ │ │ ├── Audio.meta │ │ │ ├── Audio │ │ │ │ ├── AudioClipPropertiesDrawer.cs │ │ │ │ ├── AudioClipPropertiesDrawer.cs.meta │ │ │ │ ├── AudioPlayableAssetEditor.cs │ │ │ │ ├── AudioPlayableAssetEditor.cs.meta │ │ │ │ ├── AudioPlayableAssetInspector.cs │ │ │ │ ├── AudioPlayableAssetInspector.cs.meta │ │ │ │ ├── AudioTrackInspector.cs │ │ │ │ └── AudioTrackInspector.cs.meta │ │ │ ├── ControlTrack.meta │ │ │ ├── ControlTrack │ │ │ │ ├── ControlPlayableAssetEditor.cs │ │ │ │ └── ControlPlayableAssetEditor.cs.meta │ │ │ ├── CurveEditUtility.cs │ │ │ ├── CurveEditUtility.cs.meta │ │ │ ├── CustomEditors.meta │ │ │ ├── CustomEditors │ │ │ │ ├── ClipEditor.cs │ │ │ │ ├── ClipEditor.cs.meta │ │ │ │ ├── CustomTimelineEditorCache.cs │ │ │ │ ├── CustomTimelineEditorCache.cs.meta │ │ │ │ ├── MarkerEditor.cs │ │ │ │ ├── MarkerEditor.cs.meta │ │ │ │ ├── MarkerTrackEditor.cs │ │ │ │ ├── MarkerTrackEditor.cs.meta │ │ │ │ ├── TrackEditor.cs │ │ │ │ └── TrackEditor.cs.meta │ │ │ ├── DirectorNamedColor.cs │ │ │ ├── DirectorNamedColor.cs.meta │ │ │ ├── DirectorStyles.cs │ │ │ ├── DirectorStyles.cs.meta │ │ │ ├── Extensions.meta │ │ │ ├── Extensions │ │ │ │ ├── AnimatedParameterExtensions.cs │ │ │ │ ├── AnimatedParameterExtensions.cs.meta │ │ │ │ ├── AnimationTrackExtensions.cs │ │ │ │ ├── AnimationTrackExtensions.cs.meta │ │ │ │ ├── TrackExtensions.cs │ │ │ │ └── TrackExtensions.cs.meta │ │ │ ├── Items.meta │ │ │ ├── Items │ │ │ │ ├── ClipItem.cs │ │ │ │ ├── ClipItem.cs.meta │ │ │ │ ├── ITimelineItem.cs │ │ │ │ ├── ITimelineItem.cs.meta │ │ │ │ ├── ItemsGroup.cs │ │ │ │ ├── ItemsGroup.cs.meta │ │ │ │ ├── ItemsPerTrack.cs │ │ │ │ ├── ItemsPerTrack.cs.meta │ │ │ │ ├── ItemsUtils.cs │ │ │ │ ├── ItemsUtils.cs.meta │ │ │ │ ├── MarkerItem.cs │ │ │ │ └── MarkerItem.cs.meta │ │ │ ├── Manipulators.meta │ │ │ ├── Manipulators │ │ │ │ ├── AddDelete.meta │ │ │ │ ├── AddDelete │ │ │ │ │ ├── AddDeleteItemModeMix.cs │ │ │ │ │ ├── AddDeleteItemModeMix.cs.meta │ │ │ │ │ ├── AddDeleteItemModeReplace.cs │ │ │ │ │ ├── AddDeleteItemModeReplace.cs.meta │ │ │ │ │ ├── AddDeleteItemModeRipple.cs │ │ │ │ │ ├── AddDeleteItemModeRipple.cs.meta │ │ │ │ │ ├── IAddDeleteItemMode.cs │ │ │ │ │ └── IAddDeleteItemMode.cs.meta │ │ │ │ ├── Cursors.meta │ │ │ │ ├── Cursors │ │ │ │ │ ├── TimelineCursors.cs │ │ │ │ │ └── TimelineCursors.cs.meta │ │ │ │ ├── EditMode.cs │ │ │ │ ├── EditMode.cs.meta │ │ │ │ ├── EditModeInputHandler.cs │ │ │ │ ├── EditModeInputHandler.cs.meta │ │ │ │ ├── Move.meta │ │ │ │ ├── Move │ │ │ │ │ ├── IMoveItemMode.cs │ │ │ │ │ ├── IMoveItemMode.cs.meta │ │ │ │ │ ├── MoveItemHandler.cs │ │ │ │ │ ├── MoveItemHandler.cs.meta │ │ │ │ │ ├── MoveItemModeMix.cs │ │ │ │ │ ├── MoveItemModeMix.cs.meta │ │ │ │ │ ├── MoveItemModeReplace.cs │ │ │ │ │ ├── MoveItemModeReplace.cs.meta │ │ │ │ │ ├── MoveItemModeRipple.cs │ │ │ │ │ ├── MoveItemModeRipple.cs.meta │ │ │ │ │ ├── MovingItems.cs │ │ │ │ │ └── MovingItems.cs.meta │ │ │ │ ├── Sequence.meta │ │ │ │ ├── Sequence │ │ │ │ │ ├── EaseClip.cs │ │ │ │ │ ├── EaseClip.cs.meta │ │ │ │ │ ├── Jog.cs │ │ │ │ │ ├── Jog.cs.meta │ │ │ │ │ ├── MarkerHeaderContextMenu.cs │ │ │ │ │ ├── MarkerHeaderContextMenu.cs.meta │ │ │ │ │ ├── RectangleSelect.cs │ │ │ │ │ ├── RectangleSelect.cs.meta │ │ │ │ │ ├── RectangleTool.cs │ │ │ │ │ ├── RectangleTool.cs.meta │ │ │ │ │ ├── RectangleZoom.cs │ │ │ │ │ ├── RectangleZoom.cs.meta │ │ │ │ │ ├── SelectAndMoveItem.cs │ │ │ │ │ ├── SelectAndMoveItem.cs.meta │ │ │ │ │ ├── TrackZoom.cs │ │ │ │ │ ├── TrackZoom.cs.meta │ │ │ │ │ ├── TrimClip.cs │ │ │ │ │ └── TrimClip.cs.meta │ │ │ │ ├── TimeAreaAutoPanner.cs │ │ │ │ ├── TimeAreaAutoPanner.cs.meta │ │ │ │ ├── TimeIndicator.cs │ │ │ │ ├── TimeIndicator.cs.meta │ │ │ │ ├── TimelineClipGroup.cs │ │ │ │ ├── TimelineClipGroup.cs.meta │ │ │ │ ├── Trim.meta │ │ │ │ ├── Trim │ │ │ │ │ ├── ITrimItemMode.cs │ │ │ │ │ ├── ITrimItemMode.cs.meta │ │ │ │ │ ├── TrimItemModeMix.cs │ │ │ │ │ ├── TrimItemModeMix.cs.meta │ │ │ │ │ ├── TrimItemModeReplace.cs │ │ │ │ │ ├── TrimItemModeReplace.cs.meta │ │ │ │ │ ├── TrimItemModeRipple.cs │ │ │ │ │ └── TrimItemModeRipple.cs.meta │ │ │ │ ├── Utils.meta │ │ │ │ └── Utils │ │ │ │ │ ├── EditModeGUIUtils.cs │ │ │ │ │ ├── EditModeGUIUtils.cs.meta │ │ │ │ │ ├── EditModeMixUtils.cs │ │ │ │ │ ├── EditModeMixUtils.cs.meta │ │ │ │ │ ├── EditModeReplaceUtils.cs │ │ │ │ │ ├── EditModeReplaceUtils.cs.meta │ │ │ │ │ ├── EditModeRippleUtils.cs │ │ │ │ │ ├── EditModeRippleUtils.cs.meta │ │ │ │ │ ├── EditModeUtils.cs │ │ │ │ │ ├── EditModeUtils.cs.meta │ │ │ │ │ ├── ManipulatorsUtils.cs │ │ │ │ │ ├── ManipulatorsUtils.cs.meta │ │ │ │ │ ├── PlacementValidity.cs │ │ │ │ │ └── PlacementValidity.cs.meta │ │ │ ├── MenuPriority.cs │ │ │ ├── MenuPriority.cs.meta │ │ │ ├── Playables.meta │ │ │ ├── Playables │ │ │ │ ├── ControlPlayableInspector.cs │ │ │ │ └── ControlPlayableInspector.cs.meta │ │ │ ├── Properties.meta │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── AssemblyInfo.cs.meta │ │ │ ├── Recording.meta │ │ │ ├── Recording │ │ │ │ ├── AnimationTrackRecorder.cs │ │ │ │ ├── AnimationTrackRecorder.cs.meta │ │ │ │ ├── TimelineRecording.cs │ │ │ │ ├── TimelineRecording.cs.meta │ │ │ │ ├── TimelineRecordingContextualResponder.cs │ │ │ │ ├── TimelineRecordingContextualResponder.cs.meta │ │ │ │ ├── TimelineRecording_Monobehaviour.cs │ │ │ │ ├── TimelineRecording_Monobehaviour.cs.meta │ │ │ │ ├── TimelineRecording_PlayableAsset.cs │ │ │ │ ├── TimelineRecording_PlayableAsset.cs.meta │ │ │ │ ├── TrackAssetRecordingExtensions.cs │ │ │ │ └── TrackAssetRecordingExtensions.cs.meta │ │ │ ├── Shortcuts.cs │ │ │ ├── Shortcuts.cs.meta │ │ │ ├── Signals.meta │ │ │ ├── Signals │ │ │ │ ├── SignalAssetInspector.cs │ │ │ │ ├── SignalAssetInspector.cs.meta │ │ │ │ ├── SignalEmitterEditor.cs │ │ │ │ ├── SignalEmitterEditor.cs.meta │ │ │ │ ├── SignalEmitterInspector.cs │ │ │ │ ├── SignalEmitterInspector.cs.meta │ │ │ │ ├── SignalEventDrawer.cs │ │ │ │ ├── SignalEventDrawer.cs.meta │ │ │ │ ├── SignalManager.cs │ │ │ │ ├── SignalManager.cs.meta │ │ │ │ ├── SignalReceiverHeader.cs │ │ │ │ ├── SignalReceiverHeader.cs.meta │ │ │ │ ├── SignalReceiverInspector.cs │ │ │ │ ├── SignalReceiverInspector.cs.meta │ │ │ │ ├── SignalUtility.cs │ │ │ │ ├── SignalUtility.cs.meta │ │ │ │ ├── Styles.cs │ │ │ │ ├── Styles.cs.meta │ │ │ │ ├── TreeView.meta │ │ │ │ └── TreeView │ │ │ │ │ ├── SignalListFactory.cs │ │ │ │ │ ├── SignalListFactory.cs.meta │ │ │ │ │ ├── SignalReceiverItem.cs │ │ │ │ │ ├── SignalReceiverItem.cs.meta │ │ │ │ │ ├── SignalReceiverTreeView.cs │ │ │ │ │ └── SignalReceiverTreeView.cs.meta │ │ │ ├── State.meta │ │ │ ├── State │ │ │ │ ├── ISequenceState.cs │ │ │ │ ├── ISequenceState.cs.meta │ │ │ │ ├── SequenceHierarchy.cs │ │ │ │ ├── SequenceHierarchy.cs.meta │ │ │ │ ├── SequencePath.cs │ │ │ │ ├── SequencePath.cs.meta │ │ │ │ ├── SequenceState.cs │ │ │ │ ├── SequenceState.cs.meta │ │ │ │ ├── WindowState.cs │ │ │ │ └── WindowState.cs.meta │ │ │ ├── StyleSheets.meta │ │ │ ├── StyleSheets │ │ │ │ ├── Extensions.meta │ │ │ │ ├── Extensions │ │ │ │ │ ├── common.uss │ │ │ │ │ ├── common.uss.meta │ │ │ │ │ ├── dark.uss │ │ │ │ │ ├── dark.uss.meta │ │ │ │ │ ├── light.uss │ │ │ │ │ └── light.uss.meta │ │ │ │ ├── Images.meta │ │ │ │ ├── Images │ │ │ │ │ ├── DarkSkin.meta │ │ │ │ │ ├── DarkSkin │ │ │ │ │ │ ├── TimelineActivation.png │ │ │ │ │ │ ├── TimelineActivation.png.meta │ │ │ │ │ │ ├── TimelineAutokey.png │ │ │ │ │ │ ├── TimelineAutokey.png.meta │ │ │ │ │ │ ├── TimelineAutokey@2x.png │ │ │ │ │ │ ├── TimelineAutokey@2x.png.meta │ │ │ │ │ │ ├── TimelineAutokey_active.png │ │ │ │ │ │ ├── TimelineAutokey_active.png.meta │ │ │ │ │ │ ├── TimelineAutokey_active@2x.png │ │ │ │ │ │ ├── TimelineAutokey_active@2x.png.meta │ │ │ │ │ │ ├── TimelineContinue.png │ │ │ │ │ │ ├── TimelineContinue.png.meta │ │ │ │ │ │ ├── TimelineDisabledBackground.png │ │ │ │ │ │ ├── TimelineDisabledBackground.png.meta │ │ │ │ │ │ ├── TimelineEndPlayback.png │ │ │ │ │ │ ├── TimelineEndPlayback.png.meta │ │ │ │ │ │ ├── TimelineHold.png │ │ │ │ │ │ ├── TimelineHold.png.meta │ │ │ │ │ │ ├── TimelineIconClipIn.png │ │ │ │ │ │ ├── TimelineIconClipIn.png.meta │ │ │ │ │ │ ├── TimelineIconClipOut.png │ │ │ │ │ │ ├── TimelineIconClipOut.png.meta │ │ │ │ │ │ ├── TimelineInfiniteTrackNoShadow.png │ │ │ │ │ │ ├── TimelineInfiniteTrackNoShadow.png.meta │ │ │ │ │ │ ├── TimelineKeyframe.png │ │ │ │ │ │ ├── TimelineKeyframe.png.meta │ │ │ │ │ │ ├── TimelineLoop.png │ │ │ │ │ │ ├── TimelineLoop.png.meta │ │ │ │ │ │ ├── TimelineMarkerItem.png │ │ │ │ │ │ ├── TimelineMarkerItem.png.meta │ │ │ │ │ │ ├── TimelineMarkerItemCollapsed.png │ │ │ │ │ │ ├── TimelineMarkerItemCollapsed.png.meta │ │ │ │ │ │ ├── TimelineMarkerItemSelected.png │ │ │ │ │ │ ├── TimelineMarkerItemSelected.png.meta │ │ │ │ │ │ ├── TimelinePingPong.png │ │ │ │ │ │ ├── TimelinePingPong.png.meta │ │ │ │ │ │ ├── TimelinePlayRange.png │ │ │ │ │ │ ├── TimelinePlayRange.png.meta │ │ │ │ │ │ ├── TimelineSignalCollapsed.png │ │ │ │ │ │ ├── TimelineSignalCollapsed.png.meta │ │ │ │ │ │ ├── TimelineSignalSelected.png │ │ │ │ │ │ ├── TimelineSignalSelected.png.meta │ │ │ │ │ │ ├── TimelineStartPlayback.png │ │ │ │ │ │ ├── TimelineStartPlayback.png.meta │ │ │ │ │ │ ├── TimelineTimeCursor.png │ │ │ │ │ │ └── TimelineTimeCursor.png.meta │ │ │ │ │ ├── Icons.meta │ │ │ │ │ ├── Icons │ │ │ │ │ │ ├── Timeline-Marker-Warning-Overlay.png │ │ │ │ │ │ ├── Timeline-Marker-Warning-Overlay.png.meta │ │ │ │ │ │ ├── TimelineClipBG.png │ │ │ │ │ │ ├── TimelineClipBG.png.meta │ │ │ │ │ │ ├── TimelineClipFG.png │ │ │ │ │ │ ├── TimelineClipFG.png.meta │ │ │ │ │ │ ├── TimelineCollapseMarkerButtonDisabled.png │ │ │ │ │ │ ├── TimelineCollapseMarkerButtonDisabled.png.meta │ │ │ │ │ │ ├── TimelineCollapseMarkerButtonEnabled.png │ │ │ │ │ │ ├── TimelineCollapseMarkerButtonEnabled.png.meta │ │ │ │ │ │ ├── TimelineDigIn.png │ │ │ │ │ │ ├── TimelineDigIn.png.meta │ │ │ │ │ │ ├── TimelineEditModeMixOFF.png │ │ │ │ │ │ ├── TimelineEditModeMixOFF.png.meta │ │ │ │ │ │ ├── TimelineEditModeMixON.png │ │ │ │ │ │ ├── TimelineEditModeMixON.png.meta │ │ │ │ │ │ ├── TimelineEditModeReplaceOFF.png │ │ │ │ │ │ ├── TimelineEditModeReplaceOFF.png.meta │ │ │ │ │ │ ├── TimelineEditModeReplaceON.png │ │ │ │ │ │ ├── TimelineEditModeReplaceON.png.meta │ │ │ │ │ │ ├── TimelineEditModeRippleOFF.png │ │ │ │ │ │ ├── TimelineEditModeRippleOFF.png.meta │ │ │ │ │ │ ├── TimelineEditModeRippleON.png │ │ │ │ │ │ ├── TimelineEditModeRippleON.png.meta │ │ │ │ │ │ ├── TimelineHeaderMarkerIcon.png │ │ │ │ │ │ ├── TimelineHeaderMarkerIcon.png.meta │ │ │ │ │ │ ├── TimelineSelector.png │ │ │ │ │ │ ├── TimelineSelector.png.meta │ │ │ │ │ │ ├── TimelineSignal.png │ │ │ │ │ │ ├── TimelineSignal.png.meta │ │ │ │ │ │ ├── TrackAvatarButtonDisabled.png │ │ │ │ │ │ ├── TrackAvatarButtonDisabled.png.meta │ │ │ │ │ │ ├── TrackAvatarButtonDisabled@2x.png │ │ │ │ │ │ ├── TrackAvatarButtonDisabled@2x.png.meta │ │ │ │ │ │ ├── TrackAvatarButtonEnabled.png │ │ │ │ │ │ ├── TrackAvatarButtonEnabled.png.meta │ │ │ │ │ │ ├── TrackAvatarButtonEnabled@2x.png │ │ │ │ │ │ ├── TrackAvatarButtonEnabled@2x.png.meta │ │ │ │ │ │ ├── TrackCurvesButtonDisabled.png │ │ │ │ │ │ ├── TrackCurvesButtonDisabled.png.meta │ │ │ │ │ │ ├── TrackCurvesButtonDisabled@2x.png │ │ │ │ │ │ ├── TrackCurvesButtonDisabled@2x.png.meta │ │ │ │ │ │ ├── TrackCurvesButtonEnabled.png │ │ │ │ │ │ ├── TrackCurvesButtonEnabled.png.meta │ │ │ │ │ │ ├── TrackCurvesButtonEnabled@2x.png │ │ │ │ │ │ ├── TrackCurvesButtonEnabled@2x.png.meta │ │ │ │ │ │ ├── TrackLockButtonDisabled.png │ │ │ │ │ │ ├── TrackLockButtonDisabled.png.meta │ │ │ │ │ │ ├── TrackLockButtonDisabled@2x.png │ │ │ │ │ │ ├── TrackLockButtonDisabled@2x.png.meta │ │ │ │ │ │ ├── TrackLockButtonEnabled.png │ │ │ │ │ │ ├── TrackLockButtonEnabled.png.meta │ │ │ │ │ │ ├── TrackLockButtonEnabled@2x.png │ │ │ │ │ │ ├── TrackLockButtonEnabled@2x.png.meta │ │ │ │ │ │ ├── TrackMarkerButtonDisabled.png │ │ │ │ │ │ ├── TrackMarkerButtonDisabled.png.meta │ │ │ │ │ │ ├── TrackMarkerButtonDisabled@2x.png │ │ │ │ │ │ ├── TrackMarkerButtonDisabled@2x.png.meta │ │ │ │ │ │ ├── TrackMarkerButtonEnabled.png │ │ │ │ │ │ ├── TrackMarkerButtonEnabled.png.meta │ │ │ │ │ │ ├── TrackMarkerButtonEnabled@2x.png │ │ │ │ │ │ ├── TrackMarkerButtonEnabled@2x.png.meta │ │ │ │ │ │ ├── TrackMuteButtonDisabled.png │ │ │ │ │ │ ├── TrackMuteButtonDisabled.png.meta │ │ │ │ │ │ ├── TrackMuteButtonDisabled@2x.png │ │ │ │ │ │ ├── TrackMuteButtonDisabled@2x.png.meta │ │ │ │ │ │ ├── TrackMuteButtonEnabled.png │ │ │ │ │ │ ├── TrackMuteButtonEnabled.png.meta │ │ │ │ │ │ ├── TrackMuteButtonEnabled@2x.png │ │ │ │ │ │ ├── TrackMuteButtonEnabled@2x.png.meta │ │ │ │ │ │ ├── TrackRecordButtonDisabled.png │ │ │ │ │ │ ├── TrackRecordButtonDisabled.png.meta │ │ │ │ │ │ ├── TrackRecordButtonDisabled@2x.png │ │ │ │ │ │ ├── TrackRecordButtonDisabled@2x.png.meta │ │ │ │ │ │ ├── TrackRecordButtonEnabled.png │ │ │ │ │ │ ├── TrackRecordButtonEnabled.png.meta │ │ │ │ │ │ ├── TrackRecordButtonEnabled@2x.png │ │ │ │ │ │ ├── TrackRecordButtonEnabled@2x.png.meta │ │ │ │ │ │ ├── d_TimelineCollapseMarkerButtonDisabled.png │ │ │ │ │ │ ├── d_TimelineCollapseMarkerButtonDisabled.png.meta │ │ │ │ │ │ ├── d_TimelineCollapseMarkerButtonEnabled.png │ │ │ │ │ │ ├── d_TimelineCollapseMarkerButtonEnabled.png.meta │ │ │ │ │ │ ├── d_TimelineDigIn.png │ │ │ │ │ │ ├── d_TimelineDigIn.png.meta │ │ │ │ │ │ ├── d_TimelineEditModeMixOFF.png │ │ │ │ │ │ ├── d_TimelineEditModeMixOFF.png.meta │ │ │ │ │ │ ├── d_TimelineEditModeMixON.png │ │ │ │ │ │ ├── d_TimelineEditModeMixON.png.meta │ │ │ │ │ │ ├── d_TimelineEditModeReplaceOFF.png │ │ │ │ │ │ ├── d_TimelineEditModeReplaceOFF.png.meta │ │ │ │ │ │ ├── d_TimelineEditModeReplaceON.png │ │ │ │ │ │ ├── d_TimelineEditModeReplaceON.png.meta │ │ │ │ │ │ ├── d_TimelineEditModeRippleOFF.png │ │ │ │ │ │ ├── d_TimelineEditModeRippleOFF.png.meta │ │ │ │ │ │ ├── d_TimelineEditModeRippleON.png │ │ │ │ │ │ ├── d_TimelineEditModeRippleON.png.meta │ │ │ │ │ │ ├── d_TimelineHeaderMarkerIcon.png │ │ │ │ │ │ ├── d_TimelineHeaderMarkerIcon.png.meta │ │ │ │ │ │ ├── d_TimelineSelector.png │ │ │ │ │ │ ├── d_TimelineSelector.png.meta │ │ │ │ │ │ ├── d_TimelineSignal.png │ │ │ │ │ │ ├── d_TimelineSignal.png.meta │ │ │ │ │ │ ├── d_TrackAvatarButtonDisabled.png │ │ │ │ │ │ ├── d_TrackAvatarButtonDisabled.png.meta │ │ │ │ │ │ ├── d_TrackAvatarButtonDisabled@2x.png │ │ │ │ │ │ ├── d_TrackAvatarButtonDisabled@2x.png.meta │ │ │ │ │ │ ├── d_TrackAvatarButtonEnabled.png │ │ │ │ │ │ ├── d_TrackAvatarButtonEnabled.png.meta │ │ │ │ │ │ ├── d_TrackAvatarButtonEnabled@2x.png │ │ │ │ │ │ ├── d_TrackAvatarButtonEnabled@2x.png.meta │ │ │ │ │ │ ├── d_TrackCurvesButtonDisabled.png │ │ │ │ │ │ ├── d_TrackCurvesButtonDisabled.png.meta │ │ │ │ │ │ ├── d_TrackCurvesButtonDisabled@2x.png │ │ │ │ │ │ ├── d_TrackCurvesButtonDisabled@2x.png.meta │ │ │ │ │ │ ├── d_TrackCurvesButtonEnabled.png │ │ │ │ │ │ ├── d_TrackCurvesButtonEnabled.png.meta │ │ │ │ │ │ ├── d_TrackCurvesButtonEnabled@2x.png │ │ │ │ │ │ ├── d_TrackCurvesButtonEnabled@2x.png.meta │ │ │ │ │ │ ├── d_TrackLockButtonDisabled.png │ │ │ │ │ │ ├── d_TrackLockButtonDisabled.png.meta │ │ │ │ │ │ ├── d_TrackLockButtonDisabled@2x.png │ │ │ │ │ │ ├── d_TrackLockButtonDisabled@2x.png.meta │ │ │ │ │ │ ├── d_TrackLockButtonEnabled.png │ │ │ │ │ │ ├── d_TrackLockButtonEnabled.png.meta │ │ │ │ │ │ ├── d_TrackLockButtonEnabled@2x.png │ │ │ │ │ │ ├── d_TrackLockButtonEnabled@2x.png.meta │ │ │ │ │ │ ├── d_TrackMarkerButtonDisabled.png │ │ │ │ │ │ ├── d_TrackMarkerButtonDisabled.png.meta │ │ │ │ │ │ ├── d_TrackMarkerButtonDisabled@2x.png │ │ │ │ │ │ ├── d_TrackMarkerButtonDisabled@2x.png.meta │ │ │ │ │ │ ├── d_TrackMarkerButtonEnabled.png │ │ │ │ │ │ ├── d_TrackMarkerButtonEnabled.png.meta │ │ │ │ │ │ ├── d_TrackMarkerButtonEnabled@2x.png │ │ │ │ │ │ ├── d_TrackMarkerButtonEnabled@2x.png.meta │ │ │ │ │ │ ├── d_TrackMuteButtonDisabled.png │ │ │ │ │ │ ├── d_TrackMuteButtonDisabled.png.meta │ │ │ │ │ │ ├── d_TrackMuteButtonDisabled@2x.png │ │ │ │ │ │ ├── d_TrackMuteButtonDisabled@2x.png.meta │ │ │ │ │ │ ├── d_TrackMuteButtonEnabled.png │ │ │ │ │ │ ├── d_TrackMuteButtonEnabled.png.meta │ │ │ │ │ │ ├── d_TrackMuteButtonEnabled@2x.png │ │ │ │ │ │ ├── d_TrackMuteButtonEnabled@2x.png.meta │ │ │ │ │ │ ├── d_TrackRecordButtonDisabled.png │ │ │ │ │ │ ├── d_TrackRecordButtonDisabled.png.meta │ │ │ │ │ │ ├── d_TrackRecordButtonDisabled@2x.png │ │ │ │ │ │ ├── d_TrackRecordButtonDisabled@2x.png.meta │ │ │ │ │ │ ├── d_TrackRecordButtonEnabled.png │ │ │ │ │ │ ├── d_TrackRecordButtonEnabled.png.meta │ │ │ │ │ │ ├── d_TrackRecordButtonEnabled@2x.png │ │ │ │ │ │ └── d_TrackRecordButtonEnabled@2x.png.meta │ │ │ │ │ ├── LightSkin.meta │ │ │ │ │ ├── LightSkin │ │ │ │ │ │ ├── TimelineActivation.png │ │ │ │ │ │ ├── TimelineActivation.png.meta │ │ │ │ │ │ ├── TimelineAutokey.png │ │ │ │ │ │ ├── TimelineAutokey.png.meta │ │ │ │ │ │ ├── TimelineAutokey@2x.png │ │ │ │ │ │ ├── TimelineAutokey@2x.png.meta │ │ │ │ │ │ ├── TimelineAutokey_active.png │ │ │ │ │ │ ├── TimelineAutokey_active.png.meta │ │ │ │ │ │ ├── TimelineAutokey_active@2x.png │ │ │ │ │ │ ├── TimelineAutokey_active@2x.png.meta │ │ │ │ │ │ ├── TimelineContinue.png │ │ │ │ │ │ ├── TimelineContinue.png.meta │ │ │ │ │ │ ├── TimelineDisabledBackground.png │ │ │ │ │ │ ├── TimelineDisabledBackground.png.meta │ │ │ │ │ │ ├── TimelineEndPlayback.png │ │ │ │ │ │ ├── TimelineEndPlayback.png.meta │ │ │ │ │ │ ├── TimelineHold.png │ │ │ │ │ │ ├── TimelineHold.png.meta │ │ │ │ │ │ ├── TimelineIconClipIn.png │ │ │ │ │ │ ├── TimelineIconClipIn.png.meta │ │ │ │ │ │ ├── TimelineIconClipOut.png │ │ │ │ │ │ ├── TimelineIconClipOut.png.meta │ │ │ │ │ │ ├── TimelineInfiniteTrackNoShadow.png │ │ │ │ │ │ ├── TimelineInfiniteTrackNoShadow.png.meta │ │ │ │ │ │ ├── TimelineKeyframe.png │ │ │ │ │ │ ├── TimelineKeyframe.png.meta │ │ │ │ │ │ ├── TimelineLoop.png │ │ │ │ │ │ ├── TimelineLoop.png.meta │ │ │ │ │ │ ├── TimelineMarkerItem.png │ │ │ │ │ │ ├── TimelineMarkerItem.png.meta │ │ │ │ │ │ ├── TimelineMarkerItemCollapsed.png │ │ │ │ │ │ ├── TimelineMarkerItemCollapsed.png.meta │ │ │ │ │ │ ├── TimelineMarkerItemSelected.png │ │ │ │ │ │ ├── TimelineMarkerItemSelected.png.meta │ │ │ │ │ │ ├── TimelinePingPong.png │ │ │ │ │ │ ├── TimelinePingPong.png.meta │ │ │ │ │ │ ├── TimelinePlayRange.png │ │ │ │ │ │ ├── TimelinePlayRange.png.meta │ │ │ │ │ │ ├── TimelineSignalCollapsed.png │ │ │ │ │ │ ├── TimelineSignalCollapsed.png.meta │ │ │ │ │ │ ├── TimelineSignalSelected.png │ │ │ │ │ │ ├── TimelineSignalSelected.png.meta │ │ │ │ │ │ ├── TimelineStartPlayback.png │ │ │ │ │ │ ├── TimelineStartPlayback.png.meta │ │ │ │ │ │ ├── TimelineTimeCursor.png │ │ │ │ │ │ └── TimelineTimeCursor.png.meta │ │ │ │ │ ├── Shared.meta │ │ │ │ │ └── Shared │ │ │ │ │ │ ├── Timeline-Marker-Multi-Overlay.png │ │ │ │ │ │ ├── Timeline-Marker-Multi-Overlay.png.meta │ │ │ │ │ │ ├── TimelineBottomShadow.png │ │ │ │ │ │ ├── TimelineBottomShadow.png.meta │ │ │ │ │ │ ├── TimelineConnector.png │ │ │ │ │ │ ├── TimelineConnector.png.meta │ │ │ │ │ │ ├── TimelineDisplay.png │ │ │ │ │ │ ├── TimelineDisplay.png.meta │ │ │ │ │ │ ├── TimelineGroupBackground.png │ │ │ │ │ │ ├── TimelineGroupBackground.png.meta │ │ │ │ │ │ ├── TimelineOutline.png │ │ │ │ │ │ ├── TimelineOutline.png.meta │ │ │ │ │ │ ├── TimelineSeqEnd.png │ │ │ │ │ │ ├── TimelineSeqEnd.png.meta │ │ │ │ │ │ ├── TimelineSwatch.png │ │ │ │ │ │ ├── TimelineSwatch.png.meta │ │ │ │ │ │ ├── TimelineWarning.png │ │ │ │ │ │ └── TimelineWarning.png.meta │ │ │ │ ├── res.meta │ │ │ │ └── res │ │ │ │ │ ├── HumanoidDefault.anim │ │ │ │ │ ├── HumanoidDefault.anim.meta │ │ │ │ │ ├── Timeline_DarkSkin.txt │ │ │ │ │ ├── Timeline_DarkSkin.txt.meta │ │ │ │ │ ├── Timeline_LightSkin.txt │ │ │ │ │ └── Timeline_LightSkin.txt.meta │ │ │ ├── TimelineEditor.cs │ │ │ ├── TimelineEditor.cs.meta │ │ │ ├── TimelineHelpers.cs │ │ │ ├── TimelineHelpers.cs.meta │ │ │ ├── TimelineSelection.cs │ │ │ ├── TimelineSelection.cs.meta │ │ │ ├── TimelineUtility.cs │ │ │ ├── TimelineUtility.cs.meta │ │ │ ├── Tooltip.cs │ │ │ ├── Tooltip.cs.meta │ │ │ ├── Trackhead.cs │ │ │ ├── Trackhead.cs.meta │ │ │ ├── Undo.meta │ │ │ ├── Undo │ │ │ │ ├── ApplyDefaultUndoAttribute.cs │ │ │ │ ├── ApplyDefaultUndoAttribute.cs.meta │ │ │ │ ├── UndoExtensions.cs │ │ │ │ ├── UndoExtensions.cs.meta │ │ │ │ ├── UndoScope.cs │ │ │ │ └── UndoScope.cs.meta │ │ │ ├── Unity.Timeline.Editor.asmdef │ │ │ ├── Unity.Timeline.Editor.asmdef.meta │ │ │ ├── UnityEditorInternals.cs │ │ │ ├── UnityEditorInternals.cs.meta │ │ │ ├── Utilities.meta │ │ │ ├── Utilities │ │ │ │ ├── AnimatedParameterCache.cs │ │ │ │ ├── AnimatedParameterCache.cs.meta │ │ │ │ ├── AnimatedParameterUtility.cs │ │ │ │ ├── AnimatedParameterUtility.cs.meta │ │ │ │ ├── AnimatedPropertyUtility.cs │ │ │ │ ├── AnimatedPropertyUtility.cs.meta │ │ │ │ ├── BindingUtility.cs │ │ │ │ ├── BindingUtility.cs.meta │ │ │ │ ├── BreadcrumbDrawer.cs │ │ │ │ ├── BreadcrumbDrawer.cs.meta │ │ │ │ ├── ClipModifier.cs │ │ │ │ ├── ClipModifier.cs.meta │ │ │ │ ├── Clipboard.cs │ │ │ │ ├── Clipboard.cs.meta │ │ │ │ ├── ControlPlayableUtility.cs │ │ │ │ ├── ControlPlayableUtility.cs.meta │ │ │ │ ├── CustomTrackDrawerAttribute.cs │ │ │ │ ├── CustomTrackDrawerAttribute.cs.meta │ │ │ │ ├── DisplayNameHelper.cs │ │ │ │ ├── DisplayNameHelper.cs.meta │ │ │ │ ├── Graphics.cs │ │ │ │ ├── Graphics.cs.meta │ │ │ │ ├── KeyTraverser.cs │ │ │ │ ├── KeyTraverser.cs.meta │ │ │ │ ├── MarkerModifier.cs │ │ │ │ ├── MarkerModifier.cs.meta │ │ │ │ ├── ObjectExtension.cs │ │ │ │ ├── ObjectExtension.cs.meta │ │ │ │ ├── ObjectReferenceField.cs │ │ │ │ ├── ObjectReferenceField.cs.meta │ │ │ │ ├── PropertyCollector.cs │ │ │ │ ├── PropertyCollector.cs.meta │ │ │ │ ├── Range.cs │ │ │ │ ├── Range.cs.meta │ │ │ │ ├── Scopes.meta │ │ │ │ ├── Scopes │ │ │ │ │ ├── GUIColorOverride.cs │ │ │ │ │ ├── GUIColorOverride.cs.meta │ │ │ │ │ ├── GUIGroupScope.cs │ │ │ │ │ ├── GUIGroupScope.cs.meta │ │ │ │ │ ├── GUIMixedValueScope.cs │ │ │ │ │ ├── GUIMixedValueScope.cs.meta │ │ │ │ │ ├── GUIViewportScope.cs │ │ │ │ │ ├── GUIViewportScope.cs.meta │ │ │ │ │ ├── HorizontalScope.cs │ │ │ │ │ ├── HorizontalScope.cs.meta │ │ │ │ │ ├── IndentLevelScope.cs │ │ │ │ │ ├── IndentLevelScope.cs.meta │ │ │ │ │ ├── LabelWidthScope.cs │ │ │ │ │ ├── LabelWidthScope.cs.meta │ │ │ │ │ ├── PropertyScope.cs │ │ │ │ │ └── PropertyScope.cs.meta │ │ │ │ ├── SequenceSelectorNameFormater.cs │ │ │ │ ├── SequenceSelectorNameFormater.cs.meta │ │ │ │ ├── SpacePartitioner.cs │ │ │ │ ├── SpacePartitioner.cs.meta │ │ │ │ ├── StyleManager.cs │ │ │ │ ├── StyleManager.cs.meta │ │ │ │ ├── StyleNormalColorOverride.cs │ │ │ │ ├── StyleNormalColorOverride.cs.meta │ │ │ │ ├── TimeReferenceUtility.cs │ │ │ │ ├── TimeReferenceUtility.cs.meta │ │ │ │ ├── TimelineKeyboardNavigation.cs │ │ │ │ ├── TimelineKeyboardNavigation.cs.meta │ │ │ │ ├── TrackModifier.cs │ │ │ │ ├── TrackModifier.cs.meta │ │ │ │ ├── TrackResourceCache.cs │ │ │ │ ├── TrackResourceCache.cs.meta │ │ │ │ ├── TypeUtility.cs │ │ │ │ └── TypeUtility.cs.meta │ │ │ ├── Window.meta │ │ │ ├── Window │ │ │ │ ├── Modes.meta │ │ │ │ ├── Modes │ │ │ │ │ ├── TimeReferenceMode.cs │ │ │ │ │ ├── TimeReferenceMode.cs.meta │ │ │ │ │ ├── TimelineActiveMode.cs │ │ │ │ │ ├── TimelineActiveMode.cs.meta │ │ │ │ │ ├── TimelineAssetEditionMode.cs │ │ │ │ │ ├── TimelineAssetEditionMode.cs.meta │ │ │ │ │ ├── TimelineDisabledMode.cs │ │ │ │ │ ├── TimelineDisabledMode.cs.meta │ │ │ │ │ ├── TimelineInactiveMode.cs │ │ │ │ │ ├── TimelineInactiveMode.cs.meta │ │ │ │ │ ├── TimelineMode.cs │ │ │ │ │ ├── TimelineMode.cs.meta │ │ │ │ │ ├── TimelineReadOnlyMode.cs │ │ │ │ │ └── TimelineReadOnlyMode.cs.meta │ │ │ │ ├── PlaybackScroller.cs │ │ │ │ ├── PlaybackScroller.cs.meta │ │ │ │ ├── TimelineMarkerHeaderGUI.cs │ │ │ │ ├── TimelineMarkerHeaderGUI.cs.meta │ │ │ │ ├── TimelineWindow.cs │ │ │ │ ├── TimelineWindow.cs.meta │ │ │ │ ├── TimelineWindowTimeControl.cs │ │ │ │ ├── TimelineWindowTimeControl.cs.meta │ │ │ │ ├── TimelineWindow_ActiveTimeline.cs │ │ │ │ ├── TimelineWindow_ActiveTimeline.cs.meta │ │ │ │ ├── TimelineWindow_Breadcrumbs.cs │ │ │ │ ├── TimelineWindow_Breadcrumbs.cs.meta │ │ │ │ ├── TimelineWindow_Duration.cs │ │ │ │ ├── TimelineWindow_Duration.cs.meta │ │ │ │ ├── TimelineWindow_EditorCallbacks.cs │ │ │ │ ├── TimelineWindow_EditorCallbacks.cs.meta │ │ │ │ ├── TimelineWindow_Gui.cs │ │ │ │ ├── TimelineWindow_Gui.cs.meta │ │ │ │ ├── TimelineWindow_HeaderGui.cs │ │ │ │ ├── TimelineWindow_HeaderGui.cs.meta │ │ │ │ ├── TimelineWindow_Manipulators.cs │ │ │ │ ├── TimelineWindow_Manipulators.cs.meta │ │ │ │ ├── TimelineWindow_PlayRange.cs │ │ │ │ ├── TimelineWindow_PlayRange.cs.meta │ │ │ │ ├── TimelineWindow_PlayableLookup.cs │ │ │ │ ├── TimelineWindow_PlayableLookup.cs.meta │ │ │ │ ├── TimelineWindow_PreviewPlayMode.cs │ │ │ │ ├── TimelineWindow_PreviewPlayMode.cs.meta │ │ │ │ ├── TimelineWindow_Selection.cs │ │ │ │ ├── TimelineWindow_Selection.cs.meta │ │ │ │ ├── TimelineWindow_StateChange.cs │ │ │ │ ├── TimelineWindow_StateChange.cs.meta │ │ │ │ ├── TimelineWindow_TimeArea.cs │ │ │ │ ├── TimelineWindow_TimeArea.cs.meta │ │ │ │ ├── TimelineWindow_TimeCursor.cs │ │ │ │ ├── TimelineWindow_TimeCursor.cs.meta │ │ │ │ ├── TimelineWindow_TrackGui.cs │ │ │ │ ├── TimelineWindow_TrackGui.cs.meta │ │ │ │ ├── ViewModel.meta │ │ │ │ ├── ViewModel │ │ │ │ │ ├── ScriptableObjectViewPrefs.cs │ │ │ │ │ ├── ScriptableObjectViewPrefs.cs.meta │ │ │ │ │ ├── TimelineAssetViewModel.cs │ │ │ │ │ ├── TimelineAssetViewModel.cs.meta │ │ │ │ │ ├── TimelineWindowViewPrefs.cs │ │ │ │ │ └── TimelineWindowViewPrefs.cs.meta │ │ │ │ ├── WindowConstants.cs │ │ │ │ └── WindowConstants.cs.meta │ │ │ ├── inspectors.meta │ │ │ ├── inspectors │ │ │ │ ├── AnimationPlayableAssetInspector.cs │ │ │ │ ├── AnimationPlayableAssetInspector.cs.meta │ │ │ │ ├── AnimationTrackInspector.cs │ │ │ │ ├── AnimationTrackInspector.cs.meta │ │ │ │ ├── BasicAssetInspector.cs │ │ │ │ ├── BasicAssetInspector.cs.meta │ │ │ │ ├── BuiltInCurvePresets.cs │ │ │ │ ├── BuiltInCurvePresets.cs.meta │ │ │ │ ├── ClipInspector.meta │ │ │ │ ├── ClipInspector │ │ │ │ │ ├── ClipInspector.cs │ │ │ │ │ ├── ClipInspector.cs.meta │ │ │ │ │ ├── ClipInspectorCurveEditor.cs │ │ │ │ │ ├── ClipInspectorCurveEditor.cs.meta │ │ │ │ │ ├── ClipInspectorSelectionInfo.cs │ │ │ │ │ └── ClipInspectorSelectionInfo.cs.meta │ │ │ │ ├── CurvesOwner.meta │ │ │ │ ├── CurvesOwner │ │ │ │ │ ├── CurvesOwnerInspectorHelper.cs │ │ │ │ │ ├── CurvesOwnerInspectorHelper.cs.meta │ │ │ │ │ ├── ICurvesOwnerInspectorWrapper.cs │ │ │ │ │ └── ICurvesOwnerInspectorWrapper.cs.meta │ │ │ │ ├── DirectorNamedColorInspector.cs │ │ │ │ ├── DirectorNamedColorInspector.cs.meta │ │ │ │ ├── EditorClip.cs │ │ │ │ ├── EditorClip.cs.meta │ │ │ │ ├── EditorClipFactory.cs │ │ │ │ ├── EditorClipFactory.cs.meta │ │ │ │ ├── GroupTrackInspector.cs │ │ │ │ ├── GroupTrackInspector.cs.meta │ │ │ │ ├── MarkerInspector.cs │ │ │ │ ├── MarkerInspector.cs.meta │ │ │ │ ├── TimeFieldDrawer.cs │ │ │ │ ├── TimeFieldDrawer.cs.meta │ │ │ │ ├── TimelineAssetInspector.cs │ │ │ │ ├── TimelineAssetInspector.cs.meta │ │ │ │ ├── TimelineInspectorUtility.cs │ │ │ │ ├── TimelineInspectorUtility.cs.meta │ │ │ │ ├── TimelinePreferences.cs │ │ │ │ ├── TimelinePreferences.cs.meta │ │ │ │ ├── TimelineProjectSettings.cs │ │ │ │ ├── TimelineProjectSettings.cs.meta │ │ │ │ ├── TrackAssetInspector.cs │ │ │ │ └── TrackAssetInspector.cs.meta │ │ │ ├── treeview.meta │ │ │ └── treeview │ │ │ │ ├── AnimationTrackKeyDataSource.cs │ │ │ │ ├── AnimationTrackKeyDataSource.cs.meta │ │ │ │ ├── Control.cs │ │ │ │ ├── Control.cs.meta │ │ │ │ ├── Drawers.meta │ │ │ │ ├── Drawers │ │ │ │ ├── AnimationTrackDrawer.cs │ │ │ │ ├── AnimationTrackDrawer.cs.meta │ │ │ │ ├── ClipDrawer.cs │ │ │ │ ├── ClipDrawer.cs.meta │ │ │ │ ├── InfiniteTrackDrawer.cs │ │ │ │ ├── InfiniteTrackDrawer.cs.meta │ │ │ │ ├── Layers.meta │ │ │ │ ├── Layers │ │ │ │ │ ├── ClipsLayer.cs │ │ │ │ │ ├── ClipsLayer.cs.meta │ │ │ │ │ ├── ItemsLayer.cs │ │ │ │ │ ├── ItemsLayer.cs.meta │ │ │ │ │ ├── MarkersLayer.cs │ │ │ │ │ └── MarkersLayer.cs.meta │ │ │ │ ├── TrackDrawer.cs │ │ │ │ ├── TrackDrawer.cs.meta │ │ │ │ ├── TrackItemsDrawer.cs │ │ │ │ └── TrackItemsDrawer.cs.meta │ │ │ │ ├── IPropertyKeyDataSource.cs │ │ │ │ ├── IPropertyKeyDataSource.cs.meta │ │ │ │ ├── IRowGUI.cs │ │ │ │ ├── IRowGUI.cs.meta │ │ │ │ ├── ItemGui.meta │ │ │ │ ├── ItemGui │ │ │ │ ├── ISelectable.cs │ │ │ │ ├── ISelectable.cs.meta │ │ │ │ ├── TimelineClipGUI.cs │ │ │ │ ├── TimelineClipGUI.cs.meta │ │ │ │ ├── TimelineItemGUI.cs │ │ │ │ ├── TimelineItemGUI.cs.meta │ │ │ │ ├── TimelineMarkerClusterGUI.cs │ │ │ │ ├── TimelineMarkerClusterGUI.cs.meta │ │ │ │ ├── TimelineMarkerGUI.cs │ │ │ │ └── TimelineMarkerGUI.cs.meta │ │ │ │ ├── ManipulationsClips.cs │ │ │ │ ├── ManipulationsClips.cs.meta │ │ │ │ ├── ManipulationsTimeline.cs │ │ │ │ ├── ManipulationsTimeline.cs.meta │ │ │ │ ├── ManipulationsTracks.cs │ │ │ │ ├── ManipulationsTracks.cs.meta │ │ │ │ ├── Manipulator.cs │ │ │ │ ├── Manipulator.cs.meta │ │ │ │ ├── PickerUtils.cs │ │ │ │ ├── PickerUtils.cs.meta │ │ │ │ ├── Snapping.meta │ │ │ │ ├── Snapping │ │ │ │ ├── IAttractable.cs │ │ │ │ ├── IAttractable.cs.meta │ │ │ │ ├── ISnappable.cs │ │ │ │ ├── ISnappable.cs.meta │ │ │ │ ├── SnapEngine.cs │ │ │ │ └── SnapEngine.cs.meta │ │ │ │ ├── TimelineClipHandle.cs │ │ │ │ ├── TimelineClipHandle.cs.meta │ │ │ │ ├── TimelineClipUnion.cs │ │ │ │ ├── TimelineClipUnion.cs.meta │ │ │ │ ├── TimelineDataSource.cs │ │ │ │ ├── TimelineDataSource.cs.meta │ │ │ │ ├── TimelineDragging.cs │ │ │ │ ├── TimelineDragging.cs.meta │ │ │ │ ├── TimelineTreeView.cs │ │ │ │ ├── TimelineTreeView.cs.meta │ │ │ │ ├── TimelineTreeViewGUI.cs │ │ │ │ ├── TimelineTreeViewGUI.cs.meta │ │ │ │ ├── TrackGui.meta │ │ │ │ ├── TrackGui │ │ │ │ ├── InlineCurveEditor.cs │ │ │ │ ├── InlineCurveEditor.cs.meta │ │ │ │ ├── TimelineGroupGUI.cs │ │ │ │ ├── TimelineGroupGUI.cs.meta │ │ │ │ ├── TimelineTrackBaseGUI.cs │ │ │ │ ├── TimelineTrackBaseGUI.cs.meta │ │ │ │ ├── TimelineTrackErrorGUI.cs │ │ │ │ ├── TimelineTrackErrorGUI.cs.meta │ │ │ │ ├── TimelineTrackGUI.cs │ │ │ │ ├── TimelineTrackGUI.cs.meta │ │ │ │ ├── TrackResizeHandle.cs │ │ │ │ └── TrackResizeHandle.cs.meta │ │ │ │ ├── TrackPropertyCurvesDataSource.cs │ │ │ │ └── TrackPropertyCurvesDataSource.cs.meta │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Runtime.meta │ │ ├── Runtime │ │ │ ├── Activation.meta │ │ │ ├── Activation │ │ │ │ ├── ActivationMixerPlayable.cs │ │ │ │ ├── ActivationMixerPlayable.cs.meta │ │ │ │ ├── ActivationPlayableAsset.cs │ │ │ │ ├── ActivationPlayableAsset.cs.meta │ │ │ │ ├── ActivationTrack.cs │ │ │ │ └── ActivationTrack.cs.meta │ │ │ ├── Animation.meta │ │ │ ├── Animation │ │ │ │ ├── AnimationOutputWeightProcessor.cs │ │ │ │ ├── AnimationOutputWeightProcessor.cs.meta │ │ │ │ ├── AnimationPlayableAsset.cs │ │ │ │ ├── AnimationPlayableAsset.cs.meta │ │ │ │ ├── AnimationPreviewUpdateCallback.cs │ │ │ │ ├── AnimationPreviewUpdateCallback.cs.meta │ │ │ │ ├── AnimationTrack.cs │ │ │ │ ├── AnimationTrack.cs.meta │ │ │ │ ├── ICurvesOwner.cs │ │ │ │ └── ICurvesOwner.cs.meta │ │ │ ├── AssetUpgrade.meta │ │ │ ├── AssetUpgrade │ │ │ │ ├── AnimationPlayableAssetUpgrade.cs │ │ │ │ ├── AnimationPlayableAssetUpgrade.cs.meta │ │ │ │ ├── AnimationTrackUpgrade.cs │ │ │ │ ├── AnimationTrackUpgrade.cs.meta │ │ │ │ ├── ClipUpgrade.cs │ │ │ │ ├── ClipUpgrade.cs.meta │ │ │ │ ├── TimelineUpgrade.cs │ │ │ │ ├── TimelineUpgrade.cs.meta │ │ │ │ ├── TrackUpgrade.cs │ │ │ │ └── TrackUpgrade.cs.meta │ │ │ ├── Attributes.meta │ │ │ ├── Attributes │ │ │ │ ├── TrackColorAttribute.cs │ │ │ │ └── TrackColorAttribute.cs.meta │ │ │ ├── Audio.meta │ │ │ ├── Audio │ │ │ │ ├── AudioClipProperties.cs │ │ │ │ ├── AudioClipProperties.cs.meta │ │ │ │ ├── AudioMixerProperties.cs │ │ │ │ ├── AudioMixerProperties.cs.meta │ │ │ │ ├── AudioPlayableAsset.cs │ │ │ │ ├── AudioPlayableAsset.cs.meta │ │ │ │ ├── AudioTrack.cs │ │ │ │ └── AudioTrack.cs.meta │ │ │ ├── ClipCaps.cs │ │ │ ├── ClipCaps.cs.meta │ │ │ ├── Control.meta │ │ │ ├── Control │ │ │ │ ├── ControlPlayableAsset.cs │ │ │ │ ├── ControlPlayableAsset.cs.meta │ │ │ │ ├── ControlTrack.cs │ │ │ │ └── ControlTrack.cs.meta │ │ │ ├── DiscreteTime.cs │ │ │ ├── DiscreteTime.cs.meta │ │ │ ├── Evaluation.meta │ │ │ ├── Evaluation │ │ │ │ ├── InfiniteRuntimeClip.cs │ │ │ │ ├── InfiniteRuntimeClip.cs.meta │ │ │ │ ├── IntervalTree.cs │ │ │ │ ├── IntervalTree.cs.meta │ │ │ │ ├── RuntimeClip.cs │ │ │ │ ├── RuntimeClip.cs.meta │ │ │ │ ├── RuntimeClipBase.cs │ │ │ │ ├── RuntimeClipBase.cs.meta │ │ │ │ ├── RuntimeElement.cs │ │ │ │ ├── RuntimeElement.cs.meta │ │ │ │ ├── ScheduleRuntimeClip.cs │ │ │ │ └── ScheduleRuntimeClip.cs.meta │ │ │ ├── Events.meta │ │ │ ├── Events │ │ │ │ ├── IMarker.cs │ │ │ │ ├── IMarker.cs.meta │ │ │ │ ├── INotificationOptionProvider.cs │ │ │ │ ├── INotificationOptionProvider.cs.meta │ │ │ │ ├── Marker.cs │ │ │ │ ├── Marker.cs.meta │ │ │ │ ├── MarkerList.cs │ │ │ │ ├── MarkerList.cs.meta │ │ │ │ ├── MarkerTrack.cs │ │ │ │ ├── MarkerTrack.cs.meta │ │ │ │ ├── SignalTrack.cs │ │ │ │ ├── SignalTrack.cs.meta │ │ │ │ ├── Signals.meta │ │ │ │ └── Signals │ │ │ │ │ ├── CustomSignalEventDrawer.cs │ │ │ │ │ ├── CustomSignalEventDrawer.cs.meta │ │ │ │ │ ├── SignalAsset.cs │ │ │ │ │ ├── SignalAsset.cs.meta │ │ │ │ │ ├── SignalEmitter.cs │ │ │ │ │ ├── SignalEmitter.cs.meta │ │ │ │ │ ├── SignalReceiver.cs │ │ │ │ │ └── SignalReceiver.cs.meta │ │ │ ├── Extensions.meta │ │ │ ├── Extensions │ │ │ │ ├── TrackExtensions.cs │ │ │ │ └── TrackExtensions.cs.meta │ │ │ ├── GroupTrack.cs │ │ │ ├── GroupTrack.cs.meta │ │ │ ├── ILayerable.cs │ │ │ ├── ILayerable.cs.meta │ │ │ ├── Playables.meta │ │ │ ├── Playables │ │ │ │ ├── ActivationControlPlayable.cs │ │ │ │ ├── ActivationControlPlayable.cs.meta │ │ │ │ ├── BasicScriptPlayable.cs │ │ │ │ ├── BasicScriptPlayable.cs.meta │ │ │ │ ├── DirectorControlPlayable.cs │ │ │ │ ├── DirectorControlPlayable.cs.meta │ │ │ │ ├── ITimeControl.cs │ │ │ │ ├── ITimeControl.cs.meta │ │ │ │ ├── NotificationFlags.cs │ │ │ │ ├── NotificationFlags.cs.meta │ │ │ │ ├── ParticleControlPlayable.cs │ │ │ │ ├── ParticleControlPlayable.cs.meta │ │ │ │ ├── PrefabControlPlayable.cs │ │ │ │ ├── PrefabControlPlayable.cs.meta │ │ │ │ ├── TimeControlPlayable.cs │ │ │ │ ├── TimeControlPlayable.cs.meta │ │ │ │ ├── TimeNotificationBehaviour.cs │ │ │ │ └── TimeNotificationBehaviour.cs.meta │ │ │ ├── Properties.meta │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── AssemblyInfo.cs.meta │ │ │ ├── Scripting.meta │ │ │ ├── Scripting │ │ │ │ ├── PlayableTrack.cs │ │ │ │ └── PlayableTrack.cs.meta │ │ │ ├── Timeline.deprecated.cs │ │ │ ├── Timeline.deprecated.cs.meta │ │ │ ├── TimelineAsset.cs │ │ │ ├── TimelineAsset.cs.meta │ │ │ ├── TimelineAsset_CreateRemove.cs │ │ │ ├── TimelineAsset_CreateRemove.cs.meta │ │ │ ├── TimelineAttributes.cs │ │ │ ├── TimelineAttributes.cs.meta │ │ │ ├── TimelineClip.cs │ │ │ ├── TimelineClip.cs.meta │ │ │ ├── TimelinePlayable.cs │ │ │ ├── TimelinePlayable.cs.meta │ │ │ ├── TrackAsset.cs │ │ │ ├── TrackAsset.cs.meta │ │ │ ├── Unity.Timeline.asmdef │ │ │ ├── Unity.Timeline.asmdef.meta │ │ │ ├── Utilities.meta │ │ │ └── Utilities │ │ │ │ ├── AnimationPreviewUtilities.cs │ │ │ │ ├── AnimationPreviewUtilities.cs.meta │ │ │ │ ├── AnimatorBindingCache.cs │ │ │ │ ├── AnimatorBindingCache.cs.meta │ │ │ │ ├── Extrapolation.cs │ │ │ │ ├── Extrapolation.cs.meta │ │ │ │ ├── HashUtility.cs │ │ │ │ ├── HashUtility.cs.meta │ │ │ │ ├── IPropertyCollector.cs │ │ │ │ ├── IPropertyCollector.cs.meta │ │ │ │ ├── IPropertyPreview.cs │ │ │ │ ├── IPropertyPreview.cs.meta │ │ │ │ ├── NotificationUtilities.cs │ │ │ │ ├── NotificationUtilities.cs.meta │ │ │ │ ├── TimeUtility.cs │ │ │ │ ├── TimeUtility.cs.meta │ │ │ │ ├── TimelineCreateUtilities.cs │ │ │ │ ├── TimelineCreateUtilities.cs.meta │ │ │ │ ├── TimelineUndo.cs │ │ │ │ ├── TimelineUndo.cs.meta │ │ │ │ ├── WeightUtility.cs │ │ │ │ └── WeightUtility.cs.meta │ │ ├── ValidationExceptions.json │ │ ├── ValidationExceptions.json.meta │ │ ├── package.json │ │ └── package.json.meta │ └── com.unity.ugui@1.0.0 │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── Documentation~ │ │ ├── EventSystem.md │ │ ├── EventSystemReference.md │ │ ├── HOWTO-UICreateFromScripting.md │ │ ├── HOWTO-UIFitContentSize.md │ │ ├── HOWTO-UIMultiResolution.md │ │ ├── HOWTO-UIScreenTransition.md │ │ ├── HOWTO-UIWorldSpace.md │ │ ├── InputModules.md │ │ ├── MessagingSystem.md │ │ ├── Raycasters.md │ │ ├── StyledText.md │ │ ├── SupportedEvents.md │ │ ├── TableOfContents.md │ │ ├── UIAnimationIntegration.md │ │ ├── UIAutoLayout.md │ │ ├── UIBasicLayout.md │ │ ├── UICanvas.md │ │ ├── UIHowTos.md │ │ ├── UIInteractionComponents.md │ │ ├── UIReference.md │ │ ├── UIVisualComponents.md │ │ ├── class-Canvas.md │ │ ├── class-CanvasGroup.md │ │ ├── class-CanvasRenderer.md │ │ ├── class-RectTransform.md │ │ ├── comp-CanvasComponents.md │ │ ├── comp-UIAutoLayout.md │ │ ├── comp-UIEffects.md │ │ ├── comp-UIInteraction.md │ │ ├── comp-UIVisual.md │ │ ├── images │ │ │ ├── BlackSwatch.png │ │ │ ├── BlueSwatch.png │ │ │ ├── BrownSwatch.png │ │ │ ├── CanvasCamera.png │ │ │ ├── CanvasOverlay.png │ │ │ ├── CanvasWorldSpace.png │ │ │ ├── CyanSwatch.png │ │ │ ├── DarkblueSwatch.png │ │ │ ├── GUIScriptingGuideHelloExample.png │ │ │ ├── GUISkin-EditingTextField.png │ │ │ ├── GUISkin-ProjectView.png │ │ │ ├── GUITexture-Example.png │ │ │ ├── GUITexture-Layout.png │ │ │ ├── GUITextureWindow.png │ │ │ ├── GUIVisualizeNavigation.png │ │ │ ├── GUI_ButtonAnimationWindow.png │ │ │ ├── GUI_ButtonAnimator.png │ │ │ ├── GUI_ButtonInspectorAnimation.png │ │ │ ├── GUI_Canvas_Screenspace_Camera.png │ │ │ ├── GUI_Canvas_Screenspace_Overlay.png │ │ │ ├── GUI_Canvas_Worldspace.png │ │ │ ├── GUI_Pivot_Local_Buttons.png │ │ │ ├── GUI_Rect_Tool_Button.png │ │ │ ├── GreenSwatch.png │ │ │ ├── GreySwatch.png │ │ │ ├── GuiStyleInspector.png │ │ │ ├── ImageCtrlExample.png │ │ │ ├── LightblueSwatch.png │ │ │ ├── LimeSwatch.png │ │ │ ├── MagentaSwatch.png │ │ │ ├── MaroonSwatch.png │ │ │ ├── MaskCtrlExample.png │ │ │ ├── MaskDisabled.svg │ │ │ ├── MaskEnabled.svg │ │ │ ├── NavySwatch.png │ │ │ ├── OliveSwatch.png │ │ │ ├── OrangeSwatch.png │ │ │ ├── PurpleSwatch.png │ │ │ ├── RawImageCtrlExample.png │ │ │ ├── RedSwatch.png │ │ │ ├── SilverSwatch.png │ │ │ ├── StyleTextBold.png │ │ │ ├── StyleTextBoldItalic1.png │ │ │ ├── StyleTextBoldItalic2.png │ │ │ ├── StyleTextColorGreen.png │ │ │ ├── TealSwatch.png │ │ │ ├── UI-ViewTool.png │ │ │ ├── UI_AnchorPreset.png │ │ │ ├── UI_Anchored1.gif │ │ │ ├── UI_Anchored2.gif │ │ │ ├── UI_Anchored3.gif │ │ │ ├── UI_Anchored4.gif │ │ │ ├── UI_AspectRatioFitterInspector.png │ │ │ ├── UI_ButtonExample.png │ │ │ ├── UI_ButtonInspector.png │ │ │ ├── UI_CanvasGroupInspector.png │ │ │ ├── UI_CanvasInspector.png │ │ │ ├── UI_CanvasRendererInspector.png │ │ │ ├── UI_CanvasScalerInspector.png │ │ │ ├── UI_CanvasScreenSpaceCameraInspector.png │ │ │ ├── UI_CanvasWorldSpaceInspector.png │ │ │ ├── UI_ContentSizeFitterInspector.png │ │ │ ├── UI_DropdownExample.png │ │ │ ├── UI_DropdownExampleOpen.png │ │ │ ├── UI_DropdownHierarchyScrolling.png │ │ │ ├── UI_DropdownHierarchySimple.png │ │ │ ├── UI_DropdownInspector.png │ │ │ ├── UI_GridLayoutGroupInspector.png │ │ │ ├── UI_HorizontalLayoutGroupInspector.png │ │ │ ├── UI_ImageInspector.png │ │ │ ├── UI_ImageInspector184.png │ │ │ ├── UI_InputFieldExample.png │ │ │ ├── UI_InputFieldExample2.png │ │ │ ├── UI_InputFieldInspector.png │ │ │ ├── UI_LayoutElementInspector.png │ │ │ ├── UI_Main.png │ │ │ ├── UI_MaskInspector.png │ │ │ ├── UI_MultiResAllResolutions.png │ │ │ ├── UI_MultiResBase.png │ │ │ ├── UI_MultiResCenter.png │ │ │ ├── UI_MultiResCorners.png │ │ │ ├── UI_MultiResLandscapeWrongScaling.png │ │ │ ├── UI_MultiResReferenceResolution.png │ │ │ ├── UI_MultiResSizeChange.png │ │ │ ├── UI_OutlineExample.png │ │ │ ├── UI_OutlineInspector.png │ │ │ ├── UI_PivotRotate.png │ │ │ ├── UI_PositionAsUV1Inspector.png │ │ │ ├── UI_Profiler_Image_1.png │ │ │ ├── UI_RawImageInspector.png │ │ │ ├── UI_RawImageInspector184.png │ │ │ ├── UI_RectTransform.png │ │ │ ├── UI_ScreenTransitionAnimatorClosed.png │ │ │ ├── UI_ScreenTransitionAnimatorOpen.png │ │ │ ├── UI_ScreenTransitionAnimatorTransitionToClosed.png │ │ │ ├── UI_ScreenTransitionAnimatorTransitionToOpen.png │ │ │ ├── UI_ScreenTransitionButtonInspector.png │ │ │ ├── UI_ScrollBarInspector.png │ │ │ ├── UI_ScrollRectExample.png │ │ │ ├── UI_ScrollRectHierarchy.png │ │ │ ├── UI_ScrollRectInspector.png │ │ │ ├── UI_ScrollbarExample.png │ │ │ ├── UI_SelectableAnimation.png │ │ │ ├── UI_SelectableColorTint.png │ │ │ ├── UI_SelectableNavigation.png │ │ │ ├── UI_SelectableNavigationExplicit.png │ │ │ ├── UI_SelectableSpriteSwap.png │ │ │ ├── UI_SelectableTransition.png │ │ │ ├── UI_ShadowExample.png │ │ │ ├── UI_ShadowInspector.png │ │ │ ├── UI_SliderExample.png │ │ │ ├── UI_SliderInspector.png │ │ │ ├── UI_SpriteEditor.png │ │ │ ├── UI_TextExample.png │ │ │ ├── UI_TextInspector.png │ │ │ ├── UI_ToggleExample.png │ │ │ ├── UI_ToggleGroupExample.png │ │ │ ├── UI_ToggleGroupInspector.png │ │ │ ├── UI_ToggleInspector.png │ │ │ ├── UI_VerticalLayoutGroupInspector.png │ │ │ ├── WhiteSwatch.png │ │ │ ├── YellowSwatch.png │ │ │ ├── guiScripting-BasicsLoaderMenuExample.png │ │ │ └── guiStyle-TwoButtonsOneIsStyled.png │ │ ├── index.md │ │ ├── script-AspectRatioFitter.md │ │ ├── script-Button.md │ │ ├── script-CanvasScaler.md │ │ ├── script-ContentSizeFitter.md │ │ ├── script-Dropdown.md │ │ ├── script-EventSystem.md │ │ ├── script-EventTrigger.md │ │ ├── script-GraphicRaycaster.md │ │ ├── script-GridLayoutGroup.md │ │ ├── script-HorizontalLayoutGroup.md │ │ ├── script-Image.md │ │ ├── script-InputField.md │ │ ├── script-LayoutElement.md │ │ ├── script-Mask.md │ │ ├── script-Outline.md │ │ ├── script-Physics2DRaycaster.md │ │ ├── script-PhysicsRaycaster.md │ │ ├── script-PositionAsUV1.md │ │ ├── script-RawImage.md │ │ ├── script-RectMask2D.md │ │ ├── script-ScrollRect.md │ │ ├── script-Scrollbar.md │ │ ├── script-Selectable.md │ │ ├── script-SelectableNavigation.md │ │ ├── script-SelectableTransition.md │ │ ├── script-Shadow.md │ │ ├── script-Slider.md │ │ ├── script-StandaloneInputModule.md │ │ ├── script-Text.md │ │ ├── script-Toggle.md │ │ ├── script-ToggleGroup.md │ │ ├── script-TouchInputModule.md │ │ ├── script-VerticalLayoutGroup.md │ │ ├── ugui.md │ │ └── ugui.md.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── EventSystem.meta │ │ ├── EventSystem │ │ │ ├── EventSystemEditor.cs │ │ │ ├── EventSystemEditor.cs.meta │ │ │ ├── EventTriggerEditor.cs │ │ │ ├── EventTriggerEditor.cs.meta │ │ │ ├── Physics2DRaycasterEditor.cs │ │ │ ├── Physics2DRaycasterEditor.cs.meta │ │ │ ├── PhysicsRaycasterEditor.cs │ │ │ └── PhysicsRaycasterEditor.cs.meta │ │ ├── Properties.meta │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── AssemblyInfo.cs.meta │ │ ├── UI.meta │ │ ├── UI │ │ │ ├── AspectRatioFitterEditor.cs │ │ │ ├── AspectRatioFitterEditor.cs.meta │ │ │ ├── ButtonEditor.cs │ │ │ ├── ButtonEditor.cs.meta │ │ │ ├── CanvasScalerEditor.cs │ │ │ ├── CanvasScalerEditor.cs.meta │ │ │ ├── ContentSizeFitterEditor.cs │ │ │ ├── ContentSizeFitterEditor.cs.meta │ │ │ ├── DropdownEditor.cs │ │ │ ├── DropdownEditor.cs.meta │ │ │ ├── GraphicEditor.cs │ │ │ ├── GraphicEditor.cs.meta │ │ │ ├── GridLayoutGroupEditor.cs │ │ │ ├── GridLayoutGroupEditor.cs.meta │ │ │ ├── HorizontalOrVerticalLayoutGroupEditor.cs │ │ │ ├── HorizontalOrVerticalLayoutGroupEditor.cs.meta │ │ │ ├── ImageEditor.cs │ │ │ ├── ImageEditor.cs.meta │ │ │ ├── InputFieldEditor.cs │ │ │ ├── InputFieldEditor.cs.meta │ │ │ ├── InterceptedEventsPreview.cs │ │ │ ├── InterceptedEventsPreview.cs.meta │ │ │ ├── LayoutElementEditor.cs │ │ │ ├── LayoutElementEditor.cs.meta │ │ │ ├── LayoutPropertiesPreview.cs │ │ │ ├── LayoutPropertiesPreview.cs.meta │ │ │ ├── MaskEditor.cs │ │ │ ├── MaskEditor.cs.meta │ │ │ ├── MenuOptions.cs │ │ │ ├── MenuOptions.cs.meta │ │ │ ├── PrefabLayoutRebuilder.cs │ │ │ ├── PrefabLayoutRebuilder.cs.meta │ │ │ ├── PropertyDrawers.meta │ │ │ ├── PropertyDrawers │ │ │ │ ├── AnimationTriggersDrawer.cs │ │ │ │ ├── AnimationTriggersDrawer.cs.meta │ │ │ │ ├── ColorBlockDrawer.cs │ │ │ │ ├── ColorBlockDrawer.cs.meta │ │ │ │ ├── DropdownOptionListDrawer.cs │ │ │ │ ├── DropdownOptionListDrawer.cs.meta │ │ │ │ ├── FontDataDrawer.cs │ │ │ │ ├── FontDataDrawer.cs.meta │ │ │ │ ├── NavigationDrawer.cs │ │ │ │ ├── NavigationDrawer.cs.meta │ │ │ │ ├── SpriteStateDrawer.cs │ │ │ │ └── SpriteStateDrawer.cs.meta │ │ │ ├── RawImageEditor.cs │ │ │ ├── RawImageEditor.cs.meta │ │ │ ├── RectMask2DEditor.cs │ │ │ ├── RectMask2DEditor.cs.meta │ │ │ ├── ScrollRectEditor.cs │ │ │ ├── ScrollRectEditor.cs.meta │ │ │ ├── ScrollbarEditor.cs │ │ │ ├── ScrollbarEditor.cs.meta │ │ │ ├── SelectableEditor.cs │ │ │ ├── SelectableEditor.cs.meta │ │ │ ├── SelfControllerEditor.cs │ │ │ ├── SelfControllerEditor.cs.meta │ │ │ ├── SliderEditor.cs │ │ │ ├── SliderEditor.cs.meta │ │ │ ├── SpriteDrawUtility.cs │ │ │ ├── SpriteDrawUtility.cs.meta │ │ │ ├── TextEditor.cs │ │ │ ├── TextEditor.cs.meta │ │ │ ├── ToggleEditor.cs │ │ │ └── ToggleEditor.cs.meta │ │ ├── UnityEditor.UI.asmdef │ │ └── UnityEditor.UI.asmdef.meta │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Runtime.meta │ │ ├── Runtime │ │ ├── EventSystem.meta │ │ ├── EventSystem │ │ │ ├── EventData.meta │ │ │ ├── EventData │ │ │ │ ├── AxisEventData.cs │ │ │ │ ├── AxisEventData.cs.meta │ │ │ │ ├── BaseEventData.cs │ │ │ │ ├── BaseEventData.cs.meta │ │ │ │ ├── PointerEventData.cs │ │ │ │ └── PointerEventData.cs.meta │ │ │ ├── EventHandle.cs │ │ │ ├── EventHandle.cs.meta │ │ │ ├── EventInterfaces.cs │ │ │ ├── EventInterfaces.cs.meta │ │ │ ├── EventSystem.cs │ │ │ ├── EventSystem.cs.meta │ │ │ ├── EventTrigger.cs │ │ │ ├── EventTrigger.cs.meta │ │ │ ├── EventTriggerType.cs │ │ │ ├── EventTriggerType.cs.meta │ │ │ ├── ExecuteEvents.cs │ │ │ ├── ExecuteEvents.cs.meta │ │ │ ├── InputModules.meta │ │ │ ├── InputModules │ │ │ │ ├── BaseInput.cs │ │ │ │ ├── BaseInput.cs.meta │ │ │ │ ├── BaseInputModule.cs │ │ │ │ ├── BaseInputModule.cs.meta │ │ │ │ ├── PointerInputModule.cs │ │ │ │ ├── PointerInputModule.cs.meta │ │ │ │ ├── StandaloneInputModule.cs │ │ │ │ ├── StandaloneInputModule.cs.meta │ │ │ │ ├── TouchInputModule.cs │ │ │ │ └── TouchInputModule.cs.meta │ │ │ ├── MoveDirection.cs │ │ │ ├── MoveDirection.cs.meta │ │ │ ├── RaycastResult.cs │ │ │ ├── RaycastResult.cs.meta │ │ │ ├── RaycasterManager.cs │ │ │ ├── RaycasterManager.cs.meta │ │ │ ├── Raycasters.meta │ │ │ ├── Raycasters │ │ │ │ ├── BaseRaycaster.cs │ │ │ │ ├── BaseRaycaster.cs.meta │ │ │ │ ├── Physics2DRaycaster.cs │ │ │ │ ├── Physics2DRaycaster.cs.meta │ │ │ │ ├── PhysicsRaycaster.cs │ │ │ │ └── PhysicsRaycaster.cs.meta │ │ │ ├── UIBehaviour.cs │ │ │ └── UIBehaviour.cs.meta │ │ ├── Properties.meta │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── AssemblyInfo.cs.meta │ │ ├── UI.meta │ │ ├── UI │ │ │ ├── Animation.meta │ │ │ ├── Animation │ │ │ │ ├── CoroutineTween.cs │ │ │ │ └── CoroutineTween.cs.meta │ │ │ ├── Core.meta │ │ │ └── Core │ │ │ │ ├── AnimationTriggers.cs │ │ │ │ ├── AnimationTriggers.cs.meta │ │ │ │ ├── Button.cs │ │ │ │ ├── Button.cs.meta │ │ │ │ ├── CanvasUpdateRegistry.cs │ │ │ │ ├── CanvasUpdateRegistry.cs.meta │ │ │ │ ├── ColorBlock.cs │ │ │ │ ├── ColorBlock.cs.meta │ │ │ │ ├── Culling.meta │ │ │ │ ├── Culling │ │ │ │ ├── ClipperRegistry.cs │ │ │ │ ├── ClipperRegistry.cs.meta │ │ │ │ ├── Clipping.cs │ │ │ │ ├── Clipping.cs.meta │ │ │ │ ├── IClipRegion.cs │ │ │ │ ├── IClipRegion.cs.meta │ │ │ │ ├── RectangularVertexClipper.cs │ │ │ │ └── RectangularVertexClipper.cs.meta │ │ │ │ ├── DefaultControls.cs │ │ │ │ ├── DefaultControls.cs.meta │ │ │ │ ├── Dropdown.cs │ │ │ │ ├── Dropdown.cs.meta │ │ │ │ ├── FontData.cs │ │ │ │ ├── FontData.cs.meta │ │ │ │ ├── FontUpdateTracker.cs │ │ │ │ ├── FontUpdateTracker.cs.meta │ │ │ │ ├── Graphic.cs │ │ │ │ ├── Graphic.cs.meta │ │ │ │ ├── GraphicRaycaster.cs │ │ │ │ ├── GraphicRaycaster.cs.meta │ │ │ │ ├── GraphicRebuildTracker.cs │ │ │ │ ├── GraphicRebuildTracker.cs.meta │ │ │ │ ├── GraphicRegistry.cs │ │ │ │ ├── GraphicRegistry.cs.meta │ │ │ │ ├── IGraphicEnabledDisabled.cs │ │ │ │ ├── IGraphicEnabledDisabled.cs.meta │ │ │ │ ├── IMask.cs │ │ │ │ ├── IMask.cs.meta │ │ │ │ ├── IMaskable.cs │ │ │ │ ├── IMaskable.cs.meta │ │ │ │ ├── Image.cs │ │ │ │ ├── Image.cs.meta │ │ │ │ ├── InputField.cs │ │ │ │ ├── InputField.cs.meta │ │ │ │ ├── Layout.meta │ │ │ │ ├── Layout │ │ │ │ ├── AspectRatioFitter.cs │ │ │ │ ├── AspectRatioFitter.cs.meta │ │ │ │ ├── CanvasScaler.cs │ │ │ │ ├── CanvasScaler.cs.meta │ │ │ │ ├── ContentSizeFitter.cs │ │ │ │ ├── ContentSizeFitter.cs.meta │ │ │ │ ├── GridLayoutGroup.cs │ │ │ │ ├── GridLayoutGroup.cs.meta │ │ │ │ ├── HorizontalLayoutGroup.cs │ │ │ │ ├── HorizontalLayoutGroup.cs.meta │ │ │ │ ├── HorizontalOrVerticalLayoutGroup.cs │ │ │ │ ├── HorizontalOrVerticalLayoutGroup.cs.meta │ │ │ │ ├── ILayoutElement.cs │ │ │ │ ├── ILayoutElement.cs.meta │ │ │ │ ├── LayoutElement.cs │ │ │ │ ├── LayoutElement.cs.meta │ │ │ │ ├── LayoutGroup.cs │ │ │ │ ├── LayoutGroup.cs.meta │ │ │ │ ├── LayoutRebuilder.cs │ │ │ │ ├── LayoutRebuilder.cs.meta │ │ │ │ ├── LayoutUtility.cs │ │ │ │ ├── LayoutUtility.cs.meta │ │ │ │ ├── VerticalLayoutGroup.cs │ │ │ │ └── VerticalLayoutGroup.cs.meta │ │ │ │ ├── Mask.cs │ │ │ │ ├── Mask.cs.meta │ │ │ │ ├── MaskUtilities.cs │ │ │ │ ├── MaskUtilities.cs.meta │ │ │ │ ├── MaskableGraphic.cs │ │ │ │ ├── MaskableGraphic.cs.meta │ │ │ │ ├── MaterialModifiers.meta │ │ │ │ ├── MaterialModifiers │ │ │ │ ├── IMaterialModifier.cs │ │ │ │ └── IMaterialModifier.cs.meta │ │ │ │ ├── Misc.cs │ │ │ │ ├── Misc.cs.meta │ │ │ │ ├── MultipleDisplayUtilities.cs │ │ │ │ ├── MultipleDisplayUtilities.cs.meta │ │ │ │ ├── Navigation.cs │ │ │ │ ├── Navigation.cs.meta │ │ │ │ ├── RawImage.cs │ │ │ │ ├── RawImage.cs.meta │ │ │ │ ├── RectMask2D.cs │ │ │ │ ├── RectMask2D.cs.meta │ │ │ │ ├── ScrollRect.cs │ │ │ │ ├── ScrollRect.cs.meta │ │ │ │ ├── Scrollbar.cs │ │ │ │ ├── Scrollbar.cs.meta │ │ │ │ ├── Selectable.cs │ │ │ │ ├── Selectable.cs.meta │ │ │ │ ├── SetPropertyUtility.cs │ │ │ │ ├── SetPropertyUtility.cs.meta │ │ │ │ ├── Slider.cs │ │ │ │ ├── Slider.cs.meta │ │ │ │ ├── SpecializedCollections.meta │ │ │ │ ├── SpecializedCollections │ │ │ │ ├── IndexedSet.cs │ │ │ │ └── IndexedSet.cs.meta │ │ │ │ ├── SpriteState.cs │ │ │ │ ├── SpriteState.cs.meta │ │ │ │ ├── StencilMaterial.cs │ │ │ │ ├── StencilMaterial.cs.meta │ │ │ │ ├── Text.cs │ │ │ │ ├── Text.cs.meta │ │ │ │ ├── Toggle.cs │ │ │ │ ├── Toggle.cs.meta │ │ │ │ ├── ToggleGroup.cs │ │ │ │ ├── ToggleGroup.cs.meta │ │ │ │ ├── Utility.meta │ │ │ │ ├── Utility │ │ │ │ ├── ListPool.cs │ │ │ │ ├── ListPool.cs.meta │ │ │ │ ├── ObjectPool.cs │ │ │ │ ├── ObjectPool.cs.meta │ │ │ │ ├── ReflectionMethodsCache.cs │ │ │ │ ├── ReflectionMethodsCache.cs.meta │ │ │ │ ├── VertexHelper.cs │ │ │ │ └── VertexHelper.cs.meta │ │ │ │ ├── VertexModifiers.meta │ │ │ │ └── VertexModifiers │ │ │ │ ├── BaseMeshEffect.cs │ │ │ │ ├── BaseMeshEffect.cs.meta │ │ │ │ ├── IMeshModifier.cs │ │ │ │ ├── IMeshModifier.cs.meta │ │ │ │ ├── Outline.cs │ │ │ │ ├── Outline.cs.meta │ │ │ │ ├── PositionAsUV1.cs │ │ │ │ ├── PositionAsUV1.cs.meta │ │ │ │ ├── Shadow.cs │ │ │ │ └── Shadow.cs.meta │ │ ├── UnityEngine.UI.asmdef │ │ └── UnityEngine.UI.asmdef.meta │ │ ├── Tests.meta │ │ ├── Tests │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Canvas.meta │ │ │ ├── Canvas │ │ │ │ ├── AssertionFailureOnOutputVertexCount.cs │ │ │ │ ├── AssertionFailureOnOutputVertexCount.cs.meta │ │ │ │ ├── CanvasElementsMaintainValidPositionsWhenCameraOrthoSizeIsZero.cs │ │ │ │ ├── CanvasElementsMaintainValidPositionsWhenCameraOrthoSizeIsZero.cs.meta │ │ │ │ ├── CanvasWidthAssertionErrorWithRectTransform.cs │ │ │ │ ├── CanvasWidthAssertionErrorWithRectTransform.cs.meta │ │ │ │ ├── RootCanvasTests.cs │ │ │ │ ├── RootCanvasTests.cs.meta │ │ │ │ ├── UISystemProfilerAddMarkerWithNullObjectDoesNotCrash.cs │ │ │ │ └── UISystemProfilerAddMarkerWithNullObjectDoesNotCrash.cs.meta │ │ │ ├── CanvasRenderer.meta │ │ │ ├── CanvasRenderer │ │ │ │ ├── ChangingHierarchyOfCanvasRenderer.cs │ │ │ │ ├── ChangingHierarchyOfCanvasRenderer.cs.meta │ │ │ │ ├── ParentCanvasIsSane.cs │ │ │ │ └── ParentCanvasIsSane.cs.meta │ │ │ ├── EventSystem.meta │ │ │ ├── EventSystem │ │ │ │ ├── InterceptedEventsPreviewTests.cs │ │ │ │ └── InterceptedEventsPreviewTests.cs.meta │ │ │ ├── InputField.meta │ │ │ ├── InputField │ │ │ │ ├── CharacterLimitValidation.cs │ │ │ │ ├── CharacterLimitValidation.cs.meta │ │ │ │ ├── ContentValidation.cs │ │ │ │ └── ContentValidation.cs.meta │ │ │ ├── RectMask2D.meta │ │ │ ├── RectMask2D │ │ │ │ ├── RectMask2DCulling.cs │ │ │ │ ├── RectMask2DCulling.cs.meta │ │ │ │ ├── RectTransformPosition.cs │ │ │ │ └── RectTransformPosition.cs.meta │ │ │ ├── Slider.meta │ │ │ ├── Slider │ │ │ │ ├── SliderRectReferences.cs │ │ │ │ └── SliderRectReferences.cs.meta │ │ │ ├── TestBehaviourBase.cs │ │ │ ├── TestBehaviourBase.cs.meta │ │ │ ├── Text.meta │ │ │ ├── Text │ │ │ │ ├── FontCreatedByScript.cs │ │ │ │ └── FontCreatedByScript.cs.meta │ │ │ ├── UnityEditor.UI.EditorTests.asmdef │ │ │ ├── UnityEditor.UI.EditorTests.asmdef.meta │ │ │ ├── UnityEvent.meta │ │ │ └── UnityEvent │ │ │ │ ├── UnityEventInvoke.cs │ │ │ │ └── UnityEventInvoke.cs.meta │ │ ├── Runtime.meta │ │ └── Runtime │ │ │ ├── Button.meta │ │ │ ├── Button │ │ │ ├── ButtonTests.cs │ │ │ ├── ButtonTests.cs.meta │ │ │ ├── TestButton.cs │ │ │ └── TestButton.cs.meta │ │ │ ├── Canvas.meta │ │ │ ├── Canvas │ │ │ ├── BridgeScriptForRetainingObjects.cs │ │ │ ├── BridgeScriptForRetainingObjects.cs.meta │ │ │ ├── CanvasGroupInheritedAlpha.cs │ │ │ ├── CanvasGroupInheritedAlpha.cs.meta │ │ │ ├── CanvasScalerWithChildTextObjectDoesNotCrash.cs │ │ │ ├── CanvasScalerWithChildTextObjectDoesNotCrash.cs.meta │ │ │ ├── CanvasSizeCorrectInAwakeAndStart.cs │ │ │ ├── CanvasSizeCorrectInAwakeAndStart.cs.meta │ │ │ ├── CanvasSizeCorrectInAwakeAndStartScript.cs │ │ │ ├── CanvasSizeCorrectInAwakeAndStartScript.cs.meta │ │ │ ├── CheckMeshColorsAndColors32Match.cs │ │ │ ├── CheckMeshColorsAndColors32Match.cs.meta │ │ │ ├── CoroutineWorksIfUIObjectIsAttached.cs │ │ │ ├── CoroutineWorksIfUIObjectIsAttached.cs.meta │ │ │ ├── CreateSceneUtility.cs │ │ │ ├── CreateSceneUtility.cs.meta │ │ │ ├── NestedCanvas.cs │ │ │ ├── NestedCanvas.cs.meta │ │ │ ├── NestedCanvasMaintainsCorrectSize.cs │ │ │ ├── NestedCanvasMaintainsCorrectSize.cs.meta │ │ │ ├── NoActiveCameraInSceneDoesNotCrashEditor.cs │ │ │ ├── NoActiveCameraInSceneDoesNotCrashEditor.cs.meta │ │ │ ├── RectMask2DWithNestedCanvasCullsUsingCorrectCanvasRect.cs │ │ │ ├── RectMask2DWithNestedCanvasCullsUsingCorrectCanvasRect.cs.meta │ │ │ ├── RectTransformValidAfterEnable.cs │ │ │ ├── RectTransformValidAfterEnable.cs.meta │ │ │ ├── SiblingOrderChangesLayout.cs │ │ │ └── SiblingOrderChangesLayout.cs.meta │ │ │ ├── Dropdown.meta │ │ │ ├── Dropdown │ │ │ ├── DropdownTests.cs │ │ │ └── DropdownTests.cs.meta │ │ │ ├── EventSystem.meta │ │ │ ├── EventSystem │ │ │ ├── GraphicRaycasterTests.cs │ │ │ ├── GraphicRaycasterTests.cs.meta │ │ │ ├── GraphicRaycasterWorldSpaceCanvasTests.cs │ │ │ ├── GraphicRaycasterWorldSpaceCanvasTests.cs.meta │ │ │ ├── InputModuleTests.cs │ │ │ ├── InputModuleTests.cs.meta │ │ │ ├── InputModuleTests.meta │ │ │ ├── InputModuleTests │ │ │ │ ├── DragCallbackCheck.cs │ │ │ │ ├── DragCallbackCheck.cs.meta │ │ │ │ ├── FakeBaseInput.cs │ │ │ │ ├── FakeBaseInput.cs.meta │ │ │ │ ├── MouseUpdate.cs │ │ │ │ ├── MouseUpdate.cs.meta │ │ │ │ ├── PointerClickCallbackCheck.cs │ │ │ │ └── PointerClickCallbackCheck.cs.meta │ │ │ ├── PhysicsRaycasterTests.cs │ │ │ ├── PhysicsRaycasterTests.cs.meta │ │ │ ├── RaycastSortingTests.cs │ │ │ ├── RaycastSortingTests.cs.meta │ │ │ ├── SelectableTests.cs │ │ │ └── SelectableTests.cs.meta │ │ │ ├── Graphic.meta │ │ │ ├── Graphic │ │ │ ├── GraphicTests.cs │ │ │ ├── GraphicTests.cs.meta │ │ │ ├── ImageTests.cs │ │ │ ├── ImageTests.cs.meta │ │ │ ├── MaskTests.cs │ │ │ ├── MaskTests.cs.meta │ │ │ ├── NavigationTests.cs │ │ │ ├── NavigationTests.cs.meta │ │ │ ├── RawImageTest.cs │ │ │ ├── RawImageTest.cs.meta │ │ │ ├── RawImageTestHook.cs │ │ │ ├── RawImageTestHook.cs.meta │ │ │ ├── ToggleTestImageHook.cs │ │ │ └── ToggleTestImageHook.cs.meta │ │ │ ├── Image.meta │ │ │ ├── Image │ │ │ ├── ImageFilledGenerateWork.cs │ │ │ ├── ImageFilledGenerateWork.cs.meta │ │ │ ├── ImageTests.cs │ │ │ ├── ImageTests.cs.meta │ │ │ ├── TestableImage.cs │ │ │ └── TestableImage.cs.meta │ │ │ ├── InputField.meta │ │ │ ├── InputField │ │ │ ├── DesktopInputFieldTests.cs │ │ │ ├── DesktopInputFieldTests.cs.meta │ │ │ ├── FakeInputModule.cs │ │ │ ├── FakeInputModule.cs.meta │ │ │ ├── GenericInputFieldTests.cs │ │ │ ├── GenericInputFieldTests.cs.meta │ │ │ ├── InputFieldTests.cs │ │ │ ├── InputFieldTests.cs.meta │ │ │ ├── TouchInputFieldTests.cs │ │ │ └── TouchInputFieldTests.cs.meta │ │ │ ├── Layout.meta │ │ │ ├── Layout │ │ │ ├── AspectRatioFitterTests.cs │ │ │ ├── AspectRatioFitterTests.cs.meta │ │ │ ├── ContentSizeFitterTests.cs │ │ │ ├── ContentSizeFitterTests.cs.meta │ │ │ ├── GridLayoutGroupTests.cs │ │ │ ├── GridLayoutGroupTests.cs.meta │ │ │ ├── HorizonalLayoutGroupTests.cs │ │ │ ├── HorizonalLayoutGroupTests.cs.meta │ │ │ ├── LayoutGroupScaling.cs │ │ │ ├── LayoutGroupScaling.cs.meta │ │ │ ├── VerticalLayoutGroupTests.cs │ │ │ └── VerticalLayoutGroupTests.cs.meta │ │ │ ├── LayoutGroup.meta │ │ │ ├── LayoutGroup │ │ │ ├── LayoutGroupArrangement.cs │ │ │ └── LayoutGroupArrangement.cs.meta │ │ │ ├── MaskClipping.meta │ │ │ ├── MaskClipping │ │ │ ├── RectMask2DClipping.cs │ │ │ └── RectMask2DClipping.cs.meta │ │ │ ├── NestedLayout.meta │ │ │ ├── NestedLayout │ │ │ ├── SceneWithNestedLayoutElementsLoadScript.cs │ │ │ ├── SceneWithNestedLayoutElementsLoadScript.cs.meta │ │ │ ├── SceneWithNestedLayoutElementsLoads.cs │ │ │ └── SceneWithNestedLayoutElementsLoads.cs.meta │ │ │ ├── ScrollBar.meta │ │ │ ├── ScrollBar │ │ │ ├── ScrollBarClamp.cs │ │ │ ├── ScrollBarClamp.cs.meta │ │ │ ├── ScrollBarTests.cs │ │ │ └── ScrollBarTests.cs.meta │ │ │ ├── ScrollRect.meta │ │ │ ├── ScrollRect │ │ │ ├── ScrollRectClamp.cs │ │ │ ├── ScrollRectClamp.cs.meta │ │ │ ├── ScrollRectScale.cs │ │ │ ├── ScrollRectScale.cs.meta │ │ │ ├── ScrollRectStableLayout.cs │ │ │ ├── ScrollRectStableLayout.cs.meta │ │ │ ├── ScrollRectTests.cs │ │ │ └── ScrollRectTests.cs.meta │ │ │ ├── Slider.meta │ │ │ ├── Slider │ │ │ ├── SliderTests.cs │ │ │ └── SliderTests.cs.meta │ │ │ ├── TextEditor.meta │ │ │ ├── TextEditor │ │ │ ├── TextEditorBackspaceDelete.cs │ │ │ ├── TextEditorBackspaceDelete.cs.meta │ │ │ ├── TextEditorTests.cs │ │ │ └── TextEditorTests.cs.meta │ │ │ ├── Toggle.meta │ │ │ ├── Toggle │ │ │ ├── TestableToggleGroup.cs │ │ │ ├── TestableToggleGroup.cs.meta │ │ │ ├── ToggleGroupTests.cs │ │ │ ├── ToggleGroupTests.cs.meta │ │ │ ├── ToggleTests.cs │ │ │ └── ToggleTests.cs.meta │ │ │ ├── UnityEngine.UI.Tests.asmdef │ │ │ ├── UnityEngine.UI.Tests.asmdef.meta │ │ │ ├── Util.meta │ │ │ └── Util │ │ │ ├── ConcreteGraphic.cs │ │ │ ├── ConcreteGraphic.cs.meta │ │ │ ├── ExceptionUtils.cs │ │ │ ├── ExceptionUtils.cs.meta │ │ │ ├── GraphicTestHelper.cs │ │ │ ├── GraphicTestHelper.cs.meta │ │ │ ├── ImageHook.cs │ │ │ ├── ImageHook.cs.meta │ │ │ ├── PrivateFieldSetter.cs │ │ │ ├── PrivateFieldSetter.cs.meta │ │ │ ├── UIBehaviourExtensions.cs │ │ │ └── UIBehaviourExtensions.cs.meta │ │ ├── package.json │ │ └── package.json.meta ├── PackageManager │ ├── ProjectCache │ └── ProjectCache.md5 ├── SceneVisibilityState.asset ├── ScriptAssemblies │ ├── Assembly-CSharp.dll │ ├── Assembly-CSharp.pdb │ ├── BuiltinAssemblies.stamp │ ├── Unity.CollabProxy.Editor.dll │ ├── Unity.CollabProxy.Editor.pdb │ ├── Unity.EditorCoroutines.Editor.dll │ ├── Unity.EditorCoroutines.Editor.pdb │ ├── Unity.PlasticSCM.Editor.dll │ ├── Unity.PlasticSCM.Editor.pdb │ ├── Unity.Rider.Editor.dll │ ├── Unity.Rider.Editor.pdb │ ├── Unity.Robotics.ROSTCPConnector.Editor.dll │ ├── Unity.Robotics.ROSTCPConnector.Editor.pdb │ ├── Unity.Robotics.ROSTCPConnector.dll │ ├── Unity.Robotics.ROSTCPConnector.pdb │ ├── Unity.Robotics.UrdfImporter.Editor.dll │ ├── Unity.Robotics.UrdfImporter.Editor.pdb │ ├── Unity.Robotics.UrdfImporter.dll │ ├── Unity.Robotics.UrdfImporter.pdb │ ├── Unity.Services.Core.Editor.dll │ ├── Unity.Services.Core.Editor.pdb │ ├── Unity.TextMeshPro.Editor.dll │ ├── Unity.TextMeshPro.Editor.pdb │ ├── Unity.TextMeshPro.dll │ ├── Unity.TextMeshPro.pdb │ ├── Unity.Timeline.Editor.dll │ ├── Unity.Timeline.Editor.pdb │ ├── Unity.Timeline.dll │ ├── Unity.Timeline.pdb │ ├── Unity.VSCode.Editor.dll │ ├── Unity.VSCode.Editor.pdb │ ├── Unity.VisualStudio.Editor.dll │ ├── Unity.VisualStudio.Editor.pdb │ ├── UnityEditor.TestRunner.dll │ ├── UnityEditor.TestRunner.pdb │ ├── UnityEditor.UI.dll │ ├── UnityEditor.UI.pdb │ ├── UnityEngine.TestRunner.dll │ ├── UnityEngine.TestRunner.pdb │ ├── UnityEngine.UI.dll │ ├── UnityEngine.UI.pdb │ ├── vhacd.dll │ └── vhacd.pdb ├── ScriptMapper ├── ShaderCache.db ├── ShaderCache │ ├── 0 │ │ ├── 03d66bcb77c8ef4ac2b39d538e9d755b.bin │ │ ├── 046db227751a758c9cc0fb6ef2bc4627.bin │ │ ├── 08edd43afe5b99a15bc78b4174b73980.bin │ │ └── 0d11b7f65566739f5919e652f3a1207d.bin │ ├── 1 │ │ ├── 12c05beff4e46f69388c172427a291ab.bin │ │ ├── 152028299af0e128779fc68bd95d1c43.bin │ │ ├── 17003074d38d506df1be5a05f639e3f7.bin │ │ ├── 1840d929d7ec12161797790317782887.bin │ │ └── 1af56662e875b2a629ee09b0e8fa181a.bin │ ├── 2 │ │ ├── 22f527c0e4bb0f3d8babd572302b72f1.bin │ │ ├── 2357b39d6e3ff9a806188bda4fad1607.bin │ │ ├── 236049f47337316dc0c0d33043169648.bin │ │ ├── 24c122940a194e38777fd8967db44579.bin │ │ ├── 2526ff7423bef9afeb288010d181bb4e.bin │ │ ├── 2619c252b97ca5f66607b69a40475c24.bin │ │ ├── 263a2d4c2a3cfa2115be9873f6965a16.bin │ │ ├── 264b0fcad7b987bf7e0ae640fda170ce.bin │ │ ├── 27a17a08396fe1cfa7ab98b2919b5807.bin │ │ ├── 2b4f4a7f95a1764e25da34fd5a5a9c23.bin │ │ └── 2b9a576481ed03bba9276624e78f5a87.bin │ ├── 3 │ │ ├── 325580b38a47914d8e36dc5217387866.bin │ │ ├── 344d600ead98f360460ab9ea1f8b30e4.bin │ │ ├── 350139700e3cd1f6bbcc5a7b6b1d5e1a.bin │ │ ├── 391120c7a4fba814a9916bb11eab3250.bin │ │ ├── 3b1684571f12831b67bbf27b2acfb700.bin │ │ └── 3c8e5291ddffd93ddd48a41508c86e1b.bin │ ├── 4 │ │ ├── 438404ea929c07d9b2ff2a503f56f017.bin │ │ ├── 48301d6643083278e0d442140dec92f3.bin │ │ ├── 495039b8d28ad2557f21d33d584de4df.bin │ │ ├── 49bd777a654e758e305223fc606a6f2f.bin │ │ ├── 4a4d618884940d605f59b0da4e784466.bin │ │ └── 4ff246b5f1d453388572fb026751047e.bin │ ├── 5 │ │ ├── 50ca10d7fafd565fb0b02df066e5958f.bin │ │ ├── 51bbcba0f991caf29705974d18557759.bin │ │ ├── 5c61259822ae0577520ca2006d4c00f1.bin │ │ ├── 5da0efef0409df514bf0f9746184786a.bin │ │ └── 5e56e2a74605fc5f60ecae3f95a02444.bin │ ├── 6 │ │ ├── 631204715ac5c0c092d90ee2053da204.bin │ │ ├── 640e3f9b2f5e221849fc014a1259ed57.bin │ │ ├── 64bea07c11f186e42d103f858898092d.bin │ │ ├── 6a95696ce2bbe3f3e1105a88d00fb2d2.bin │ │ ├── 6ba2a33a4d2f2eedaacd0ba1cdd46ba6.bin │ │ └── 6d8bafb388c1b0b1826b1a5e33c1c740.bin │ ├── 7 │ │ ├── 708202b0b0f8e91bc9e449ea667ff06a.bin │ │ ├── 7196ce03c58f21f60738ff197afbc167.bin │ │ ├── 77cc923f5aa5ceb51fb91678c5f8e3cd.bin │ │ ├── 78ef5443ceaa6b06d8b768a8454e25b2.bin │ │ ├── 792070d435da711f052f033d8bbae1f0.bin │ │ ├── 79a3c28c31648696b4cb2391fd5b0401.bin │ │ ├── 7b99e9539bed5492f12bea0f5eecaaa8.bin │ │ └── 7d4085980166f71f52b7447005c9da74.bin │ ├── 8 │ │ ├── 8385e164e1f99bdd9e31006a44323949.bin │ │ ├── 845fca8bf835ff324a88a921e87ea4f9.bin │ │ ├── 861ef792691b236ce29d6c7e1917919a.bin │ │ ├── 8abe7095d341bc3fb08ec3b841e600db.bin │ │ ├── 8bb747259be916281b5870e2253ea3af.bin │ │ ├── 8d543baf1e77f49f1820df03bf7f3af4.bin │ │ ├── 8dcffeefff41182c1cdd52289bc9cbc7.bin │ │ └── 8f7e09290d9353a9424e3bfdb8c23bde.bin │ ├── 9 │ │ ├── 91cf926fcdaf69df574a29c22aada3dd.bin │ │ ├── 99ca0921ec4939892e941083d4d92866.bin │ │ ├── 9a9a39c87345b39762379f32ee8a63b0.bin │ │ ├── 9e7ba7edfbdf1536558eb87c71aaed70.bin │ │ └── 9fdd9894278824658bf610d13831217c.bin │ ├── EditorEncounteredVariants │ ├── a │ │ ├── a3f380a952838caf02e11698635b7cdc.bin │ │ ├── a53e7249007cf53c405d86f7c41d1636.bin │ │ ├── a700ff3fdcfafe8f4f1cd93b1e70c3cc.bin │ │ ├── ac898918ce3b4962d2d1ec02a3481a20.bin │ │ ├── ad85fb9f79b5237bd133b42660a221f7.bin │ │ ├── ae29cfd4c70af78b961092f9d4eadb8c.bin │ │ └── af800d6d639150fcf0a37d8b64f97c27.bin │ ├── b │ │ ├── b3b92fdfec0ac74ec21678dac85519c0.bin │ │ ├── b6916aa156d0ab8aa3ef2a758ad4360a.bin │ │ ├── bc29ea9eea218d284d837f8e1592aad7.bin │ │ └── bcc35d20b72e3489b81eb5aca1ee5113.bin │ ├── c │ │ ├── c001262ec6a5f2e0d4bb3d7c84182b2f.bin │ │ ├── c104a6523b608d7d0dfa4ec1c997bf9f.bin │ │ ├── c42d02ef0d17a31092700c6cbf44948d.bin │ │ └── cf2d11f8251c73bd1d84040ee4466e5b.bin │ ├── d │ │ ├── d1210ddd704087f00c9e7dc2f4c3d2b3.bin │ │ ├── d2d535919dbc8bf1ee3752d5e60ce084.bin │ │ ├── d494272c4b74d7839b0284ef7fdffb5d.bin │ │ ├── da53b8693d4a6283cf9429639dc43839.bin │ │ ├── dda04c46f6ffee9ab4b6a8df15ab74fc.bin │ │ └── df16ab94a658c59a667606faac7e80bd.bin │ ├── e │ │ ├── e025bc72f535a979424b3e5017b9050d.bin │ │ ├── e2114e75dbe624bb0412740cf9ac7cdc.bin │ │ ├── e299ffb0e0db8f4c94674b1e2d05d1ce.bin │ │ ├── e46b49a857f3194d46910da53b64d6f1.bin │ │ ├── eccd5496936fd9f6e111b049a4ae74c9.bin │ │ ├── eef1ce4eb670d89d87d6fca18d5513d1.bin │ │ └── ef77e5888a5c5916c84e5fd38bf8f5fa.bin │ └── f │ │ ├── f24ada77bd7b228b080147a19e571f5b.bin │ │ ├── f2fcdd7ce8110c977ec2d94975470523.bin │ │ ├── f3ee881ff218b8ec7f7348f27fe8b3a2.bin │ │ ├── f57f63a3dd5866817eb7262b10070592.bin │ │ ├── f8f4391fd24078393e5946a9824d0bff.bin │ │ ├── fa1d50bcb3fa617d4a2e014a34d9aa53.bin │ │ ├── fa51bd27ce4a5748b21906687f378c27.bin │ │ ├── fce0d81c4738d3a91b2c9d06c07ce7f3.bin │ │ └── fd4a78c3898616b7bb6f0a96090f3386.bin ├── SourceAssetDB ├── SourceAssetDB-lock ├── SpriteAtlasDatabase.asset ├── StateCache │ ├── LayerSettings │ │ └── 9e │ │ │ └── 9ecc5c3c162a7aba29bafa64c8b94b7c.json │ ├── MainStageHierarchy │ │ └── d2 │ │ │ └── d2fedd1d7219f962f820f02c913088c6.json │ └── SceneView │ │ └── f8 │ │ └── f8bc35a786879b79918e124781d40108.json ├── Style.catalog └── expandedItems ├── Logs ├── ApiUpdaterCheck.txt ├── AssetImportWorker0.log ├── Packages-Update.log ├── shadercompiler-AssetImportWorker0.log ├── shadercompiler-UnityShaderCompiler.exe0.log ├── shadercompiler-UnityShaderCompiler.exe1.log ├── shadercompiler-UnityShaderCompiler.exe10.log ├── shadercompiler-UnityShaderCompiler.exe11.log ├── shadercompiler-UnityShaderCompiler.exe12.log ├── shadercompiler-UnityShaderCompiler.exe13.log ├── shadercompiler-UnityShaderCompiler.exe14.log ├── shadercompiler-UnityShaderCompiler.exe15.log ├── shadercompiler-UnityShaderCompiler.exe2.log ├── shadercompiler-UnityShaderCompiler.exe3.log ├── shadercompiler-UnityShaderCompiler.exe4.log ├── shadercompiler-UnityShaderCompiler.exe5.log ├── shadercompiler-UnityShaderCompiler.exe6.log ├── shadercompiler-UnityShaderCompiler.exe7.log ├── shadercompiler-UnityShaderCompiler.exe8.log └── shadercompiler-UnityShaderCompiler.exe9.log ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── TimelineSettings.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset ├── Unity.gitignore └── UserSettings └── EditorUserSettings.asset /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/README.md -------------------------------------------------------------------------------- /ROS/bags/joint_data.bag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/bags/joint_data.bag -------------------------------------------------------------------------------- /ROS/gazebo_msgs/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/CHANGELOG.rst -------------------------------------------------------------------------------- /ROS/gazebo_msgs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/CMakeLists.txt -------------------------------------------------------------------------------- /ROS/gazebo_msgs/msg/ContactState.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/msg/ContactState.msg -------------------------------------------------------------------------------- /ROS/gazebo_msgs/msg/ContactsState.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/msg/ContactsState.msg -------------------------------------------------------------------------------- /ROS/gazebo_msgs/msg/LinkState.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/msg/LinkState.msg -------------------------------------------------------------------------------- /ROS/gazebo_msgs/msg/LinkStates.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/msg/LinkStates.msg -------------------------------------------------------------------------------- /ROS/gazebo_msgs/msg/ModelState.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/msg/ModelState.msg -------------------------------------------------------------------------------- /ROS/gazebo_msgs/msg/ModelStates.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/msg/ModelStates.msg -------------------------------------------------------------------------------- /ROS/gazebo_msgs/msg/ODEJointProperties.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/msg/ODEJointProperties.msg -------------------------------------------------------------------------------- /ROS/gazebo_msgs/msg/ODEPhysics.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/msg/ODEPhysics.msg -------------------------------------------------------------------------------- /ROS/gazebo_msgs/msg/PerformanceMetrics.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/msg/PerformanceMetrics.msg -------------------------------------------------------------------------------- /ROS/gazebo_msgs/msg/SensorPerformanceMetric.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/msg/SensorPerformanceMetric.msg -------------------------------------------------------------------------------- /ROS/gazebo_msgs/msg/WorldState.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/msg/WorldState.msg -------------------------------------------------------------------------------- /ROS/gazebo_msgs/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/package.xml -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/ApplyBodyWrench.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/ApplyBodyWrench.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/ApplyJointEffort.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/ApplyJointEffort.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/BodyRequest.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/BodyRequest.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/DeleteLight.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/DeleteLight.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/DeleteModel.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/DeleteModel.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/GetJointProperties.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/GetJointProperties.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/GetLightProperties.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/GetLightProperties.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/GetLinkProperties.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/GetLinkProperties.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/GetLinkState.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/GetLinkState.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/GetModelProperties.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/GetModelProperties.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/GetModelState.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/GetModelState.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/GetPhysicsProperties.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/GetPhysicsProperties.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/GetWorldProperties.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/GetWorldProperties.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/JointRequest.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/JointRequest.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/SetJointProperties.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/SetJointProperties.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/SetJointTrajectory.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/SetJointTrajectory.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/SetLightProperties.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/SetLightProperties.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/SetLinkProperties.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/SetLinkProperties.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/SetLinkState.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/SetLinkState.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/SetModelConfiguration.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/SetModelConfiguration.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/SetModelState.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/SetModelState.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/SetPhysicsProperties.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/SetPhysicsProperties.srv -------------------------------------------------------------------------------- /ROS/gazebo_msgs/srv/SpawnModel.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/gazebo_msgs/srv/SpawnModel.srv -------------------------------------------------------------------------------- /ROS/spot_msgs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/CMakeLists.txt -------------------------------------------------------------------------------- /ROS/spot_msgs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/LICENSE -------------------------------------------------------------------------------- /ROS/spot_msgs/action/NavigateTo.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/action/NavigateTo.action -------------------------------------------------------------------------------- /ROS/spot_msgs/action/Trajectory.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/action/Trajectory.action -------------------------------------------------------------------------------- /ROS/spot_msgs/msg/BatteryState.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/msg/BatteryState.msg -------------------------------------------------------------------------------- /ROS/spot_msgs/msg/BatteryStateArray.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/msg/BatteryStateArray.msg -------------------------------------------------------------------------------- /ROS/spot_msgs/msg/BehaviorFault.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/msg/BehaviorFault.msg -------------------------------------------------------------------------------- /ROS/spot_msgs/msg/BehaviorFaultState.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/msg/BehaviorFaultState.msg -------------------------------------------------------------------------------- /ROS/spot_msgs/msg/EStopState.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/msg/EStopState.msg -------------------------------------------------------------------------------- /ROS/spot_msgs/msg/EStopStateArray.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/msg/EStopStateArray.msg -------------------------------------------------------------------------------- /ROS/spot_msgs/msg/Feedback.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/msg/Feedback.msg -------------------------------------------------------------------------------- /ROS/spot_msgs/msg/FootState.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/msg/FootState.msg -------------------------------------------------------------------------------- /ROS/spot_msgs/msg/FootStateArray.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/msg/FootStateArray.msg -------------------------------------------------------------------------------- /ROS/spot_msgs/msg/Lease.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/msg/Lease.msg -------------------------------------------------------------------------------- /ROS/spot_msgs/msg/LeaseArray.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/msg/LeaseArray.msg -------------------------------------------------------------------------------- /ROS/spot_msgs/msg/LeaseOwner.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/msg/LeaseOwner.msg -------------------------------------------------------------------------------- /ROS/spot_msgs/msg/LeaseResource.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/msg/LeaseResource.msg -------------------------------------------------------------------------------- /ROS/spot_msgs/msg/Metrics.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/msg/Metrics.msg -------------------------------------------------------------------------------- /ROS/spot_msgs/msg/MobilityParams.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/msg/MobilityParams.msg -------------------------------------------------------------------------------- /ROS/spot_msgs/msg/PowerState.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/msg/PowerState.msg -------------------------------------------------------------------------------- /ROS/spot_msgs/msg/SystemFault.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/msg/SystemFault.msg -------------------------------------------------------------------------------- /ROS/spot_msgs/msg/SystemFaultState.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/msg/SystemFaultState.msg -------------------------------------------------------------------------------- /ROS/spot_msgs/msg/WiFiState.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/msg/WiFiState.msg -------------------------------------------------------------------------------- /ROS/spot_msgs/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/package.xml -------------------------------------------------------------------------------- /ROS/spot_msgs/srv/ClearBehaviorFault.srv: -------------------------------------------------------------------------------- 1 | uint32 id 2 | --- 3 | bool success 4 | string message 5 | -------------------------------------------------------------------------------- /ROS/spot_msgs/srv/ListGraph.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/srv/ListGraph.srv -------------------------------------------------------------------------------- /ROS/spot_msgs/srv/SetLocomotion.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/srv/SetLocomotion.srv -------------------------------------------------------------------------------- /ROS/spot_msgs/srv/SetVelocity.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/ROS/spot_msgs/srv/SetVelocity.srv -------------------------------------------------------------------------------- /spot_simulation/Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Materials.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/Materials/flooring.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Materials/flooring.mat -------------------------------------------------------------------------------- /spot_simulation/Assets/Materials/flooring.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Materials/flooring.mat.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Resources.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/Resources/GeometryCompassSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Resources/GeometryCompassSettings.asset -------------------------------------------------------------------------------- /spot_simulation/Assets/Resources/GeometryCompassSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Resources/GeometryCompassSettings.asset.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/Resources/ROSConnectionPrefab.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Resources/ROSConnectionPrefab.prefab -------------------------------------------------------------------------------- /spot_simulation/Assets/Resources/ROSConnectionPrefab.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Resources/ROSConnectionPrefab.prefab.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Gazebo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Gazebo.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Gazebo/msg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Gazebo/msg.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Gazebo/msg/ContactStateMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Gazebo/msg/ContactStateMsg.cs -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Gazebo/msg/ContactStateMsg.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Gazebo/msg/ContactStateMsg.cs.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Gazebo/msg/ContactsStateMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Gazebo/msg/ContactsStateMsg.cs -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Gazebo/msg/LinkStateMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Gazebo/msg/LinkStateMsg.cs -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Gazebo/msg/LinkStateMsg.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Gazebo/msg/LinkStateMsg.cs.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Gazebo/msg/LinkStatesMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Gazebo/msg/LinkStatesMsg.cs -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Gazebo/msg/LinkStatesMsg.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Gazebo/msg/LinkStatesMsg.cs.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Gazebo/msg/ModelStateMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Gazebo/msg/ModelStateMsg.cs -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Gazebo/msg/ModelStateMsg.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Gazebo/msg/ModelStateMsg.cs.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Gazebo/msg/ModelStatesMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Gazebo/msg/ModelStatesMsg.cs -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Gazebo/msg/ModelStatesMsg.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Gazebo/msg/ModelStatesMsg.cs.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Spot.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Spot.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Spot/msg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Spot/msg.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Spot/msg/FeedbackMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Spot/msg/FeedbackMsg.cs -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Spot/msg/FeedbackMsg.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Spot/msg/FeedbackMsg.cs.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Spot/msg/FootStateArrayMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Spot/msg/FootStateArrayMsg.cs -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Spot/msg/FootStateArrayMsg.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Spot/msg/FootStateArrayMsg.cs.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Spot/msg/FootStateMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Spot/msg/FootStateMsg.cs -------------------------------------------------------------------------------- /spot_simulation/Assets/RosMessages/Spot/msg/FootStateMsg.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/RosMessages/Spot/msg/FootStateMsg.cs.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Scenes.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/Scenes/SpotScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Scenes/SpotScene.unity -------------------------------------------------------------------------------- /spot_simulation/Assets/Scenes/SpotScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Scenes/SpotScene.unity.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot1.prefab -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot1.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot1.prefab.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot_ros-master.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot_ros-master.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot_ros-master/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot_ros-master/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot_ros-master/.gitmodules -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot_ros-master/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot_ros-master/Materials.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot_ros-master/Materials/Default.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot_ros-master/Materials/Default.mat -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot_ros-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot_ros-master/README.md -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot_ros-master/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot_ros-master/README.md.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot_ros-master/Spot.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot_ros-master/Spot.urdf -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot_ros-master/Spot.urdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot_ros-master/Spot.urdf.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot_ros-master/cp_spot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot_ros-master/cp_spot.jpg -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot_ros-master/cp_spot.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot_ros-master/cp_spot.jpg.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot_ros-master/spot_description.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot_ros-master/spot_description.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot_ros-master/spot_viz.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot_ros-master/spot_viz.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot_ros-master/spot_viz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot_ros-master/spot_viz/CMakeLists.txt -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot_ros-master/spot_viz/launch.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot_ros-master/spot_viz/launch.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot_ros-master/spot_viz/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot_ros-master/spot_viz/package.xml -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot_ros-master/spot_viz/package.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot_ros-master/spot_viz/package.xml.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot_ros-master/spot_viz/rviz.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot_ros-master/spot_viz/rviz.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot_ros-master/spot_viz/rviz/model.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot_ros-master/spot_viz/rviz/model.rviz -------------------------------------------------------------------------------- /spot_simulation/Assets/Spot/spot_ros-master/spot_viz/rviz/robot.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/Spot/spot_ros-master/spot_viz/rviz/robot.rviz -------------------------------------------------------------------------------- /spot_simulation/Assets/SpotControllerScripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/SpotControllerScripts.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/SpotControllerScripts/ClockPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/SpotControllerScripts/ClockPublisher.cs -------------------------------------------------------------------------------- /spot_simulation/Assets/SpotControllerScripts/ClockPublisher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/SpotControllerScripts/ClockPublisher.cs.meta -------------------------------------------------------------------------------- /spot_simulation/Assets/SpotControllerScripts/FootCollisionSensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/SpotControllerScripts/FootCollisionSensor.cs -------------------------------------------------------------------------------- /spot_simulation/Assets/SpotControllerScripts/ModelStatePublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/SpotControllerScripts/ModelStatePublisher.cs -------------------------------------------------------------------------------- /spot_simulation/Assets/SpotControllerScripts/SpotJointSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/SpotControllerScripts/SpotJointSubscriber.cs -------------------------------------------------------------------------------- /spot_simulation/Assets/msgbrowser_settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/msgbrowser_settings.asset -------------------------------------------------------------------------------- /spot_simulation/Assets/msgbrowser_settings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Assets/msgbrowser_settings.asset.meta -------------------------------------------------------------------------------- /spot_simulation/Library/APIUpdater/project-dependencies.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/APIUpdater/project-dependencies.graph -------------------------------------------------------------------------------- /spot_simulation/Library/AnnotationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/AnnotationManager -------------------------------------------------------------------------------- /spot_simulation/Library/ArtifactDB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ArtifactDB -------------------------------------------------------------------------------- /spot_simulation/Library/ArtifactDB-lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ArtifactDB-lock -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/00/000771635a267e72a29a00000acbbf5c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/00/000771635a267e72a29a00000acbbf5c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/00/00342a1f96d4b2d1af4890865196315e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/00/00342a1f96d4b2d1af4890865196315e -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/00/003fda35a4e74aa99c2af7b6bb210406: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/00/003fda35a4e74aa99c2af7b6bb210406 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/00/004073a1e5391b5c9370c1c915e08895: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/00/004073a1e5391b5c9370c1c915e08895 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/00/0045e308a50bb7fd74fdd9f72f72901a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/00/0045e308a50bb7fd74fdd9f72f72901a -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/00/004779a5e5d4b92873e9dadcc338dadc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/00/004779a5e5d4b92873e9dadcc338dadc -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/00/004d04e9ca86f273965b8bf7613e9ea9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/00/004d04e9ca86f273965b8bf7613e9ea9 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/00/005a83b308abcac14a36f25acac9caec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/00/005a83b308abcac14a36f25acac9caec -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/00/008aa1ccf2e6d32c0afc90af59be1dd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/00/008aa1ccf2e6d32c0afc90af59be1dd2 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/00/00a3fb15f588b7cb0b6eae2df697c888: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/00/00a3fb15f588b7cb0b6eae2df697c888 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/00/00d5974b5138b9f6567d126ce3bca64f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/00/00d5974b5138b9f6567d126ce3bca64f -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/00/00e1d866828f41c19cab319ce64a405d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/00/00e1d866828f41c19cab319ce64a405d -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/00/00e4d91b4edb06f4779f920ec758e587: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/00/00e4d91b4edb06f4779f920ec758e587 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/01/0102d19c004a82bc103d7cb00ce22b52: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/01/0102d19c004a82bc103d7cb00ce22b52 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/01/010af0b4f994eb61c587323d95ff3148: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/01/010af0b4f994eb61c587323d95ff3148 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/01/0113f1f3987fafd0eee0e7d527e8208e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/01/0113f1f3987fafd0eee0e7d527e8208e -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/01/013caaedf15a2fd0b2f7d565b7503912: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/01/013caaedf15a2fd0b2f7d565b7503912 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/01/013f622af05e2e29f886500ac3675602: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/01/013f622af05e2e29f886500ac3675602 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/01/01646ae095268cf3296688c1aa37c00a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/01/01646ae095268cf3296688c1aa37c00a -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/01/01767a69cad71e7c2db952c93e4206a7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/01/01767a69cad71e7c2db952c93e4206a7 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/01/01cafd33f1a40837974c922ba6ad3d9d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/01/01cafd33f1a40837974c922ba6ad3d9d -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/01/01e16201366039d64bf92c6304a56376: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/01/01e16201366039d64bf92c6304a56376 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/02/02436a998fcb80d81c8c3842384a3faa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/02/02436a998fcb80d81c8c3842384a3faa -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/02/024960e3ce09249457724e94a55e1ee7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/02/024960e3ce09249457724e94a55e1ee7 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/02/02d0ec9b9627a3536263df8287f4ca75: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/02/02d0ec9b9627a3536263df8287f4ca75 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/02/02d61b5029c1996fc5ba99372b0d229f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/02/02d61b5029c1996fc5ba99372b0d229f -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/02/02e3a9305a6c718b83bda20e03930226: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/02/02e3a9305a6c718b83bda20e03930226 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/02/02f186af37e9c68f336f83089345238c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/02/02f186af37e9c68f336f83089345238c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/03/032952476c7c9f753e26e63c8db4cc2c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/03/032952476c7c9f753e26e63c8db4cc2c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/03/037318e22ed2e545d7619e7bdb1de51d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/03/037318e22ed2e545d7619e7bdb1de51d -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/03/03a052cd72cbaa3c2d58f22459f117a3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/03/03a052cd72cbaa3c2d58f22459f117a3 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/03/03b0303cdd97ed3ce3dc709402c025f7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/03/03b0303cdd97ed3ce3dc709402c025f7 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/03/03bdfd82c0b9cbcb742115ed706b1800: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/03/03bdfd82c0b9cbcb742115ed706b1800 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/03/03d45b6dc9a51bf8c64480eaeeccc921: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/03/03d45b6dc9a51bf8c64480eaeeccc921 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/03/03e4d8ab46f1f927802ca8668c05a710: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/03/03e4d8ab46f1f927802ca8668c05a710 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/04/0402b40f4549f750b90d7df60f687472: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/04/0402b40f4549f750b90d7df60f687472 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/04/0432ea6cf0f4536ec51a16f7d243b667: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/04/0432ea6cf0f4536ec51a16f7d243b667 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/04/04682fdb10cbde6ab2b18e5b26ba1f8f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/04/04682fdb10cbde6ab2b18e5b26ba1f8f -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/04/047761b78bca949d40a4c094da1b7b03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/04/047761b78bca949d40a4c094da1b7b03 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/04/047e11cc62af1ab0658267e00ee447d1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/04/047e11cc62af1ab0658267e00ee447d1 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/04/04b024ea19ebf72368525fcb2fc7ca0c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/04/04b024ea19ebf72368525fcb2fc7ca0c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/04/04bdf7eefc4e89663404a601981671b6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/04/04bdf7eefc4e89663404a601981671b6 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/04/04be47758786a4efe6b38d06eb26bee6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/04/04be47758786a4efe6b38d06eb26bee6 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/04/04c7006bf260700a4c860414dae89348: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/04/04c7006bf260700a4c860414dae89348 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/04/04d81e880a16fd3d18ee02d12cc1d6ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/04/04d81e880a16fd3d18ee02d12cc1d6ec -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/04/04e507ebfa836da679bf2d636403de6a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/04/04e507ebfa836da679bf2d636403de6a -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/05/0555b29a186fe2a6775b3b186008af0d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/05/0555b29a186fe2a6775b3b186008af0d -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/05/058f10ff143a85fa1cf4f1a860204471: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/05/058f10ff143a85fa1cf4f1a860204471 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/05/059de817e5af08519723cf107284de9b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/05/059de817e5af08519723cf107284de9b -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/05/05b1b5c193db281cbe73a43ff33e6c16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/05/05b1b5c193db281cbe73a43ff33e6c16 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/05/05be8ef6451071240966ca34239249f3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/05/05be8ef6451071240966ca34239249f3 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/05/05ebe99953ff77a996c9f3bb8412a436: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/05/05ebe99953ff77a996c9f3bb8412a436 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/06/064dfe77eaf8d7b4506c05e2df045914: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/06/064dfe77eaf8d7b4506c05e2df045914 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/06/066337f0c7d64434d82a319e2886682c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/06/066337f0c7d64434d82a319e2886682c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/06/0687c38263694679fe63fa850e3d2445: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/06/0687c38263694679fe63fa850e3d2445 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/06/069bb2a26aee9d58cb0444947f7900b7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/06/069bb2a26aee9d58cb0444947f7900b7 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/06/06b047890043bb11ede2e192b115bb24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/06/06b047890043bb11ede2e192b115bb24 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/06/06b846a0c9939ac07b2ea89af0e78cce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/06/06b846a0c9939ac07b2ea89af0e78cce -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/06/06c80a9b45b7c30ea9ebccd49d5776ed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/06/06c80a9b45b7c30ea9ebccd49d5776ed -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/06/06f0eed46c1b02d2f23d96e6cfbf5045: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/06/06f0eed46c1b02d2f23d96e6cfbf5045 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/06/06f106bcda5e478a325fd8eb2e5b381a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/06/06f106bcda5e478a325fd8eb2e5b381a -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/07/07077fa78a2c4ccd1f420090a0dc81ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/07/07077fa78a2c4ccd1f420090a0dc81ca -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/07/071acd9a2eeec656f6f56bf794897449: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/07/071acd9a2eeec656f6f56bf794897449 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/07/072527b25844f1d2f792ba57a571e2f4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/07/072527b25844f1d2f792ba57a571e2f4 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/07/072fffc59c676ebe9b245a0d1cb678a2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/07/072fffc59c676ebe9b245a0d1cb678a2 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/07/07709f67e2a2bce705a57b6ee18916fb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/07/07709f67e2a2bce705a57b6ee18916fb -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/07/07ae3167fecff84e14434703af2a30ce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/07/07ae3167fecff84e14434703af2a30ce -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/07/07c9aa047672ca45e81a7ace9e25f39c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/07/07c9aa047672ca45e81a7ace9e25f39c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/08/080bd484ced9661e2c9bbb82fd890889: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/08/080bd484ced9661e2c9bbb82fd890889 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/08/083d6cd7486de7ce2a9b5b01c1370f63: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/08/083d6cd7486de7ce2a9b5b01c1370f63 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/08/0895eef552d2c732283e8798c451409e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/08/0895eef552d2c732283e8798c451409e -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/08/089b262e5735d982075c867728e959ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/08/089b262e5735d982075c867728e959ad -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/08/08a1f0cb9617664eb52d455709335a77: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/08/08a1f0cb9617664eb52d455709335a77 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/08/08a9ce140bbd5d12e5b31fcc660bf43b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/08/08a9ce140bbd5d12e5b31fcc660bf43b -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/08/08b6daf7418a497e322d7c16194f63b3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/08/08b6daf7418a497e322d7c16194f63b3 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/08/08cdedda0180cbebb0e32cce7cfef8da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/08/08cdedda0180cbebb0e32cce7cfef8da -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/09/091256baad466550135839ad70770e84: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/09/091256baad466550135839ad70770e84 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/09/092b05eeeb9802c6f94adbdcc5442b37: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/09/092b05eeeb9802c6f94adbdcc5442b37 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/09/09303d8d2c8bb911420493d6550d7649: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/09/09303d8d2c8bb911420493d6550d7649 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/09/093d03d07574316f9a43cef440d9e5ea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/09/093d03d07574316f9a43cef440d9e5ea -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/09/09606dec2e8e1fde64627f06cf649d59: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/09/09606dec2e8e1fde64627f06cf649d59 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/09/0965d1f9f3126f6e7f8a4f1ddb06fc33: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/09/0965d1f9f3126f6e7f8a4f1ddb06fc33 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/09/0986c7cf7dbaa7b6af409adcd47c92ce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/09/0986c7cf7dbaa7b6af409adcd47c92ce -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/09/09e7ebef8aae9ed0bdeb1c1d3d164437: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/09/09e7ebef8aae9ed0bdeb1c1d3d164437 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/09/09eb36a7c3a9ffab62a518d10d0dee26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/09/09eb36a7c3a9ffab62a518d10d0dee26 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/09/09f6c18d18536d05580d46d27a0d1ff3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/09/09f6c18d18536d05580d46d27a0d1ff3 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/09/09fcd630bb753bbe83dbf8907f7f28c9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/09/09fcd630bb753bbe83dbf8907f7f28c9 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0a/0a09fb25cc0ad5b9ad18f8944c4609ba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0a/0a09fb25cc0ad5b9ad18f8944c4609ba -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0a/0a9b559dd07e7241edb8385de0cc50ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0a/0a9b559dd07e7241edb8385de0cc50ac -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0a/0aa6870e8cfff00dd36158b14feab979: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0a/0aa6870e8cfff00dd36158b14feab979 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0a/0aae2b9ab4337e9094f1f58b8af0630c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0a/0aae2b9ab4337e9094f1f58b8af0630c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0a/0ac2600b137c5a38acaa3bb14815687b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0a/0ac2600b137c5a38acaa3bb14815687b -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0a/0ac9e2a0c6fb3a9aa5b5e18f56ef058f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0a/0ac9e2a0c6fb3a9aa5b5e18f56ef058f -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0a/0acbba45b5e200977fc62f5464896ceb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0a/0acbba45b5e200977fc62f5464896ceb -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0a/0acce715cd3b79e70a5a35d617842f95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0a/0acce715cd3b79e70a5a35d617842f95 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0b/0b0ad5cae72f110cdda85454a7789363: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0b/0b0ad5cae72f110cdda85454a7789363 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0b/0b4a0773c8bf22fc813ba4c88a8ff02b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0b/0b4a0773c8bf22fc813ba4c88a8ff02b -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0b/0b4d6d9a6b92553f8b9c21f9a9857447: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0b/0b4d6d9a6b92553f8b9c21f9a9857447 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0b/0b66bb49009e1286758e0e7c776d2988: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0b/0b66bb49009e1286758e0e7c776d2988 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0b/0b69bda01c8320e158adbcb7a6e20ab7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0b/0b69bda01c8320e158adbcb7a6e20ab7 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0b/0b6f8b5a1711baeba05da0a01acfbf34: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0b/0b6f8b5a1711baeba05da0a01acfbf34 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0b/0b8108dd89d987e6929273c8b052b21b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0b/0b8108dd89d987e6929273c8b052b21b -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0b/0b922374deebec66c5e8090ef4474387: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0b/0b922374deebec66c5e8090ef4474387 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0b/0bbe336c5256cd3c60220c99cbfc53f4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0b/0bbe336c5256cd3c60220c99cbfc53f4 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0b/0bc08e0138246e5a14067cae697a63e7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0b/0bc08e0138246e5a14067cae697a63e7 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0b/0bc4ef4b13c50b2fcfb4ff81c8c02a5a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0b/0bc4ef4b13c50b2fcfb4ff81c8c02a5a -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0b/0be6b468c9cd1897c9eacb1d79140ee6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0b/0be6b468c9cd1897c9eacb1d79140ee6 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0c/0c053232382e9ffaf1c2665a89d821d1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0c/0c053232382e9ffaf1c2665a89d821d1 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0c/0c11949032064e01e5239d86b2440498: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0c/0c11949032064e01e5239d86b2440498 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0c/0c1b134047102d26271ce723a4928cb1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0c/0c1b134047102d26271ce723a4928cb1 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0c/0c62bef2d496d98b926b9bedb4d232ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0c/0c62bef2d496d98b926b9bedb4d232ca -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0c/0c6bca3c94d20fab63113720ea9d72f5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0c/0c6bca3c94d20fab63113720ea9d72f5 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0c/0c6fb68b9cabbf397114458566733acb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0c/0c6fb68b9cabbf397114458566733acb -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0c/0c7e09b4311320434cdc302cbba0ccb7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0c/0c7e09b4311320434cdc302cbba0ccb7 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0c/0c9dea881930660e40f9bd977235ed12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0c/0c9dea881930660e40f9bd977235ed12 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0c/0ce35842c0573dd330ad0f24b1b09b83: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0c/0ce35842c0573dd330ad0f24b1b09b83 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0c/0ce8a19a02f79e67e500b71c4d359c1f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0c/0ce8a19a02f79e67e500b71c4d359c1f -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0c/0cfd842011ff44314a246d4ccfc1c633: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0c/0cfd842011ff44314a246d4ccfc1c633 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0d/0d28b58c104fc607fe23baab6903c8f1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0d/0d28b58c104fc607fe23baab6903c8f1 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0d/0d2da1a5fafc72db92999e81e45ca449: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0d/0d2da1a5fafc72db92999e81e45ca449 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0d/0d2e37f510413afe75a8625f441e43b4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0d/0d2e37f510413afe75a8625f441e43b4 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0d/0d37b849a76c9c1d9a2eca4a13d0e74d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0d/0d37b849a76c9c1d9a2eca4a13d0e74d -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0d/0d493c52e2b3ad29214497050039663f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0d/0d493c52e2b3ad29214497050039663f -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0d/0d6069012916e64a6b71ebfa6cada842: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0d/0d6069012916e64a6b71ebfa6cada842 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0d/0d62fcf3bee37408e96a1f67fd362ab5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0d/0d62fcf3bee37408e96a1f67fd362ab5 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0d/0d9c891c3f2bf78e5ed1fdd18ab34589: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0d/0d9c891c3f2bf78e5ed1fdd18ab34589 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0d/0da26e328708c1b0f8d8928c21be8213: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0d/0da26e328708c1b0f8d8928c21be8213 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0d/0da4260dee5b9dee97ea31323924459e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0d/0da4260dee5b9dee97ea31323924459e -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0d/0deac8671d2db691b8d8b617dc3f38f5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0d/0deac8671d2db691b8d8b617dc3f38f5 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0e/0e0ce6400fb96324ca26e7ed9f17b365: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0e/0e0ce6400fb96324ca26e7ed9f17b365 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0e/0e0f2643254a793b35d0b357cdd1c4e1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0e/0e0f2643254a793b35d0b357cdd1c4e1 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0e/0e10d52ac1e15e827ce8d498967ab3f6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0e/0e10d52ac1e15e827ce8d498967ab3f6 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0e/0e1dcfadcdd6c119c60784b26ddc31d3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0e/0e1dcfadcdd6c119c60784b26ddc31d3 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0e/0e74e4c34930f5ea4fe6a7aa6988deca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0e/0e74e4c34930f5ea4fe6a7aa6988deca -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0e/0e95daa212b9e0e655bb8c767c09f239: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0e/0e95daa212b9e0e655bb8c767c09f239 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0e/0ed6d6b0ba74e3d32f952b91045ceda5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0e/0ed6d6b0ba74e3d32f952b91045ceda5 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0e/0eed62f1037301d062a72305a1cbd9e0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0e/0eed62f1037301d062a72305a1cbd9e0 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0e/0ef9985553f5b02091693c6e42e8770c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0e/0ef9985553f5b02091693c6e42e8770c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0e/0efb6f274f7063901e48cf5024a37e15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0e/0efb6f274f7063901e48cf5024a37e15 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0f/0f0b97155101e4fec01f1f8e85271a36: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0f/0f0b97155101e4fec01f1f8e85271a36 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0f/0f3ad2879c46a0dca1adad4ab0ce28d3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0f/0f3ad2879c46a0dca1adad4ab0ce28d3 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0f/0f6dd03d6f0b5e3e3a6adc440e73893c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0f/0f6dd03d6f0b5e3e3a6adc440e73893c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0f/0f83b27a8ebc983fe09a42cdd17382ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0f/0f83b27a8ebc983fe09a42cdd17382ec -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0f/0f8409d7a0ec9f5f4cf8f7e3adfa74f7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0f/0f8409d7a0ec9f5f4cf8f7e3adfa74f7 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0f/0f8a7d6eb8e46ef38e0363c4d5db5734: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0f/0f8a7d6eb8e46ef38e0363c4d5db5734 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0f/0fc654b30e88f27aa0d69d4a22efbf8e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0f/0fc654b30e88f27aa0d69d4a22efbf8e -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0f/0fd64fb4867dee7f6501e1056f76cd20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0f/0fd64fb4867dee7f6501e1056f76cd20 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0f/0fd7b001d70496afb26521671c2adbc4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0f/0fd7b001d70496afb26521671c2adbc4 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0f/0fd83437ee6aeeb20abd5a2ef89f6d80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0f/0fd83437ee6aeeb20abd5a2ef89f6d80 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/0f/0ff6adaa53d9d42a5e6e864a584de399: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/0f/0ff6adaa53d9d42a5e6e864a584de399 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/10/10032f4aa7b00190b337eea5dcece421: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/10/10032f4aa7b00190b337eea5dcece421 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/10/10214a9b6914f214c96c87a43cbe7809: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/10/10214a9b6914f214c96c87a43cbe7809 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/10/104db003dd928d6425ce82036fe33aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/10/104db003dd928d6425ce82036fe33aff -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/10/1084f8f4b1515eac3b5234d6bffbc7fa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/10/1084f8f4b1515eac3b5234d6bffbc7fa -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/10/1099080f54c0e59208609a28115265f3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/10/1099080f54c0e59208609a28115265f3 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/10/10b99cbc3359490ec0dc7cfdaadc20d5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/10/10b99cbc3359490ec0dc7cfdaadc20d5 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/10/10cd8ce28ddc41e18adc547f7ab4a5de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/10/10cd8ce28ddc41e18adc547f7ab4a5de -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/10/10e4c991803df5bc3cd7124fff1949d3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/10/10e4c991803df5bc3cd7124fff1949d3 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/10/10f4f3b55502c79a96bf3504c6af357d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/10/10f4f3b55502c79a96bf3504c6af357d -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/11/11163c4ec3b7ddbb4a17cbc6630f7843: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/11/11163c4ec3b7ddbb4a17cbc6630f7843 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/11/112f57fe6406fe85dd8f44b7cd03590a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/11/112f57fe6406fe85dd8f44b7cd03590a -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/11/1153642f0ebc589bd2aa34074c2451d0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/11/1153642f0ebc589bd2aa34074c2451d0 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/11/117100a04ae9b198c22db4dd4e84fc01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/11/117100a04ae9b198c22db4dd4e84fc01 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/11/117274b0fc3a51f0d1fba52fdebc0506: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/11/117274b0fc3a51f0d1fba52fdebc0506 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/11/119228bc607a3f87ab27ed863166280d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/11/119228bc607a3f87ab27ed863166280d -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/11/11e44eb9105ba46e721cf37e274cc6a9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/11/11e44eb9105ba46e721cf37e274cc6a9 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/11/11efaa1f8f13ef8fdb711e7e9488e8fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/11/11efaa1f8f13ef8fdb711e7e9488e8fd -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/12/12010858340450d27c24347250f1afc1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/12/12010858340450d27c24347250f1afc1 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/12/12218ed8660eee3696179ef04d57f338: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/12/12218ed8660eee3696179ef04d57f338 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/12/122db3fd6726f74870422e3649eb55af: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/12/122db3fd6726f74870422e3649eb55af -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/12/1254dc3d0a88a39accd0f1e2cc1e5c72: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/12/1254dc3d0a88a39accd0f1e2cc1e5c72 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/12/12658a95768b61281b1873c878bf0308: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/12/12658a95768b61281b1873c878bf0308 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/12/126b63f4028ec58a87387de1bf79dd87: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/12/126b63f4028ec58a87387de1bf79dd87 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/12/1271887b46bc55d6645f9821b7cd55c6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/12/1271887b46bc55d6645f9821b7cd55c6 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/12/1288e01972eb18d7d70d0f07975f0317: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/12/1288e01972eb18d7d70d0f07975f0317 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/12/128f85c7be490fd0df970f645766a143: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/12/128f85c7be490fd0df970f645766a143 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/12/1290b63276f6fc7a3d4210e16777ac7a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/12/1290b63276f6fc7a3d4210e16777ac7a -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/12/1293b2fc198f21a831d965010fbd6e21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/12/1293b2fc198f21a831d965010fbd6e21 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/12/12b8ce494fd67c49e8184d788349a44c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/12/12b8ce494fd67c49e8184d788349a44c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/12/12cf55b45efa2baf6ba6e8d7efe426a4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/12/12cf55b45efa2baf6ba6e8d7efe426a4 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/12/12e00c73044548e6d5fb106b7c6a0f1a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/12/12e00c73044548e6d5fb106b7c6a0f1a -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/13/131dc63a523977edc92fd82a9702c31f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/13/131dc63a523977edc92fd82a9702c31f -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/13/1325f1d47f9a6f134dbe98e3ba42a79a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/13/1325f1d47f9a6f134dbe98e3ba42a79a -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/13/132996f8fc14d7985e998ddb86d95c37: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/13/132996f8fc14d7985e998ddb86d95c37 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/13/1341527a852ca9cc26f03ba10e659594: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/13/1341527a852ca9cc26f03ba10e659594 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/13/1342840f112d1a919299ac85760be246: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/13/1342840f112d1a919299ac85760be246 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/13/13828eab0ff247c09878c09e672e5c3f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/13/13828eab0ff247c09878c09e672e5c3f -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/13/138294065a3e4bb61aa70b430e548b12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/13/138294065a3e4bb61aa70b430e548b12 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/13/138f4410900d616d968fe65dd0fa2919: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/13/138f4410900d616d968fe65dd0fa2919 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/13/13e561d68cc09ddd48c3348774029794: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/13/13e561d68cc09ddd48c3348774029794 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/14/1421b4d5208aada39d53925aecfa1b42: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/14/1421b4d5208aada39d53925aecfa1b42 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/14/142b847fffc466c718e38595390cb765: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/14/142b847fffc466c718e38595390cb765 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/14/143f76ee6a746040abefdec977b95e55: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/14/143f76ee6a746040abefdec977b95e55 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/14/1469e68e5d3789805fa83faf884dfb8f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/14/1469e68e5d3789805fa83faf884dfb8f -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/14/14846a6626aa7e516630d32ee6afa27c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/14/14846a6626aa7e516630d32ee6afa27c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/14/148a1ba08df7bc97695f823ad2cf80ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/14/148a1ba08df7bc97695f823ad2cf80ff -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/14/14c07c1e71ebaf0a1ea61b46bcf09767: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/14/14c07c1e71ebaf0a1ea61b46bcf09767 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/14/14d9d3dac6cc92099db1ebc279b137b2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/14/14d9d3dac6cc92099db1ebc279b137b2 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/14/14dd9a91880614e6e61bb5aae0a07de0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/14/14dd9a91880614e6e61bb5aae0a07de0 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/14/14e6f0b7bbb8346aed7902b8d5664c44: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/14/14e6f0b7bbb8346aed7902b8d5664c44 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/14/14ee46b8760c4fb79b97cfe6aed232a2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/14/14ee46b8760c4fb79b97cfe6aed232a2 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/15/1531861560cb2602c1aeb343819ec802: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/15/1531861560cb2602c1aeb343819ec802 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/15/15439a0b89a5c8a000c7338a702b68cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/15/15439a0b89a5c8a000c7338a702b68cf -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/15/155f2a30a8d5813e4faf6cb1c4653ef8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/15/155f2a30a8d5813e4faf6cb1c4653ef8 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/15/156ba57e1bf4524344b0cc60f208b758: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/15/156ba57e1bf4524344b0cc60f208b758 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/15/156f5f6c7bc4fedfac9dd3c89760d70a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/15/156f5f6c7bc4fedfac9dd3c89760d70a -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/15/15a3043126422d46547ae09816e83d9f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/15/15a3043126422d46547ae09816e83d9f -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/15/15ae8b8cb6d1bb63385790a5f5fcd5bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/15/15ae8b8cb6d1bb63385790a5f5fcd5bc -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/15/15ca9308538b2280b2a435f152ca64c1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/15/15ca9308538b2280b2a435f152ca64c1 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/16/1615990affa3e1fa33961196a29846a1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/16/1615990affa3e1fa33961196a29846a1 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/16/167a0ae291f3996811f59825733cf4bd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/16/167a0ae291f3996811f59825733cf4bd -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/16/168312e8780dee66d3ae618a613f34c1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/16/168312e8780dee66d3ae618a613f34c1 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/16/168ba2f16731010d4799860120bb2096: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/16/168ba2f16731010d4799860120bb2096 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/16/16a3a52c0c06c8ebb4e14c2bca4df517: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/16/16a3a52c0c06c8ebb4e14c2bca4df517 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/16/16cbd591f16e8add27f884c53bcd81bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/16/16cbd591f16e8add27f884c53bcd81bc -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/17/171e2ffc28847c92a929129a223f4b30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/17/171e2ffc28847c92a929129a223f4b30 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/17/172e2d84ebe6219d6b056af12bcb34c2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/17/172e2d84ebe6219d6b056af12bcb34c2 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/17/17400289b87494be981f228113a31f55: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/17/17400289b87494be981f228113a31f55 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/17/17546aea90f60a2fcc380e7d14b163ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/17/17546aea90f60a2fcc380e7d14b163ca -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/17/17842fef2b9c05d9865d11c042262eca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/17/17842fef2b9c05d9865d11c042262eca -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/17/178ead3248f52b1f6c479db585a03148: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/17/178ead3248f52b1f6c479db585a03148 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/17/17a2e0c8458cce537a137418a7977507: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/17/17a2e0c8458cce537a137418a7977507 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/17/17da73b5bfda6c7e6b196a6392984f40: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/17/17da73b5bfda6c7e6b196a6392984f40 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/17/17dd952d0520b6f694ebd474be93e8b0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/17/17dd952d0520b6f694ebd474be93e8b0 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/17/17de5ef6f35503c3c6028233b78daab0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/17/17de5ef6f35503c3c6028233b78daab0 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/17/17e520e5ee775329495d05d9ac7a935e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/17/17e520e5ee775329495d05d9ac7a935e -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/18/1832fbf64b8f6897b926df887b543cc0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/18/1832fbf64b8f6897b926df887b543cc0 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/18/184d5e0e84700d8f78ae7f1887e56840: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/18/184d5e0e84700d8f78ae7f1887e56840 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/18/188c4a38defed32e82a10c97b0d9c807: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/18/188c4a38defed32e82a10c97b0d9c807 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/18/1890e1d5504467030c0af8ad1e4da457: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/18/1890e1d5504467030c0af8ad1e4da457 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/18/1893bc00f6fee305e100e7c5dac3571c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/18/1893bc00f6fee305e100e7c5dac3571c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/18/18a9c968dfedde47049bc4863230e32e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/18/18a9c968dfedde47049bc4863230e32e -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/18/18bb7a3cf2e6c2a0f142673a9e959b84: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/18/18bb7a3cf2e6c2a0f142673a9e959b84 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/18/18c21765057963892df5511b240f4c72: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/18/18c21765057963892df5511b240f4c72 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/18/18d5f0303336dc77a9aae2b1f58350aa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/18/18d5f0303336dc77a9aae2b1f58350aa -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/18/18daeab82c689f0b6e3f143062536688: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/18/18daeab82c689f0b6e3f143062536688 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/18/18e5f4ef7cb7ce9a7b910724b8398b20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/18/18e5f4ef7cb7ce9a7b910724b8398b20 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/18/18ef1f50b0751f90c908190c8e298b0c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/18/18ef1f50b0751f90c908190c8e298b0c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/18/18f0646c59417a055d1f476e9d737ca2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/18/18f0646c59417a055d1f476e9d737ca2 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/18/18f872d86197d29de9ab2865f258a883: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/18/18f872d86197d29de9ab2865f258a883 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/19/1904a57c07e08df52f35ace14d1e8409: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/19/1904a57c07e08df52f35ace14d1e8409 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/19/192515b15e837e269ef3192099769db6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/19/192515b15e837e269ef3192099769db6 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/19/192cad2885e926eb472cc37532507d7e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/19/192cad2885e926eb472cc37532507d7e -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/19/195e52720a35ef630b336d82bbce18ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/19/195e52720a35ef630b336d82bbce18ac -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/19/198bd83fc3c0cceb16a9bd01ead5513e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/19/198bd83fc3c0cceb16a9bd01ead5513e -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1a/1a0a570c851901add91108433a3c9c2e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1a/1a0a570c851901add91108433a3c9c2e -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1a/1a211947355975c42925f72c1862f218: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1a/1a211947355975c42925f72c1862f218 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1a/1a25759005a139c9802be6296e9ce308: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1a/1a25759005a139c9802be6296e9ce308 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1a/1a69a3f9e3a08ead402b0a84684094e5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1a/1a69a3f9e3a08ead402b0a84684094e5 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1a/1a6c528a2288d44e25a1dfbf87463d08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1a/1a6c528a2288d44e25a1dfbf87463d08 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1a/1a790ca95e5b59187806b0d8cae8df5a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1a/1a790ca95e5b59187806b0d8cae8df5a -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1a/1a933f168a88e1ba57b5abc11e14b2f0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1a/1a933f168a88e1ba57b5abc11e14b2f0 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1a/1aba095077853a26c46d38b506d245ae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1a/1aba095077853a26c46d38b506d245ae -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1a/1ac2498e171fee501fa354644013eb2e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1a/1ac2498e171fee501fa354644013eb2e -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1a/1ad46197b1029581a46dda28fcb43ccf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1a/1ad46197b1029581a46dda28fcb43ccf -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1a/1ad80296c76941a43fbc2b185a9dbe7f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1a/1ad80296c76941a43fbc2b185a9dbe7f -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1a/1ad83627bee8c9f43061d16538def42b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1a/1ad83627bee8c9f43061d16538def42b -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1a/1adc21376ce4ffefcc01ab63e59307c5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1a/1adc21376ce4ffefcc01ab63e59307c5 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1a/1ae106791caa6a571c85a2f72cdea60c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1a/1ae106791caa6a571c85a2f72cdea60c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1b/1b4c0e46848f5aaac0752429f1b801e0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1b/1b4c0e46848f5aaac0752429f1b801e0 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1b/1b512e94c710b9fb9726dcff3d195952: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1b/1b512e94c710b9fb9726dcff3d195952 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1b/1b5478410753e8b08d3abc8e0acc0c4e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1b/1b5478410753e8b08d3abc8e0acc0c4e -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1b/1b572f4550a93e0abaa95d9284cf589a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1b/1b572f4550a93e0abaa95d9284cf589a -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1b/1b6089d7a76da970c3b859485f688a97: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1b/1b6089d7a76da970c3b859485f688a97 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1b/1b640c6fc8fef9fddf11611fe498b605: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1b/1b640c6fc8fef9fddf11611fe498b605 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1b/1b66ad48d63fd3b986472be8b5487ff8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1b/1b66ad48d63fd3b986472be8b5487ff8 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1b/1b878c9b1565cc90cd3230bc0080ce07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1b/1b878c9b1565cc90cd3230bc0080ce07 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1b/1ba1b9bf886cc948e0784d36beffab10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1b/1ba1b9bf886cc948e0784d36beffab10 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1b/1ba7f94006703d9d41b56c5361b6b992: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1b/1ba7f94006703d9d41b56c5361b6b992 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1b/1bab7f84c8ea512fa9b981202ce0a6f8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1b/1bab7f84c8ea512fa9b981202ce0a6f8 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1b/1bbb6cbe225d845ae482869e5c572b38: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1b/1bbb6cbe225d845ae482869e5c572b38 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1b/1bda7dc8402599e73b83c848b8c71eae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1b/1bda7dc8402599e73b83c848b8c71eae -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1c/1c2a64e139f8701ba4a4ab2cdc7d6ec9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1c/1c2a64e139f8701ba4a4ab2cdc7d6ec9 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1c/1c41394c086013d6d6eafd224751d507: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1c/1c41394c086013d6d6eafd224751d507 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1c/1c4741e8c107ffc2eb0652c4bb6ff460: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1c/1c4741e8c107ffc2eb0652c4bb6ff460 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1c/1ca7774d4c6e8ef7f374fa62a05d9a65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1c/1ca7774d4c6e8ef7f374fa62a05d9a65 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1c/1cc13b48fb4af78a754e665077117264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1c/1cc13b48fb4af78a754e665077117264 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1c/1cce52beca76affa72ecef29b0bd69b0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1c/1cce52beca76affa72ecef29b0bd69b0 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1c/1cdd78d09f61aa8b01cc700f3cfbb514: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1c/1cdd78d09f61aa8b01cc700f3cfbb514 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1c/1cf10287829424eee9e25f53420a93f3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1c/1cf10287829424eee9e25f53420a93f3 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1d/1d0e50b7156bae065ba369cab3c3fd99: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1d/1d0e50b7156bae065ba369cab3c3fd99 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1d/1d1d0f3f5201eab2682f4728b7b8f88c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1d/1d1d0f3f5201eab2682f4728b7b8f88c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1d/1d322040c04b39d4b9ab4c642163ffa9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1d/1d322040c04b39d4b9ab4c642163ffa9 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1d/1d32a27d4e4a3b54d9eddca36b84989a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1d/1d32a27d4e4a3b54d9eddca36b84989a -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1d/1d3fde7cb32e9ef519d68767650e76ee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1d/1d3fde7cb32e9ef519d68767650e76ee -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1d/1d49b959a704695124deeb571419a0dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1d/1d49b959a704695124deeb571419a0dd -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1d/1d51790f628ff699cadaf019863feb79: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1d/1d51790f628ff699cadaf019863feb79 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1d/1d8b626c2e6613d6edeb01ae08d2266a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1d/1d8b626c2e6613d6edeb01ae08d2266a -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1d/1d987aac24877c11407436ca583d637b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1d/1d987aac24877c11407436ca583d637b -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1d/1dae3f887346ba898dd7bd6f7fead45d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1d/1dae3f887346ba898dd7bd6f7fead45d -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1e/1e0edb8f06dfd8e9f191d1a4e97e57d0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1e/1e0edb8f06dfd8e9f191d1a4e97e57d0 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1e/1e21f4ea8431cd97a95aa4c9534f120b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1e/1e21f4ea8431cd97a95aa4c9534f120b -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1e/1e3b98b1ad8b88a58c12bcdec2aacfbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1e/1e3b98b1ad8b88a58c12bcdec2aacfbf -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1e/1e4aba003d497db11652f9761af21d8b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1e/1e4aba003d497db11652f9761af21d8b -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1e/1e598f364d1e0b82f1a1413a5fd4ad9c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1e/1e598f364d1e0b82f1a1413a5fd4ad9c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1e/1e8da1aeae50df067adba9c96a9605e0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1e/1e8da1aeae50df067adba9c96a9605e0 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1e/1eaad1c4d51156271d88d6b0219b5d85: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1e/1eaad1c4d51156271d88d6b0219b5d85 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1e/1ec42647d2d4e0b71a1ecdf4490e77a8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1e/1ec42647d2d4e0b71a1ecdf4490e77a8 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1e/1edc5248dd0cef1dd27f8908eb61b3f4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1e/1edc5248dd0cef1dd27f8908eb61b3f4 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1e/1ee4dbd72f17a95b0fad4f2dbf4ccd74: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1e/1ee4dbd72f17a95b0fad4f2dbf4ccd74 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1e/1ef80e299ca30c5e03cc331febd76d26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1e/1ef80e299ca30c5e03cc331febd76d26 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1f/1f0a98a976a1faa802885e5fda61d8f1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1f/1f0a98a976a1faa802885e5fda61d8f1 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1f/1f56f25f4313af81f28a4dc1e605b76f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1f/1f56f25f4313af81f28a4dc1e605b76f -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1f/1f8be413fa153fdb79718168484c1fc0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1f/1f8be413fa153fdb79718168484c1fc0 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1f/1fb9f37169fda7b21ca1bc046d73f4a8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1f/1fb9f37169fda7b21ca1bc046d73f4a8 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1f/1fc10c3d8cdfc8c692248aeaaf57b2bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1f/1fc10c3d8cdfc8c692248aeaaf57b2bb -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1f/1fde1c95ce06763a569461a2e5cc7f36: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1f/1fde1c95ce06763a569461a2e5cc7f36 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/1f/1ffdea9e40c713ff4531454a8fe2d2fe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/1f/1ffdea9e40c713ff4531454a8fe2d2fe -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/20/20052e0f5e080b1aceac82e6225f4116: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/20/20052e0f5e080b1aceac82e6225f4116 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/20/2025297025472bc430e2ff167b5567c0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/20/2025297025472bc430e2ff167b5567c0 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/20/202b58a9833ec4a0b77c0a6c45ea7924: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/20/202b58a9833ec4a0b77c0a6c45ea7924 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/20/2032efcad620b583ce007712b892a9d1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/20/2032efcad620b583ce007712b892a9d1 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/20/203905be19ec486be8467779a708b4bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/20/203905be19ec486be8467779a708b4bb -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/20/203ed4cbc866aebf4a087b5d87410a36: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/20/203ed4cbc866aebf4a087b5d87410a36 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/20/204c451ae5998988fd8cb5b6997b4992: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/20/204c451ae5998988fd8cb5b6997b4992 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/20/20678a23c8cbe160d483f61c8e536029: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/20/20678a23c8cbe160d483f61c8e536029 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/20/20697a2bd78438f2911a4a767b7a81d7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/20/20697a2bd78438f2911a4a767b7a81d7 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/20/206ef6239658f956420b78c5e6669f78: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/20/206ef6239658f956420b78c5e6669f78 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/20/2071128c3129d95af842bfd03bfd15d4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/20/2071128c3129d95af842bfd03bfd15d4 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/20/20bca5217c9a543133afac8fe6eae2b7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/20/20bca5217c9a543133afac8fe6eae2b7 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/20/20cd7f02804e6e9d4bee10f6c197a90d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/20/20cd7f02804e6e9d4bee10f6c197a90d -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/20/20d7b47e8bc2d820c0c98bb849279264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/20/20d7b47e8bc2d820c0c98bb849279264 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/20/20fdfebbaf881f9a9ef685c4c1f0c456: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/20/20fdfebbaf881f9a9ef685c4c1f0c456 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/20/20fe9c59eb2dd0cb05602ea5dbf1b33b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/20/20fe9c59eb2dd0cb05602ea5dbf1b33b -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/21/21091632ea3f0bd974d62cf3f9c826eb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/21/21091632ea3f0bd974d62cf3f9c826eb -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/21/212d734abd9bca1865ffce7ed4adc3e6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/21/212d734abd9bca1865ffce7ed4adc3e6 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/21/213596ae1bd95820e4f423cd0e7c7b7e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/21/213596ae1bd95820e4f423cd0e7c7b7e -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/21/2138cee4505cdca6d4afec1bb4b826d9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/21/2138cee4505cdca6d4afec1bb4b826d9 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/21/2157f34896b26db2f423c341cc99b8d4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/21/2157f34896b26db2f423c341cc99b8d4 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/21/2178a8a0fa8308fcfa83c6c3cf779a0c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/21/2178a8a0fa8308fcfa83c6c3cf779a0c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/21/2186e04605508cca6d9d1d4134069a7f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/21/2186e04605508cca6d9d1d4134069a7f -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/21/2191fe9728f1e2b8a55b6fa24200b931: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/21/2191fe9728f1e2b8a55b6fa24200b931 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/21/21c3cba578e14ee7d6a37816725e260f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/21/21c3cba578e14ee7d6a37816725e260f -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/21/21e41b7c993126cef0eacb3c880a0bb5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/21/21e41b7c993126cef0eacb3c880a0bb5 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/22/2209539c8c558ff144dcedff834b2bf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/22/2209539c8c558ff144dcedff834b2bf5 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/22/221c5b99eff74269fb4c7345b24c1943: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/22/221c5b99eff74269fb4c7345b24c1943 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/22/22248225c36e00bd97268ea839efe805: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/22/22248225c36e00bd97268ea839efe805 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/22/225387e86ada4fe9e7bbd808c3a028db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/22/225387e86ada4fe9e7bbd808c3a028db -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/22/22d06ff499cc49595fecd11986e5f675: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/22/22d06ff499cc49595fecd11986e5f675 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/22/22f881781f4805f676ba9212c2c48516: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/22/22f881781f4805f676ba9212c2c48516 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/23/23044bed32138c2988ed8151b36f619b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/23/23044bed32138c2988ed8151b36f619b -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/23/230f6362ccf964f6cffc47a4681e7613: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/23/230f6362ccf964f6cffc47a4681e7613 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/23/23112cc2eca4c1aa1205b2cd59b71609: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/23/23112cc2eca4c1aa1205b2cd59b71609 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/23/2388281cb4b3928b6b73a22c35c98dbb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/23/2388281cb4b3928b6b73a22c35c98dbb -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/23/239374beb2d357332ac7360ad35d262e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/23/239374beb2d357332ac7360ad35d262e -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/23/23938f8ce252ec234944744d7e94e431: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/23/23938f8ce252ec234944744d7e94e431 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/23/23e4a20ecabcfa659809e62e7e9ffcc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/23/23e4a20ecabcfa659809e62e7e9ffcc3 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/24/24037665fb7eae41dd227e150a868aaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/24/24037665fb7eae41dd227e150a868aaf -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/24/24255cb5669b5f43911c2d1310cfee00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/24/24255cb5669b5f43911c2d1310cfee00 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/24/245139ec33785112cd32c419bf94e599: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/24/245139ec33785112cd32c419bf94e599 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/24/24668255e3ee10303eb27cd1d861cd30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/24/24668255e3ee10303eb27cd1d861cd30 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/24/2484471e5d9f27762e43b54d51528785: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/24/2484471e5d9f27762e43b54d51528785 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/24/24cea80f9bdbe93a738458a5d954fd95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/24/24cea80f9bdbe93a738458a5d954fd95 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/25/254fc7af024d17b8d075b3b466749769: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/25/254fc7af024d17b8d075b3b466749769 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/25/255f1c1d3b57ae62ee14914653738be5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/25/255f1c1d3b57ae62ee14914653738be5 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/25/2561177ff1fbd1318c0fb17a6ec76f02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/25/2561177ff1fbd1318c0fb17a6ec76f02 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/25/2577bff8a5ee0ff059fbbe12ad80825f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/25/2577bff8a5ee0ff059fbbe12ad80825f -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/25/258677b76162fd501e5e73d55e43e6f0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/25/258677b76162fd501e5e73d55e43e6f0 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/25/25c00d004ce2cd634f599c74917389c9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/25/25c00d004ce2cd634f599c74917389c9 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/25/25c7a7ee795b01950bac95219e6465e8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/25/25c7a7ee795b01950bac95219e6465e8 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/25/25d3f9f6b5218dd8cfef2ddeb53eff8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/25/25d3f9f6b5218dd8cfef2ddeb53eff8c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/25/25dcce76eaab7b74022d33843b2f47d5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/25/25dcce76eaab7b74022d33843b2f47d5 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/25/25e9286bc6497c34d38f825c4da00343: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/25/25e9286bc6497c34d38f825c4da00343 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/26/260db932db11f65c3550d1afc28c2e6f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/26/260db932db11f65c3550d1afc28c2e6f -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/26/260f11c30af5d68aee5d6e6d6a73c95a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/26/260f11c30af5d68aee5d6e6d6a73c95a -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/26/2653bbb0a10b2d998ed811d1661f0a68: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/26/2653bbb0a10b2d998ed811d1661f0a68 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/26/267809e9d7ef0cd33996e47fc629d194: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/26/267809e9d7ef0cd33996e47fc629d194 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/26/2694c850c57d88e0cbbb623fc2897feb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/26/2694c850c57d88e0cbbb623fc2897feb -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/26/269b3af2484e30a6cea83c3321f9d1df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/26/269b3af2484e30a6cea83c3321f9d1df -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/26/26afda304f8b7e86ee4dce124e7a1b68: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/26/26afda304f8b7e86ee4dce124e7a1b68 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/26/26bb46573a8a61672ded18f33f5826a7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/26/26bb46573a8a61672ded18f33f5826a7 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/26/26bb94871a0e22813f507ada541130e9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/26/26bb94871a0e22813f507ada541130e9 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/27/27134fbab8dead470b759a8b5146838d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/27/27134fbab8dead470b759a8b5146838d -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/27/277a7de4df435f68cc39c4305e757d22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/27/277a7de4df435f68cc39c4305e757d22 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/27/279c7a6c77d1655fd114cca414527f5d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/27/279c7a6c77d1655fd114cca414527f5d -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/27/279d112a2b3c06d9782f275cdb79245e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/27/279d112a2b3c06d9782f275cdb79245e -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/27/27a68e16d79ee290f512e085d8e33bd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/27/27a68e16d79ee290f512e085d8e33bd2 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/27/27db795b98fc207d4969712696080018: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/27/27db795b98fc207d4969712696080018 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/28/284b04a609a05967fde2dc2f29fb4832: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/28/284b04a609a05967fde2dc2f29fb4832 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/28/288868ace3788dd7d6b89f4be59a704a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/28/288868ace3788dd7d6b89f4be59a704a -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/28/28a23b7a8ccd2b67cb5de39b61248101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/28/28a23b7a8ccd2b67cb5de39b61248101 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/28/28c0990bf0a9ad7e39444b8869bd6344: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/28/28c0990bf0a9ad7e39444b8869bd6344 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/28/28e3aa942b9771b28cb15ccb35dbc6a3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/28/28e3aa942b9771b28cb15ccb35dbc6a3 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/28/28e67a2b85079fff5f0dc3f0efcb1c04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/28/28e67a2b85079fff5f0dc3f0efcb1c04 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/28/28e9fcbbda5a2557ae9897f9c078fadf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/28/28e9fcbbda5a2557ae9897f9c078fadf -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/28/28f36da3e213b1dabd5aec6bc24f4171: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/28/28f36da3e213b1dabd5aec6bc24f4171 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/28/28ff9c75fc1c28b272b07bf3f7b72827: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/28/28ff9c75fc1c28b272b07bf3f7b72827 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/29/294806a623b0fadbc7138778ac55a743: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/29/294806a623b0fadbc7138778ac55a743 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/29/294f94428261f558b3d6a6cfe97c1d31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/29/294f94428261f558b3d6a6cfe97c1d31 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/29/295523c96dc9cc8f474c55023ccc7e6f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/29/295523c96dc9cc8f474c55023ccc7e6f -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/29/296da1b9b0d6f2f791b24938ce620b92: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/29/296da1b9b0d6f2f791b24938ce620b92 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/29/2970b9db3b84d128811e53edf26b1914: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/29/2970b9db3b84d128811e53edf26b1914 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/29/297c7e66d97f616a8dc2d2a95fa7628c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/29/297c7e66d97f616a8dc2d2a95fa7628c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/29/297f0d0632fae1b4616d25c04a154cdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/29/297f0d0632fae1b4616d25c04a154cdb -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/29/29d1f5afffba85a948f4208f87c38ba0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/29/29d1f5afffba85a948f4208f87c38ba0 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/29/29da69a5dedfd830ac770a3fa3bd52d0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/29/29da69a5dedfd830ac770a3fa3bd52d0 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/29/29e045f0153224542584f56840e55e0a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/29/29e045f0153224542584f56840e55e0a -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2a/2a1c3b1069b54abdaf976ac74d605976: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2a/2a1c3b1069b54abdaf976ac74d605976 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2a/2a41898bbaf8284c9e26792f3f5ce211: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2a/2a41898bbaf8284c9e26792f3f5ce211 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2a/2a93134a594c8f80a7c10053e4bd26f2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2a/2a93134a594c8f80a7c10053e4bd26f2 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2a/2a94607ae340cd4cb3692355490a336c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2a/2a94607ae340cd4cb3692355490a336c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2a/2abc554279e9ccb6b8902eb83a3fe96d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2a/2abc554279e9ccb6b8902eb83a3fe96d -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2a/2af199fc4bf9c56689d30cea330a783b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2a/2af199fc4bf9c56689d30cea330a783b -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2a/2af43b1579b00ed158a1277e5934bf24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2a/2af43b1579b00ed158a1277e5934bf24 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2b/2b037b0160ef813b06d8141c4671e7f5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2b/2b037b0160ef813b06d8141c4671e7f5 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2b/2b59738d19408791626e2423e02031be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2b/2b59738d19408791626e2423e02031be -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2b/2b69992c4a131f38a79c3789cbf02f62: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2b/2b69992c4a131f38a79c3789cbf02f62 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2b/2b76e1aec3fb19cd66834bbe64854d2a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2b/2b76e1aec3fb19cd66834bbe64854d2a -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2b/2b905aa42f331d4d817c1ca3be240aaa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2b/2b905aa42f331d4d817c1ca3be240aaa -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2b/2bf4d57b6cfaf1ae6e45e4a733ac12bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2b/2bf4d57b6cfaf1ae6e45e4a733ac12bf -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2c/2c0abf4384976e9c06b912fc460e6f3b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2c/2c0abf4384976e9c06b912fc460e6f3b -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2c/2c1c503de3ba1d902e2da2bb8564e2ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2c/2c1c503de3ba1d902e2da2bb8564e2ca -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2c/2c4efb2a7503b34622af44e314d8aac9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2c/2c4efb2a7503b34622af44e314d8aac9 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2c/2c79cd8c40e85d5c154b804b7d360057: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2c/2c79cd8c40e85d5c154b804b7d360057 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2c/2c95008b93ad1af345476fe882bee443: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2c/2c95008b93ad1af345476fe882bee443 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2c/2c96353ea7164e22ea902c979e6f81ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2c/2c96353ea7164e22ea902c979e6f81ac -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2c/2cb2126b5169d9011b9bf24df525e8db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2c/2cb2126b5169d9011b9bf24df525e8db -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2c/2cb234c7fa5722880cf12f64a1ce8239: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2c/2cb234c7fa5722880cf12f64a1ce8239 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2d/2d1da2b0617c817666482bbba9127233: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2d/2d1da2b0617c817666482bbba9127233 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2d/2d2dcc4194e683a3ce429c78db300d26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2d/2d2dcc4194e683a3ce429c78db300d26 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2d/2d359fdf48178369245d065ede08564c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2d/2d359fdf48178369245d065ede08564c -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2d/2d6f2568aebac20354add7646da51a15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2d/2d6f2568aebac20354add7646da51a15 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2d/2d74085a8c5ea41a597d364baf97ac30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2d/2d74085a8c5ea41a597d364baf97ac30 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2d/2da3c58d772f07d24ae5ad3b39b81938: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2d/2da3c58d772f07d24ae5ad3b39b81938 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2d/2da83fceb84d9d2943d01a2343a6f72b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2d/2da83fceb84d9d2943d01a2343a6f72b -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2d/2dba56e9a2e47e69cf0bb675d8f74485: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2d/2dba56e9a2e47e69cf0bb675d8f74485 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2d/2dbe97d11b99193ec49b4801cc0f41bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2d/2dbe97d11b99193ec49b4801cc0f41bc -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2d/2dcc74bffb4ba6e6cf9014816c6e63c0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2d/2dcc74bffb4ba6e6cf9014816c6e63c0 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2d/2df0b657690ebb46f9f53932497696b3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2d/2df0b657690ebb46f9f53932497696b3 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2d/2df1bbc739a2a4de3585a35b336dbfe0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2d/2df1bbc739a2a4de3585a35b336dbfe0 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2d/2df97217ea7272cc77d5ece5d65d9be3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2d/2df97217ea7272cc77d5ece5d65d9be3 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2e/2e0affa90bd219a025266c7f1e399009: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2e/2e0affa90bd219a025266c7f1e399009 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2e/2e12dc1c6f23d8364d64db75bc98d4e2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2e/2e12dc1c6f23d8364d64db75bc98d4e2 -------------------------------------------------------------------------------- /spot_simulation/Library/Artifacts/2e/2e1c933340527d3ed9e39d3f777268d6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Artifacts/2e/2e1c933340527d3ed9e39d3f777268d6 -------------------------------------------------------------------------------- /spot_simulation/Library/BuildPlayer.prefs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/BuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/BuildSettings.asset -------------------------------------------------------------------------------- /spot_simulation/Library/CurrentLayout-default.dwlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/CurrentLayout-default.dwlt -------------------------------------------------------------------------------- /spot_simulation/Library/EditorOnlyScriptingSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/EditorOnlyScriptingSettings.json -------------------------------------------------------------------------------- /spot_simulation/Library/EditorOnlyVirtualTextureState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/EditorOnlyVirtualTextureState.json -------------------------------------------------------------------------------- /spot_simulation/Library/EditorSnapSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/EditorSnapSettings.asset -------------------------------------------------------------------------------- /spot_simulation/Library/EditorUserBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/EditorUserBuildSettings.asset -------------------------------------------------------------------------------- /spot_simulation/Library/InspectorExpandedItems.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/InspectorExpandedItems.asset -------------------------------------------------------------------------------- /spot_simulation/Library/LastSceneManagerSetup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/LastSceneManagerSetup.txt -------------------------------------------------------------------------------- /spot_simulation/Library/LibraryFormatVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/LibraryFormatVersion.txt -------------------------------------------------------------------------------- /spot_simulation/Library/MonoManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/MonoManager.asset -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.collab-proxy@1.13.5/Tests/.tests.json: -------------------------------------------------------------------------------- 1 | { 2 | "createSeparatePackage": false 3 | } 4 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.editorcoroutines@1.0.0/README.md: -------------------------------------------------------------------------------- 1 | Editor Coroutines -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.ide.rider@2.0.7/Rider/Editor/Properties.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 354fde95fe0643b09509e5fcee350b33 3 | timeCreated: 1580716670 -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.ide.visualstudio@2.0.11/Editor/AssemblyInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d791d407901442e49862d3aa783ce8af 3 | timeCreated: 1602756877 -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.ai@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.androidjni@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.animation@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.assetbundle@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.audio@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.cloth@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.director@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.imageconversion@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.imgui@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.jsonserialize@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.particlesystem@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.physics2d@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.physics@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.screencapture@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.subsystems@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.terrain@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.terrainphysics@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.tilemap@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.ui@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.uielements@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.uielementsnative@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.umbra@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.unityanalytics@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.unitywebrequest@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.unitywebrequestassetbundle@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.unitywebrequestaudio@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.unitywebrequesttexture@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.unitywebrequestwww@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.vehicles@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.video@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.vr@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.wind@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.modules.xr@1.0.0/package.ModuleCompilationTrigger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.nuget.newtonsoft-json@2.0.0/Tests/.tests.json: -------------------------------------------------------------------------------- 1 | { 2 | "createSeparatePackage": false 3 | } 4 | -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/BackendHelpers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40f9aa331f3045d4973df46b8e2c124c 3 | timeCreated: 1618054298 -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UiHelpers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 751662d6c01144819a1d17e1333bb5a4 3 | timeCreated: 1618053937 -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UiHelpers/Images.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99ef0537e3a64f2a9d41d9de53451790 3 | timeCreated: 1618054010 -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UiHelpers/USS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5a82d89366f47d69dc69ae0f6cf29bf 3 | timeCreated: 1618054028 -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.services.core@1.0.1/Editor/Core/UserRoleManagement.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad038c07cd5d462c9534935085daaf02 3 | timeCreated: 1618054214 -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/IMenuChecked.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0939c83f40ef46e584340aa87b3cadfe 3 | timeCreated: 1591130283 -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.timeline@1.4.8/Editor/Actions/IMenuName.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 512ac45650d443f3be59379c2ecbf068 3 | timeCreated: 1591130274 -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.timeline@1.4.8/Editor/Undo/UndoScope.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef85e74dfd3749279eff9e7fbfbaf3f8 3 | timeCreated: 1590436732 -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.timeline@1.4.8/Editor/UnityEditorInternals.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9045505a91f4aee87d5768fffc7de5c 3 | timeCreated: 1575581351 -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.timeline@1.4.8/Editor/Utilities/Scopes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d55400f78d024c05b04dc124bb181d9e 3 | timeCreated: 1605887929 -------------------------------------------------------------------------------- /spot_simulation/Library/PackageCache/com.unity.ugui@1.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/PackageCache/com.unity.ugui@1.0.0/README.md -------------------------------------------------------------------------------- /spot_simulation/Library/PackageManager/ProjectCache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/PackageManager/ProjectCache -------------------------------------------------------------------------------- /spot_simulation/Library/PackageManager/ProjectCache.md5: -------------------------------------------------------------------------------- 1 | 10abc0ea62b6260c04aaca6c8455962c -------------------------------------------------------------------------------- /spot_simulation/Library/SceneVisibilityState.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/SceneVisibilityState.asset -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/Assembly-CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/Assembly-CSharp.dll -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/Assembly-CSharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/Assembly-CSharp.pdb -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/BuiltinAssemblies.stamp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/BuiltinAssemblies.stamp -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/Unity.Rider.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/Unity.Rider.Editor.dll -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/Unity.Rider.Editor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/Unity.Rider.Editor.pdb -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/Unity.TextMeshPro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/Unity.TextMeshPro.dll -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/Unity.TextMeshPro.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/Unity.TextMeshPro.pdb -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/Unity.Timeline.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/Unity.Timeline.Editor.dll -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/Unity.Timeline.Editor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/Unity.Timeline.Editor.pdb -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/Unity.Timeline.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/Unity.Timeline.dll -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/Unity.Timeline.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/Unity.Timeline.pdb -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/Unity.VSCode.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/Unity.VSCode.Editor.dll -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/Unity.VSCode.Editor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/Unity.VSCode.Editor.pdb -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/UnityEditor.TestRunner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/UnityEditor.TestRunner.dll -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/UnityEditor.TestRunner.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/UnityEditor.TestRunner.pdb -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/UnityEditor.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/UnityEditor.UI.dll -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/UnityEditor.UI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/UnityEditor.UI.pdb -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/UnityEngine.TestRunner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/UnityEngine.TestRunner.dll -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/UnityEngine.TestRunner.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/UnityEngine.TestRunner.pdb -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/UnityEngine.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/UnityEngine.UI.dll -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/UnityEngine.UI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/UnityEngine.UI.pdb -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/vhacd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/vhacd.dll -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptAssemblies/vhacd.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptAssemblies/vhacd.pdb -------------------------------------------------------------------------------- /spot_simulation/Library/ScriptMapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ScriptMapper -------------------------------------------------------------------------------- /spot_simulation/Library/ShaderCache.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ShaderCache.db -------------------------------------------------------------------------------- /spot_simulation/Library/ShaderCache/EditorEncounteredVariants: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/ShaderCache/EditorEncounteredVariants -------------------------------------------------------------------------------- /spot_simulation/Library/SourceAssetDB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/SourceAssetDB -------------------------------------------------------------------------------- /spot_simulation/Library/SourceAssetDB-lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/SourceAssetDB-lock -------------------------------------------------------------------------------- /spot_simulation/Library/SpriteAtlasDatabase.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/SpriteAtlasDatabase.asset -------------------------------------------------------------------------------- /spot_simulation/Library/Style.catalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/Style.catalog -------------------------------------------------------------------------------- /spot_simulation/Library/expandedItems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Library/expandedItems -------------------------------------------------------------------------------- /spot_simulation/Logs/ApiUpdaterCheck.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Logs/ApiUpdaterCheck.txt -------------------------------------------------------------------------------- /spot_simulation/Logs/AssetImportWorker0.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Logs/AssetImportWorker0.log -------------------------------------------------------------------------------- /spot_simulation/Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Logs/Packages-Update.log -------------------------------------------------------------------------------- /spot_simulation/Logs/shadercompiler-AssetImportWorker0.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Logs/shadercompiler-AssetImportWorker0.log -------------------------------------------------------------------------------- /spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe0.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe0.log -------------------------------------------------------------------------------- /spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe1.log -------------------------------------------------------------------------------- /spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe10.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe10.log -------------------------------------------------------------------------------- /spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe11.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe11.log -------------------------------------------------------------------------------- /spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe12.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe12.log -------------------------------------------------------------------------------- /spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe13.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe13.log -------------------------------------------------------------------------------- /spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe14.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe14.log -------------------------------------------------------------------------------- /spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe15.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe15.log -------------------------------------------------------------------------------- /spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe2.log -------------------------------------------------------------------------------- /spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe3.log -------------------------------------------------------------------------------- /spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe4.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe4.log -------------------------------------------------------------------------------- /spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe5.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe5.log -------------------------------------------------------------------------------- /spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe6.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe6.log -------------------------------------------------------------------------------- /spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe7.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe7.log -------------------------------------------------------------------------------- /spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe8.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe8.log -------------------------------------------------------------------------------- /spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe9.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Logs/shadercompiler-UnityShaderCompiler.exe9.log -------------------------------------------------------------------------------- /spot_simulation/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Packages/manifest.json -------------------------------------------------------------------------------- /spot_simulation/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Packages/packages-lock.json -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/TimelineSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/TimelineSettings.asset -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /spot_simulation/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /spot_simulation/Unity.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/Unity.gitignore -------------------------------------------------------------------------------- /spot_simulation/UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryceikeda/SpotTutorial/HEAD/spot_simulation/UserSettings/EditorUserSettings.asset --------------------------------------------------------------------------------