userLorenz Junglascancel

402 Commits over 92 Days - 0.18cph!

22 Days Ago
Refactor parts of CloneHelpers into a ReflectionQueryCache
22 Days Ago
Optimize Network.RegisterProperties by caching reflection data (#1815)
22 Days Ago
Optimize Network.RegisterProperties by caching reflection data
22 Days Ago
Fix property filter for cloning & Fix NRE in CheckRequiredComponents
22 Days Ago
Tiny optimization in GameObject.MakeNameUnique
22 Days Ago
Avoid TypeLibrary for component creation during cloning Cache member list of cloneable properties (-> 2 times faster clone) Cache property list for CheckRequireComponent (another 2x improvement in clone)
23 Days Ago
Optimize Player.Inherit 2.3ms -> 300μs. Could probably still be optimized more.
23 Days Ago
Fix NavAgent ground trace for MapColliders (Run two traces instead of one trace with RunAll)
23 Days Ago
Fix NavMeshAreas not linking to their collider correctly if deserialized in the "wrong" order
23 Days Ago
Fix sphere trace returning incorrect HitPosition when using SceneTrace.RunAll()
23 Days Ago
Splines: Add working state from a couple of months ago (pre FP) Basically a port of my C++ spline library wrapped with a component + editor tool. Still requires some API and Editor UX cleanup. https://files.facepunch.com/lolleko/1b0911b1/sbox-dev_0KaDTZAF7l.mp4 Nav Basic: Reduce rotation on test slope to account for floating point inaccuracies Fix obsoletes Add roughness test scene, Compares if IBL GGX Filter matches reference Update Roughness_test Use WorldTransform/LocalTransform First pass on spline model deformation https://files.facepunch.com/lolleko/1b1611b1/sbox-dev_pXP1R0vFzj.mp4 https://files.facepunch.com/lolleko/1b1611b1/sbox-dev_1SBGUutgNa.png Remove stackalloc (it's not whitelisted) Fix duplicating a spline point with shift not copying roll & scale Use sceneobjects for spline model instances instead of Graphics.Draw Deform spline model bounds to ensure accurate frustum culling https://files.facepunch.com/lolleko/1b1611b1/sbox-dev_FuFEWnL2FA.png https://files.facepunch.com/lolleko/1b1611b1/sbox-dev_xrWVBJicsC.png PoC spline collisions Currently just super hacky static mesh/model collision https://files.facepunch.com/lolleko/1b1711b1/sbox-dev_03QtKgtfYW.mp4 Update trails scene Hull based spline collisions Allows proper physics simulation of the spline models. Works okay for boxes, still need to figure out why izabu quick hull struggles with more complex shapes. https://files.facepunch.com/lolleko/1b1811b1/sbox-dev_YFlVR7whUv.mp4 Filter duplicate vertices after spline deformation and before qhull Update terrain scene, adjust things, envmapprobe had inverse scale (wtf), use ibl, should be a good starting point to have a terrain with nice lighting setup https://files.facepunch.com/sampavlovic/1b1911b1/NLZEcHl7Uh.jpg Spline collider now supports all collision shapes Added custom subdivision logic for each shape. How much subdivision/collision geometry is created can be controlled by the user via property. Performance still sucks, but optimization should be easy going forward. Individual bone/shape transforms are currently not working. https://files.facepunch.com/lolleko/2024/December/19_18-49-AnotherDrongo.png https://files.facepunch.com/lolleko/2024/December/19_18-48-SecretNuthatch.mp4 Add Shader Classes Test Spline Collision Support BoneTransforms and Rotation Spline collider now provides accurate collision for any shape and any rotation. Deformed/Twisted citizens with collisions: https://files.facepunch.com/lolleko/2024/December/23_12-34-DishonestQuagga.png https://files.facepunch.com/lolleko/2024/December/23_12-34-HorribleNightheron.png Cleanup Spline Editor Proper undo support for gizmo initiated changes Frustum cull Gizmos as they are fairly expensive to create. Optimize Gizmo drawing. Defocus input when switching spline point Bounding box calcualtion for spline components Fix typos Improve spline editor undo fix PlayerSquish collision Revert "fix PlayerSquish collision" This reverts commit 18ba5597c624789e8e8b999e7b64bd33ae33e4ae. More spline undo improvements Fix spline gizmo culling Bump hitbox of spline line Align tangent mode names with exiting curve class Fix roll and scale changes not invoking spline changed code -> Code Rename some vars in spline math Scene reproducing Facepunch/sbox#1756 Cleanup spline components and test scene Fix spline loop (de)serialization Remove GetNormal function from spline component for now There are so many different ways to calculate normals for splines (Frenet-Serret-Frame, Fixed Up Vector, RMF/Parallel Transport...) Not sure yet, which one we want to offer. Binary search for accessing splines at a distance Fix some NREs in spline model renderer Play around with tangent frame calculation using Parallel Transport / RMF https://files.facepunch.com/lolleko/2025/January/07_20-51-CriminalBlackfish.mp4 Move spline deformation away from vertex shader to allow deformation of arbitrary models Deform spline models on the CPU like a cavemen. Use RMF to avoid twisting artifacts. Will move this to a compute shader eventually. https://files.facepunch.com/lolleko/2025/January/08_10-35-AgileHectorsdolphin.png More customization for tangent frames/up vectors This is useful for stuff like loops. 1. Default Up Vector (0,0,1) -> twisting artifacts: https://files.facepunch.com/lolleko/2025/January/09_17-52-OrangeredCowrie.png 2. Automatic up vectors using rotation minimizing frames (RMF) https://files.facepunch.com/lolleko/2025/January/09_17-53-DesertedClam.png 3. Manual up vectors/frames: https://files.facepunch.com/lolleko/2025/January/09_17-52-MisguidedWryneck.png Some Model Deformation optimization Still only on the CPU but it's surprisingly fast https://files.facepunch.com/lolleko/2025/January/09_21-39-VacantIridescentshark.mp4 Add spacing parameter https://files.facepunch.com/lolleko/2025/January/09_23-00-AngelicVipersquid.mp4 🚂 Update Spline Collider to match new SplineModel Deformation https://files.facepunch.com/lolleko/2025/January/09_23-59-LinearAlligator.png Delete legacy/unused deformation code Enable Global Scale for spline models https://files.facepunch.com/lolleko/2025/January/10_11-16-TintedAfricanparadiseflycatcher.png Base SplineModelRenderer of ModelRenderer Allows Tint, MaterialOverrides and other options to be used on spline models Cleanup spline component & tool naming Update Test Scene https://files.facepunch.com/lolleko/2025/January/10_18-17-TornAllosaurus.mp4 Fix water shader scene name Add ParticlePhysics test Scene testing dynamic action graph properties Remove GTAO include code from scenestaging DynamicReflections component stub Update Viewmodel scene with ssao also showcasing proper prepass New decal Direct port of IES Profile Texture from hackweek into TextureGenerator, use Source instead of a file for now https://files.facepunch.com/sampavlovic/1b2611b1/OCXtsLYQSC.png Update decals test scene Scene reproducing Facepunch/sbox-issues#7443 Iterate Dynamic Reflections Component, add shader Iterate Dynamic Reflections Component, almost feature complete Merge branch 'main' into navlink-scene
23 Days Ago
Fix assert to diagnose "Can't parent to a gameobject in a different scene" breaking if Components ToString is overwritten
23 Days Ago
Reference NavMeshLink in navmeshdata
24 Days Ago
▊▅▌ `▄▉▄█▌▅█▍▇▋▋▌▅▊▊▍▆▋▆▍█` ▇█▄▅ ▌▉ ▋▇▋▆▄▍▄▊▇▉▌▅▋▉▌▆ ▍▍ █▋▋ ▇█▆ ▄▇▆█▋▅▄ ▇▄▊ ▋▊▉▉▋▌▄▄ ▆▇▇ ▊▉█ ▉▄█▄▊▅▋ ▇▍▉▆▋▊ ▊▍ ▆▉▉▅▅▋ ▆▋█▆ ▉▊▋ ▄▄▌█▋▌ ▌▊▋▍▊▌▌█▊. ▄▇▄ ▆█▅▄ ▌▋ ▉█▊ ▇▇▍▌▅▉▍ ▆▍▊▌▍ ▌▋▆▉ ▊▍▆ ▆▇▉▊▅▆▇▅▊ ▄▅▄▌▆▅▉ ▆▋▄█ ▇▌▅▊ ▇▉▄▇▋▌▉ ▅▌ ▇▅▇ ▋▊ ▌▊▌▇▇ ▆▋▊▍▊▊▆▄▋▉█▌█▆▌▇▊▅▍█▌█▍▆ ▉▅▌▋ ▉▍█▊▄ ▉▌ "" ▍▊▉▇▋█▋ ▌▊ ▇█▋▄ ▌▇ ▅█▌▍▉ ▋▋ ██▉▋██▋▅▌▌. ▌▇▍▊ ▄▌▆▍▄ / ▊▇▌▄▇ ▋▍▆▌▍▋▄ ▍▄▅▆▅ ▋▍ ▍▇▄▉▉▊▌ (#▋▌▊▄) ▊▊▍▉▅█ ▉▇▆▄▉▆▍▅▄▋▍▆▌▇.▍▄▇▍.▋▊▌▆, ██▄▄▉▋▇▅▅█ ▍▊▋▋▉▍█▄ ▄██ ▍▍ ▉▍▆▄▊▇▍▋▉▊▇▍▋▍█▊▆▌▍▊█▇▅▊▅█▇▉▊_▉ ▇▋█▉▉▄▇▊▊▋ ▅▊█▄█▌ ▌▍▍█▌ "▊▉▆▉ ▅▌ ▊▍▅▍▇" ▅▍ ▆▉█▆██▇▉▅▅█▋▌▅▆▇▉█▊▆▋▋▆ ▆▍▇▆▋▋█ ▌▋▉█ ▌▍▇▊█://█▄▆█▇.▋▋▆▊▇▉▊▉▋.▌▅█/▆▆▆▅▅▊▌▊▇▋▆█/▇▇▍▍/▍▅▅▉▇▍█/▆▄_▉▇-▅▌-▆▄▊▇▇▊▅█▇▇██▌▍▄▉▌.▇▄▊ ▊▊▉▋▉▅ ▆▌▍▄▉▆ ▊▋▄▊▉▄▍ ▊▌▉▉▌▋▅ █▍▇▊▅▆ ▆▉▆▊█▍ ▋▆█▇█, ▇▋▅▋▅▍█▄ ▌▇█▋▅▄▋▍█/▊▇█▇-▍▇▄▅█▇#▅▉▆▋ ▆▉▅▆ > ▅▉▇▇ ▄▍▊▇ ▌▌▋▅▊▋▍▇ ▉▄▌▅▇▇▅ ▉▊▉▆█▉▊ ▆▆▍ ▌▉█▄▇ ▆▉▊▉█▆█▇.▋█▉▍▅▅/▊▄▌▋█▌▊ ▉▋▅ ▌▆▉█▅▋▅▉▆▅▌ ▇█▌▍ ▌▅▇▋▋▌▉.█▄▊▍▍▌/▄▆▋▋▋█.▋▆▊▄▅▍/▆▄▋. ▍▆▆▉▄ ▌▉▋▇▋▍ ▇▆▋▉▋▆▌ ▇█▄ █▅▉▍▄▊▅ ▄▅▋ ▉▌▌█▋/▇▇▍ ▍█ ▉█▍▌▅▉█ ▅▆▍▅▍ ▊▊▉▅ ▋▉ ▍▅▇▊▅▍██ ▇▇▋▇▌ ▌▇▍▉ ▄▅▋▌▉▆▄ ▌▅ ▊▊▅▆▍▉▊▌▄▌, ▅▍▆▄█▊▅▅▇▌ ▅▇▉▊ ▅▉▄▍▋█▍▇ ▋▄▇▋▆▅ ▇▅ ▋▄▌▉▌▉ ▌▅▇▅▇▅▊▍: ▄▆▄ ▉ ▄█▉▊▄▉ ▌▌ ▅▅▊▊ ▇▍▋ ▆▅▅▉▄ ▌▉▊▍▊▊ ▄▌▊▌▄▄▋▋▄ ▍▊▄▍▆▊▄: █▊█▊▋ ▇▇█▋▌▋▄▋▉ ▋▊▄▇▉ ▄▅▇▅▉ ▍▊▌▋▊ ▅▅▇▇▋▅▄█▍ ▌▊█▆ ▄▅ ▇▊▄▉▆ ▍▍ ▉▊▉▌/▅▉▍▋▅ █▉▌▊▊, █▊▍ ▇▋▆▄▉ ▌▉▍▇ ▍▆▆▊▇ ▉▊▅▊▊▋▌▄ ▉█ ▅▋▆▍▇, ▇▉▍▍ ▄▅█▋ ▍▄▌▄▍▋▉▋ ██▅▍▆▉▄▌ ▌▅▇▆▋▌▋▊▊ ▉▍█ ▆▇▊▅▄▌▆ ▉▌▋▍▆ ▍▋▋▆▄▍▅▌▉▅ ▄▍▋▆▄▄▇▅ ▇▇ ▌▅█▅ ▌▄▌▇▇ █▄ ▅▆▅ ▆▍▅█▊▋█▅ ▍▅ ▆▊▇▌▌▆▆▊█ ▉▇▌ ▇▉█ ▄▄▋█▄▅▍▊▊▍ ▅▌▌▉▊, ▍▊▅▆▍ ▅▋▄▉▄▅▇▊ ▊▌█ ▉▊▄▉ ▊▊ ▊▌▄▆▍ ▋▌ ▋▇█ ▄▌▉▋▊▅ ▉▆▆▍▆ ▇▌▋▇▄▌ ▉▉▅▌ ▍▍▇▄▇▅▋ ▅▄▅ ▌▋▋▇▋▅▄▋ ! █▅▌ ▇▋█▆ ▍▇▍▍▍▆ ▅▆▉▄▍▆ ▋▇ ▍▌▄▆▋▇▊.▄▇▉▌▋▌▄▄▍▊▅▌▋ ▇▌▌ ▆▅▍▊▉▅▆▌▌▇▇▉▆▌▄▍▄▉▍▍() ▇▄ ▅█▅ ▅▊█▋▇ ▍▄▅▍▋▅▌▊ ▅▌▅▊▄▇█ ▉▋▅▊ ▆▌▅█▌█, ▅▍█▉ ▇▉ ▌▄██▇ ▇▆▄ ▌▄▇█▄▌▊▄▌▍ ▊▇█▋█▉▌▊▆▉▊▆█▅▋▇▇▉▉▍▅/▅▉▅▌▆█▋█_▄▋▄▄█▍▄▅▄▊▍▊▋▄▋▇▉▊▆▊ ▋█▅▉▍▌█▌▇▍ ▆▄▄▆▆▋▊ ▅▍▆▋▅▆▍▉ ▇▇▄▋▋▆▊▆▄▊▉ ▊▉▅▊█ ▆▌▅▇▌▉▉▌ ▍▋█▋▄▍▉▆▅▍▊██▄ ▉▋▊▌▍▉▊ ▅▅▄ ▆▋▉▇ ▅▊ ▋▋▌▅▌▄▌ ▍▆ ▅▅▇ ▉▉▉▅▄ ▅▆█▋▄▉▄ ▅▌▊▇█▆▇▅▄ ▉▆ ▌▊▆▆█▌ ▋▊ ▌▇▇▉▉█▅▋▇▄▋▌▊▆▌▍▍███ ▍▋ ▍▆▄ ▆▊▉, ▋▌▋▉▍█ ▊▊ ▌▆▄▌▇ ▉▄ ▄▇▊ ▉▊▋▆ ▇▄█▆▊▄▇▄ ▉▆▌ & ▉▍▉▇ ▅▍▆▉▅▅▊▇▉▅▇ ▋▌▍▇▋▄▌ ▉▉ ▊▅▋▋▊▆▌▋ ▌▄▋▊█▋▆▋ ▇▄ ▉▅▊▋ ▌▅▆▇▉://▅▅▉▋▋.█▍▊▄▅█▍▍▆.▍▉█/▇▋▆▄▋▊█▍▆▇▌/▍▆▊▉▇▋▋▉/▆▇▄▆▉▅▅▉▌▅.▊▍▋ ▆█▋ ▉▄███▅▋█ ▄▄ ▊▌▉▍▉▅█▇▆▅ ▇█▋ ▍▉▅▉▌▉█▅▋ ▋▍ ▍▇ ▇▇▅ ▅▉ ▉▅█▉▇▍▌ ▉▉██▍▆▇▄. ▆▉▌▇▉▍▍▊ ▍▍▄▊▍▆▋▅▆/▅▉▋▇-▇▇▆▅▋▆#▄▍▋▋ █▉▍▄▌://▉▋▉▊▊.▉█▉▆▇▌▆▋▇.▆▌▋/▉▋▌▅▊▅▌▊▌▊▆▆/▉▅▄▆/▍▉█▊▍▅▋/▌▌_▍▌-▌▍-▆▊▉▍▋▍▆▅▋▌▉▊▍▋▍.▆▆▋ ▆▌▄▋▋▋▆ ▋█▍▄▆ ▊▇▄▊▉▍▊▇ ▋▅ ▋▄▆▋▌▍▍ ▇▌▉▉▆▉▍▍ ▉▍▋▋ ▄█▆▅█▆▆▊▆ ▆▍▉▍ ▍▄ ▄▄▉ ▄▍▆ ▋▄▅█ ▊▇▋▄▋▄/▍▍▊▋▋▉▌▌ █ ▊▆▋ ▅▌▄▊▇. ▉▍▍▍▍▋█▆ ▇▅▋▋▌█▊▉▅/▍▊▇▅-▇▉▅▋▉▇#▄▄▍▆ █▄▄ ▆▅▌▄▄▆ ▅▉▇▇▄▄▉▅▊▅▄ ▌▇▆▅▆▇▋▆▇▇ █▅█▌▇ ▊▌ ▆▉▋▄ ▍▇▅ ▊▄ ▅▄▊▄▆ █▌▍▇▄▌▍▍. ▋▄▋▋▌▋▇▌ █▋█▋▍▄█▍▍/▍▅▉▆-▆▊▊▇▅▍#▆▉▉▇ ▌▌▆▌▊▆▅▉▇▆▅: ▋▇▆▆▆▇ █▍█▄▋█▋ █▇▅▇▊▋▅▇▍█ ▉▌▊ ▆▋▊▋█▋▆▄_▉▇█▄▍▊▌▉▅▆▅█▉▇▇▅▋▌▉▅, ▌▋▍▊▇▊▅▊▆▊▊▍▅▊▍▄▊▇▋▅▆ ▋▌▅██ ▄▌█▉▄ ▉▆▅▆▋▇▌▋▆ ▉▅▇▉▊▅▆ ▍█▆██▅ █▌▅▍ ▋▅▍▉▆▆ ▋▉▄▋▄ ▇▅▊▌▉█▊▅▇ ▇█▆▅ ▅█▅▄▉█▋▆▄▌▉▋▌ ▋▆ ▌▊▍▉█▆▉▆▉▊ ▍▊ ▋▋▋ ▊▇▌▌█▋▄▊▄ ▊▍▌▆ ▇▄▅▋▋▇▆▋▇▍▋.▌▉▆▉█▊▋▄▉▇ ▆▆▌▄▇ █▋▍ ▌▍▉█▆▌ ▉▉▅▍██▄▆ ▇▄ ▍▌▉▉ ▅█▍▍▆▍▅▋▆ ▋▇▌ ▉▋▉▍ ▆█▆▇ ▄▍█ ▋▉▅▆▍▌▌▄█ ▍▆▌▇ ▍▊ ▅▇▋▋▆▇▉▊▌▆ ▋▇ ▌█▉▅█-▅▄▅▇ ▅▊▅▌ █▊▌ ▍▆▍▅ ▄▉▆▍ ▉▇▊▄ ▅▍▆▄▆ █▍▊▍ ▋▌▊▇ ▋▆▄▊▊▌▌.▋▋▊▊▆▉ ▇▆ ▅▊▊▄▉▍▄.█▌▊▌██ ▄▍▅ █▇▋▆ ▆▆ ▇▍▉▌▇'█ ▆▊▋▋▅ ▊█▇▅ ▋▅▇ ▋▌▅▍▋██_▊▋█▆▍_▋▄▄▍_▆▊▉ ▋▊▉▅ ▆▌▅▆▋▊ ▊▄▊▆▇▉ █▅▇▅▄▇▊▊▋▇ ▌▍▄ ▊█▄█▅▇▋▅ ▋▌▅ ▊▅▊▄▅█ ▉▋█▉ ▉▌▌█ ▉▇▍▍▇▌▄ ▆ ▆▄▅▉▊▉▌▊▇ ▋▆▆▉▍▋ ▊▉▇ ▌▄▉█ ▅▊▅▍▊▄ ▋▆▇▍▅█▍▊▌ ▉▌▄▍▋▆▌ ▉▊▍▉▉▇▇▄▄▍▋▋▍██▊▌▋ ▌▄█ ▆▅▅▄▅▋▄ ▉▌▅▋▆▆▄▉▄▄ ██▍▆▍ ▅▋▅▊-▇▄▅▅▅▍/▅█▆▉▌▉/█▉▆▉ ▆▋▍▉ ▋▇ ▌▊▋▆▇▅▅▇▍▇.▌██▍▇▊▍ ▋▅▋ ▋▍ ▅▉▄▍ ▊▋▋█▋ ▉▍▄ ▆▉▇ ▍▊▍▇▍▊█▊ ▄▄ ▆▅▉▋▆█▍▉▌█▆▆▇██▉▉▊▇██▋▋▇▄▅▅█▌▇▊▌▍▌█▉▆▊▉▅ ▄█▇▄▅▋▆▉▍▇▄▌▇▊▊ ██▆▋▄▇▉'▋ ▉▌▇▆█ ▄▌▇▍▅▅█ ▍█▋▅ ▇▌ ▊█ █▆▌▉▇▆▍▅ ▄▌█▌ ▉▊▋▆▋█▋█▄ ▄▅▋ ▅▆▊▄▋ ▄█▆▋ ▄▇▆▄▌▍ ▆▄▋▇▄▋▇▍▇ ▊█ █▍▄▅ ██▄▄▇▄ ▉▍█▍█▆ ▅█▇▉▆▍█▉ █▇▊▄▄▋▇▇▇ ▆▉█ ▅▉▉▌▅▍█ ▍▊ ▅▇▇ ▊█▆ █▍▅▅▉▉▉ ▋▅▋▍ ▄▊▋▆▉ ▅▇▍▅▉ ▌█▇▇█▉▌▆▄▆ █▉█▍▇▅▄▄▍ & ▉▌█▄▅▌▌▅█▉▅ ▍▋▇▋ ▉▉▌▌▄▄ (#▊█▅▉) ▉▉▅ ▌▌█▄▇▍▉▊█▇ ▅█▊▇▇▋ ▌▆▊ ▅▋▇▌▇▆▍. ▍▌█▇▉▊▇▊ ▇▉▄▄▊▌▌▄▅/▅▊██-▊▆▋▆▆▌#▇██▄ ▅▌▇▍▊ ▆▄▌▉▅▍▍ ▌▊ ▋▉▌▇▊▆ ▊ ▊▌▉▇▊ ▋▅ ▆▋▍▆▌▉▍▅▇▌ ▅▋▄▇▅▆█▊█. ▄█▊▍▄▋▆█ █▄▋▊▄▉▍▉▋/▅▊▅▇-▊▉▆▍▅▌#▅▇█▉ ▄▊▅▊▊▉▋▍▉▊▄ ▉▅▉▆▅'▆ ▅▋▇▅ ▌▉▅█▌█▄▌▌ ▄▄▍▉▊▍ ▌▍▆▍▄▆▅▉▆▅█ ▋▋ ▄▊▍▊▄█▆ ▅▄ ▆▌▅▋'▄▊ ▉▄ ▉▉ ▌▇▆ ▆▍▋▇▌▊▄▍ ▆█▊▇▌▆ ▅█▍▅ █▌▌▋█ ▌▆▆ ▉▍▆▊▌▌▇▋ ▇▄▌▊▉▉▄ ▄▍▇██▅▇ █▉▉████ ▉▉▍▅ ▊▅▄ ▋▊▉▌▍▅ ▌▅▉▆▊▌▋ ▋▋▄▇ ▌▄▅▉, ▊▄ ██▌▆▋█ ▍▉ ▌█▄▇▇▌▊ █▍█▆▄ ▇ ▌▉▋▊▌█▊ ▇▉▄ █▄▊▄▇▄ ▌▅▊ ▉▊ ▋█▊██▅ ▊▇▅▊▆▊▊▊▍ ▅▊▍▍▇▆ ▇▇▉▆▊▋▇█▅▇▊ (█▋▅▅▄▅▇ ▇▍ ▍██▅█▍█ █▍ ▆▅▊▆▇ ▇▄▅▆▋ ▇▇ ▌ ▄▆▊▅) ▍▉▋▄▉://▊▊█▆▌.▍▇▋▋▇▌▉▌▆.▍▆▇/▋▄▍▍▉▍▊▄█▅▉▆/▄▍▊▌/▊█▄▌▄█▄/▋█_▄▄-█▇-▅▄▋▍▉▌▋▅▉▄▊▋▆█▌▌█▊.█▅▊ ▅▋▍█▆▆ ▍▆_██▍▅▋_▇▅▌.▇▉▅, ▍▋▅▇ ▇▄ ▌▄▆ ▌▄ ▇▉▆▊▍▆▋▉.▆▉▋▌ ▅▊ ▋ ▉█▅▊▄, ▄▅▇▆▍▄ ▇▉▇ █▅▋▇▇▄▇▍ ▄_▇▌▄▌_▆▉▅▌▍_▋▉█ ▇▍▉▋▍▆ ▆▄▋▌▌▅▅▌ ▇▄█ ▋▉▇▊█▋▋▄ ▆▌▋▄▄ ▅▊ ▄▍▄▆▅▉█▌▅▍▆▉, ▄▌▋█▅▅ ▇▅▆▆▌▍▅▋▋▊▇█▍ ▊▊▆▅▆▌▅▌▍ ▇▊▆▋▅ ▅▋▅ ▉█▊▍ ▋▄ ▇▋▄▄▅█▌ ▋█▊▍ ▉▍ ▋▊▉▉▄▇ █▋▉▍▅▋▍▍ ▊▅▍▋▄▍▊▍ ▇▅▋▍ ▇▅▊ ▅▉▋ ▉▆▍█▍▌ ▊▉▆ #▆▋ ▌_▍▆▅█_▅▉▉▌▍_▊▆▌, ▇█▌▄▍ ▇▅ ▇▇▇▅ ▋▄ ▅▅▄▅█ ▊▇▅▉▅█▌▍ ▍▄▊▋ ▋▍▄ ▄▅▉▄▊▉ ▍▄▇ █▉▄▇█▄▇▉ ▋█▍▌▋ ▋▆▇▅ ▄█▄▋▊ ▊▆ ▋▍▄ ▊▍▉▌▋▇ (▋▄'▉█ ██▌▋▄▍▆▍ ▅▇ ▇▇▋█▉ ▉▄▉▌▍) ▌▊▉ ▄▋▉▅▊▆ ▉_▍▋▊▍_▊▊▉▇▋_▊▇▆ ▉▉▊▆▆▅▇▆▇ ▅▆ ▉▉▋▍▌▍▉▌▊▋, ▊▇▊▊▌ ▋▍▍▊▌ ▅▊▉ ▅▍ ▇█▇▄▆▄▆▋▉▄▇▌ ▊▊█ ▆▌▊▉▍▆▄▊▇▇█▆▊▇ ▅▍▄▊▄ ▉█▅ ▋▇▊▇▉▄.▉▉▍▆, ▇▅▊▆▍▍ ▅▋▇ ▌▍ ▋▌▌▉█ ▇▅▆▅▊▅▍▄▅▆▌▊ ▊▍ ▅▌▇ ▅▌█▊▍▄▄▉▇▅▊ ▆▍▉ ▌▋▅▋█▆▋▉, ▅▆▊▄▊ ▅▉▄▇▊▄▇▊▍▄▌█▄▆▊▇▍▆ ▋▅▋▄▌▉▆▋, ▊▊▉▊ ▆▍▌█▍ ▍▆▌ ▍▅ ▊▍▌▋▆▆▇▄.▄▆▆ ▍▌▍▍ ▄▋▉▅▍▇▊▄ ▇▌▌▊▊ ▆▋ ▅▄▇▊ ▉▋ ▅▄▆▍ ▇▊ ▊▇█ ▆▅▌▉▌▅▊▋▄, ▋▍▍▉ ▍█▉▋▋▆▅▅▊ ▆█ ▅▌▊▇▅▉ ▋▄▊▍▉▊ ▌▅▇▉█▇▆▌▉.▌▊▅▋▇▊▌▇▆▆▊▍ ▇▇ ▍.█.▇▊ * █▄▌ ▆▊▇▋▋▉▇▊ _▊▌▇█ ▌▇▆▉▊▋▌▌ ▊█ ▊▌▋█▋▇ ▅▅▋▌▋ ▊▉▄▋ ▍▊▄█▋▉ █▆█▉▄ * ▋▍▋▌ ▉▅▅▋▍▉ ▄▇▌▄▉▉ ▄▉▊▅▋▆▋ ▊▅▋ █▍▍▆▊▆▍ ▊▊▅█▌ ▆▊▉ ▌▄▆▍▆▆ █▅▄▇▊ ▌▇▇▉▅▄ ▋▋▋▆ ▌▋▌▋ █▅█▇▄ ▆▇▍▊▍▅▉ ▊▌▉▍▌▌▌▍ █▉▇▅ ▄▇▄█▍▆ ▍▇ ▇▆▌▅▄▋▍ ▅▇ ▌▊█▇ ▊█ ▍▆▋▇▍▌▍▆ ▌▋▆▇▋▅▌ ▄▇▍▌ ▅█▄█▍▄, ▍▊ ▉▉▌ ▍▋▇ ▍▅▆▆▍ ▍██ ▍▍▇▋█ ▆▄█▌▇██ ▉▍▍▌▌▇ ▄▆▇▋▄▌█, ▍▋▄▊▋█▍▇ ▋█▄▄▅ ▊▊▊▅▊▉ █▇▌▍▆▇▇ ▉▍▆▄▆▍▉▆, ██▄▋▄▌▉▅▌▉ ▌▋▊▋▇ ▉▆▄█▇ ▅▅▌▋▇█ ▌▄▅▊▅▅▉ ▌▅▆▊▇▉▋ ▍▆▄█ ▇▊▊ ▌▉▊▋▆ ▉▅▅▆▊▆█▊ ▍█▍▅█ ▊▆▌▉ ▅▍ ▍█▋█▍▅▇█▊ ▋▍▉█ "▌▌▊█" ▋▍ ▊#, ▇▌▍ ▋█▆▌▄▊█▌▇█▋.▌▌▌▋▅▄ ▆▋▋▍▍▍▉▆▉▄▋▅ ▊▉ ▉▅▉ ▍# ▍▋▇▇▋▆ ▍▊▅▋▄▄▌▋▉▌▇▊▄▍▋▉▋▉█▊ ▊▊▋▌▅▋ ▆▌▋█▋▌▄▉▄▇▌▋▆_█, ▅▄▊▋▅▍▄▉▆█▍▋▍▅▊▆▍▆_▉ ▆▌▄'▍ ▄▄▉▉ ▉▍█▊▍ ▆▄█▉▄ ▍▋ ▆▊▊▊▆▉ ▄▍▌▌▋█▊▆▍▊▅▅▉▋▊▇▉▊ ▌▋▄█▌▋▅ ▅▍█▇▊▅ █▊▉▄ ▊▋▊▅▍▄ ▋▆█▆█▉ ▆▅▌▄ ▄▋▉█▉▄▅▊▊█ ▅▍▇█▋█▄ ▊▍▊▌█▌▊▆▅██ ▋▊▋▇█▉▄ ▊▅▄▉▉▉ ▍▉▉▍▌▍▍ █▍▉▉ ▅▅▅▉▍▌▆▇, ▊▋▍▍▋▌█ ▋▇▅▆▍▅ █▅ ▌▍▆▋█ ▆█▄▋▅▅▅▆ █▉▊▇▌▅▌ ▌▄▉ ▌▅▇▆▊▆▊▉█▊▄.▆▊▊▄▋▅▆▊▆ ▌▉▊ ▅▇▌█▍▅▍▉▇▌█.█▊▅▍▋ - ▋▄▉ ▊█▆▅▌▄ ▆▄▄▊▅▋▊ ▆█▅ ▍▋▌▋█▉▄▋█ ▅▆█▊▅█ ▍▅▆▍▅_▍▅▍█▋▄▌▍▅▄▋▅▅▍▄ ▍▌▇▅▅▇ █▋▋▋▋_█▍▅▅▊▇▇ ▇▅▋▌▇▍ ▇▊▅▉▇▇▄▇▋▄█▄▌▅ ▋▋▉█▆▊ ▍▊▍▌▍_██▌▋▋▇▅ ▉▇▋▉▆▌█▇▊█▋▌▊▅▌▆▉▉ ▊▆▉▋▄▋▊▆ ▊ ▌▍▆▉▍▋, ▇▉ █▇▆ █▊▄ ▍▍█▌▅▅▌ ▊▅▆▆▅ ▄▉▋▇▍▍▍ ▆▉▇ █▍▋▅▇▉▇▌▇▅ ▍▆▊▋ ▉▌█▅▋▆▌ ▍▇▌▊▋▋▅█▇█, █▉ ▉▉▉▅ ▄▌▇ ▆▇▍▄▅▌▍ ▄▋▄█▌█▇▉█▉ ▍█▉▋▆█▍▊█▋▅▅.▄▋█▇█▍█▄ ▆▊▋▌▊▇ ▇▌▊▍▅ ▍ ▅▍▅▉▆▉ ▍▌▍█▋ ▅▋▍▋▆▄▉ ▄▇ ▄█▇▇▋▋ ▄▌▄▄ ▄█▉ ▅▄▄▊▌▄ ▍▄▊▄▋▍ ▊▄ ▋▊▄▌▄ ▍▌ ▍▋▊▌▌██▄▌ ▍█▆▊ ▊▍_▊▊▅█▄▇ █▇ ▉█▄▊ ▇▅▄▆, ▍█ ▊▆ ▆▇▌▄ ▊▉▍▋▅▇▊ ▄█▌▄▇▊ ▉▍▉█▇▅▇▋ ▌▄▍▌.▊█▋▍ █▊▇▌▅▌▉█ ▊▆▆▋ ▄▆█▅▊▉ ▇▉▅▋▍▆ █▆▋█ ▄▍█ ▌▍▄▄▆▊▉ ▉▋▇▅▌▄ ▍▊▋▊▊ ▋▆ ▅▄▅▌▊ ▋▅█▍▄▅▇ ▋▌▇▋▄▅▆▉▄▍▊ ▆▍ ▍▌▆▋█▅ ▋▆▋▆▋▌▅▇█▉ ▄▉▊▅▋▅ ▆▊▍ ▋█▇▅▅▅ █▌▌▋ ▌▌▋█▍▇▄▍▉▉▍▌.▋▋▍▍█▄▄▆▌▉▊▋▋▊█ ▅▉▅▇ ▍▇▊▊▋▇▄ ▋▌▊▅▊▄ ▄▍▋▉▆▅▋ █▌▊▍▇▅ ▍▋▆▍▍▇█ ▅▍█▄ ▅▆▊▇▆▆▉▊▌▊▋▋▍▌▌ █▇▍▅▊▋ ▆▊█▇█▍▊▋▆▍▄ █▊ █▄▉█▅▉▅▆█▉▅ ▍▆▄▅▍▄ ▆▌▌▇ ▌▊▅▍ ▌▇▌▍▊▋ ▋▇▇.█, ▌▌▍▌▉█ ▉_▌▄▇ (▇▆▌▉ ▌▅ ▊▅▉▆ ▉▇ ██▆▆ ▆▆▌▌▇▊▍.. ▉▆▄▅█?) ▇▇▌ ▄▉▌▊▊█▇ ▄█▄▊▋▄▍██ █▉▇▆▆▄▆ ▍▋▆ ▇▆▋▄ ▆▋▅█▉ ▌▊▌▊▋▌▅ ▇▋▋ ▌▌▊▋▉ ▊▌▄▅▉▍▆▌▌▇▅ ▄▇█ (▋▌▊ ▊█▊▌ ▊▌▉▇ ▄▋█▆▍█▋) █▆▇▇▊▄ ▍▉▉▋▄▇ ▉▋ ▌▍▄▌▅▅▅▅▋▄▄▉▋█▆, ▋▊▌▌█▉▄▄▇▅▉▋▌▄▄ ▉▉▍▉▅▋ █▇▋▆▉▇▉ ▆▇▅▆█ ▇▌▅▅█▅ ▆▌▌▊▊▊█▇▅▊ █▉▉▆▆█ ▇▆▅▉▍▆ ▉▋▍▄▇ ▇█▆▍█ ▄▌▇▇ ▌▋ ▋▅▌▅▅▌▌, ▌▊ ▄▅'▌█ ▍▄▌ ▆▍▆▅ ▋▊▆▅▌▍▊ ▄█▋ ▌▍▉▊▉▍▋▋▅▊ ▍▅▇▇ ▅▉▋▄▇ ▅▉█▅▋▄▅ ▌▊ ▆▆▆▋█▌▅▅▆ ▌█▄ ▅█▌▊▅ ▊▆▍▍ ▇▅▊ ▊▇▅█▌▌ ▊▇▄ ▅▉▌█ ▅▋█▅▄▇▍ ▊▇▄ ▅▊█▊▇▌▍▊ ▍▄ ▉▅▄ ▋▋ ▇█▅▄▍▄ ▍▍▅▍▍▋▋▍▄▅▄▇ ▇▍▌▇▅▆ ▉▄█/▉▋▌▄▊▋█▊ ▌▋▊▇ ▄▆▊▇▊█▅▆▋▍, ▍▉▌▋ ▋▍▄▆▍ █▍▉▇ ▅▆▌▆▍▆▇ ▅▇▇▍▆▋▅▍█▋ █▌ ▋▊ ▌▇▆▌ ▍▉ ▉▉ ▌▅██▍ █▄▌▅ ▅▍▇▋▉ ▅▌█ ▄▋▄ ▋▆▄ ▄▌▋▇▍▉█ ▍▊▋ ▉▉▆▉ ▌▋ ▊▍▊▉▆▌▇▌▇▆█ █▍▋ ▉▌▊▄▇▉▆▅▅▆▋▅▆▊▆▄.▌▆▊▆▅▅▅▊▋▆▉▌ , ▄▋▅▄▄▍▆▋▌▅▅▆▉█▋█.▋▅▉▊▊▆▇▆▋▋▊▇▋ ▍▆▅▄▇▅█ ▄▋▄▇██▅▋ ▄▇▊▊ ▇▊▌▊▊▍▆▋ █▍▆▇▆▌▄▌▍ ▄▆▆▇▇▇▄▄▅▆▅▅ ▊▅█▄▄ ▄▄▅▊▉ ▅▅ ▇▄▅▉▋▅▊▇▆▌, ▄▅ █▆▄▇ ▌▉█ ▊▄ ▊▋▋▋▇▆▋▄▋ ▆▉▄▅▍ ▇▆█▇▄ ▊▋▌▌▅▇▉▋▄▋ ▆▅▄█▄▋▆▇▋█▍▌ ▇▉▉▉ ▄▇▇ ▋▅▇▅█▄▆▋▍, ▊█▋▉▋▆█▄ █▊▄▅▄▌▊ ▍▅▋▇▇▆▊▆ ▆▇▇▊▌ ▍▉▇▋▄▆, ▊▇▋. █▄▅▄ █▄▇▆▅ ▊▆▋▆▇▆▍█▋▄▅█ ▅█▊▉▅ ▌▆▇▅▌ ▅▇ ▆▋▋▆▆▋▉▌▄/▆▊▇▅▋ ▆▄▌▉ █▉▅▆▆▉█ █▇▅▅▍▍ ▋▄█ ▄▊▉▊▅▄▉▆█▌▌▇██▊▆▉▉.▇▉▅▍█▆▌ ▌▇▇ ▋▅▆▌▆ ▋▊▉ ▉▅██▄ `.` ▍▋█ `-` ▋▅ ▄▍█▌█▇█ ▉▇▄▆▇ ▌▇▊ ▅▉▇▊▍▄▊▋ ▄▊▇ ▅▍▉▅▅▄█▊▋▇▌ ▌▋ ▌█▋█▉▇▆▇▅▋▍█ █▋▌▄▇://▆█▆▄▆.▉▄▅▍▆▌▅▉▆.▆▊▊/▋█▇▆▅/▊█▍▍▅▉▋▋/▆▊▊▇-▅█▊_▊▉▍▋▆▊▅▇▅▉.█▋▋ ▌▄▇ ▊▅▄▋▋▅▆▇ █▇▅▍▆ ▉▆▅▋▍▄ ▅▉ ▊▍▉▉▅▋█▋▌ ▍▍▆▆ ▍▆▅▋▍ █▇▊▆▌█▅▄▊: ▇▇▍▌▋▌ ▋▄▅▉ ▆▊▇/▌▊▉▇▆ ▋▍▉▄, ▍▄▄▉▌ ▍▇▄▄▇▄▅▅ ▇▍▅▅▇▉▌ ▄▉█▇▅█ ▍▊▉▆ █▅▄▇▇ ▌▋▆▍▌▋▄ ▉▌▉▆▋▆▊/▆▄▇█▋▍ █▉▋██▍▊ ▉▋▌▍▄▌▍▄, █▍█▊▅▄▄▉ ▋▌▊▋▄▆▅▅▊/▇▇▍▆-▍▌▉▌▅█#▋▄▊▆ ▍▆▉▋ ▅▌▋▊▌▇▍▍ ▉▋▆▊▇▉▋▆ ▊█▄▋█▅▍▌ ▍▊▆▉▅▊▋█ ██ ▄▆▍ ▋▉▊▆▍://▆▋▊▉▅.▅▆▇▉▉▆▌▇▍.▍▍▊/▆▄█▌▌/▍▋▅▌▉▉▇▌/▌███-▌▅▅_█▉▄▇▌▄▆▆▊▅.▄▆▍ ▅▇▉▌▅ ▇▋▌▇▆▊ ▊▍ ▋▊▌▇ ▌▅▋▋▅ ▊▍▄▍▌▋▉▉▋ █▇▇▋ ▉▍▉ ▇█▇▇▅▆█▊▌. ▇▊▇▇▆▍█▅ ▍▊▉▌▅▉▄▆▌/▉▅▇▊-▍▄▍▋▉▊#▇█▄█ ▉▇▅█▄▅▅█▉▌ ▅▌▌▇▋▅▍▇▄ ▆▋ ▆▇▆█▉█ ▊▋▇▄▋▌▆▍█ ▍▄▄ ▄▊▅▊▉█ ▄▅ ▉▍▇▊▄▇. ▌▊▇▄▍▄█▊ ▉▋▅▋█▍▊█▆/▅▍▇▍-▉▉▊▌▌▇#█▍▊▇ ▊▄█ ▄▉▊█▄▍▉▇▅██▋▍▄▉▄▋▆ ▋▋▇ ▆▅▊▅▅▊▄▋ ▍▇▉▋▄▍▄▋ ▋▄▍▋▉█ ▅▅ ▄▌▆▌▌▍▄▍▆▄▌ █▍▇▍▇█▊▅ ▄▍▄▍▅ [█▇▍▅▌▍▋▋▍▉] ▄▆█▅▌▄▆▉█ ▍▅ ▊▌█ ▅▊▆ ▍▆▅▆ ▄▌▅█▉▄ ▍ `▅▇▆▄` ██▆▊ ▌▇▌▅▋▇▊ ▍▄▌█ █▄▅ ▊▌▉▌▆▄ ▇▇▋▆. ▄▇█▅▋▄▅▇ ▆█▋▍▅▅▇▌█/▍▄▉▄-▉▍▍▊█▉#▊▅▆▆ ▉▊▉▅▇ "▍█▆▍" ▋▅▅▉█▋ ▋█ ██▉█▆▅▅████▆▉█▅▄▅ ▅▇▉▍▍▌ ▍▊▄▌▍█ ▇█▍ ▋▅▆▋▊▌ ▇▉▇▋▍ ▉▄ ▍█▆▍▄ ▇▇▇▅██▉ ▊▌▆▆▅ ▍▄▍▉ ▉█▆██▇ ▌▌ ▅▅▄▇▍ ▊▉▉▄▇▍▅ ▉▉▊▋ ▅▄▍ ▄▆▆▌▍▉█ ▇▄▄█▊▄▉▉▍ ▇█ ▅▊▅▊. ▊▅▉▄▌▍▍▋ ▉▆█▇▋▉▍▇▄/▌█▇▉-▉▉▋▍▊▍#▊▇▆▍ ▇▌█ ▉▄▆▌▊, ██▆█▅▅, ▊▌▄ ▍▍▇▇▅ ▌▄ ▄▉▌ ▄▆▄ ▇█ ▆▆▅ ▉▆▍ ▍▅▆▅▄ ▍▇▅█ ▉▇▋ ▍▊█▌-▊▅-▍█▉█▇▋. ██▄▌▆▌▄▄ ▉▄▄▋▅▅▅▍▋/▍▅▇▋-█▄▋▄▇▊#▍▉▌█ █▌█ ▋▉▌▉▍▉█▆▅▍▉▊▋█▍▄▊▉▆::▄▄▍▇▆▋▌▆▅▉▋▉ ▊▍▋ █▊▄▆▄▊▌ ▉▆▅▅ ▇▊▅▄▉▅ ▍▅▌▇▋▆▉▋ ▄▆▇▋██▍▊, ▄▍ ▇▄█ █▊▅▉▊ ▆▄█ ▆▄▅▄▊ ▉█ ▅▇▋██ █▄▇▉▋ ▌▋▆▋▊▆▊.█▊█▉▊ ▌▄▍█▇▌▆ ▅ ▋▋▌ █▉▊▅ ▍▉▄█▆▉▋▌ - █▌▋▊▋ █▉▍▅▍██ ▋█▄▅▅▅ ▇▄▄▌ ▌▅▍▄ ▋▍▊▍▆▄▅▅ ▉▊▉▆█▋ ▆▋▋█▄▆█▉ ▉▌ ▇▅▆▊ ▋▊▍▉▊▋ ▋▉▇▅ ▋▇▆▉▍ ▇▉▍▊, ▊▌▇▅█ ▅▊ ▊▆█▋▊ ▅▌▉█▌ ▋▄▉▋ ▄▊█▊▋▊ ▍▌▉▅▆▇ █▊▋██://▉▇▍▄█.▄▉█▊▉▊▅▄▊.▉▇▍/▉▅▌█▋/█▋▌▊▇▉▇▊/▆▋▄▇-▆▊▉_▊▉▊▌▆▄▅▇▋▉.▉▋▄ █▄▊▉ ▄▌▍▆▆ ▌▋ ▄▅ ▍▆▍▅▊ █▌▋▇▄▉ ▄▆▊▇▇▄▄▋ ▌▆▆▆▅█▇ ▇▋▇█▋▌▌▅▅ ▌▇▊▌▄ ▌▆▅▍▄▉▋▅ ▉▌ ▅▋▍▅▌▋▄▋▊▆▄ ▅█ ▍▇▋ ▆▅ ▉█▄█▅▊ ▄▄▄▆▅▍▊ ▆▅█ ▆▍▌▊▇▇▌▊▍ ▊▄▊▌▆▊▇ ▆▊▊▅▌▊▉▆++ ▅▋▊▋▊ ▊ ▊▌▍▍▊ ▇▌▊▌▅ ▉▇▉▉▊▇ ▆▌▉▌ ▊▄▉▄▉▉█▊█▉'▊ ▅▄▆▍ ▆▋▌▉▇█▊▋ █▉█▅ - ▍▊ ▌▉▌▆▌ ▄▊ ▆▌█▅ ▍▆▅ ▆▉ █▇▆▊▇▉█▇▅▇ ▄▆▅ █▄▇█▍▊▄▌▍▆▆▆▄▌██.█▆▉▉▍▅▅.▍▇▆▆▅▉▄█ ▍█▅ █▇▋█_▆▉▆▊▉ ▅▍█▇▋▍, ▌▋▄▉ ▊ ▅▇▍█▅ ▋▇ ▍▆▍ ▋▆▋▍█▅▊ ▍▄▍▆▆ ▊▄▍▌ ▍▉▅ ▊▆██▋▍▄▇▆ ▇▉▆ ▇▇▊▇▋▊█▆▌ ▅▋▄▉█▌▋▌█▆▌: ▋▌▊'▊ ▇▌▍▍▇▋ █▊█ ▋▍▌ ▄▊▆▆█▆▆█ █▇'▌▇ ▅▇▉▌ ▄▋█▉▋▍▄▍ ▊▉▌▅ ▋▄▉ ▌█▍▋▅▆▄ ▇█▉▅▅▍▍▊ ▋▄▅▉▊▋▆ █▅▄▊ ▇▉▍ █▄▋▇ ▌▄ ▍▆▉ ▇▉▍▇▍▍▊▋, ▅▄ ▄▋▌▍ ▅█▋▉▍ ▋▊▉▌▉▇▄ ▉█▋▅▌▊ ▉█ ▌▄▊▇▆▉▉▆▉▇█ ▅▊▄ ▉▍▄▉▍█▍▌ ▊█▍▍▇ / ▅▍▄▅▇▆▇▅▅ ▌█▆█▆▇▄ ▉▄: ▆██▍▌ ▄▇ ▋▄▉▄▇▅▇ ▇▅: ▇▇█▅▅▍▆▍▇▄▊▆▉▅▉ ▋▅█▋▉▍▆▅, ▍▌▊▅▋▄ ▌▊▄▌▆▌▄▉▇.▍▆ ▅█ ▉▌█▄▅▌▍▆▅▋▊▌▅▅▅▉▇█▋█▍█▇▊▇▇▇▉▆▋▉██▉▊▆▉▌▉▆ ▌▌▋▍█▄▄ ▊▌▄▄() █▉▊▉, ▅█▌▊▌▉ ▇▄▇▅▅█ ▊▉▌▍▉▍█▊▅(!), ▋▇▅ ▇▆▊▊▅▋▄ ▍▋▄█▌▋▅▊▊█▋ ▇▌▆▊█▅▍ ▄█▉▅▍█ "▇▄▊ ▇▉▍▊ ▌▊▄▅▊ ▊▄▄▆▇▆▋ ▅▇█ ▉▌▊▌█ ▋▅▆▉▌▋▉▅▋▄▌ ▅▋▋ (▌▊▋ ▅▄▋▄ ▍▋▅▆ ▇▌▄▌▉▋▊)" ▋█▍▋ ▇█▇▌▄▍▆ ▆▉▅▄█▉ ▋▋▋▊▄█▌▇▅▆█▍▉▆▆▇▅▇▆▌▄▆▆▋▆▋▄▊▉▉▅▇█▉▅▋▍▄▊▄. ▅█▆▆▍▌ ▉▋▄ ▌█▋▋ ▉█▉█ ▄█▇▇▅ ▋▉▄▅ ▉▍▅█/▇▄▊▆▊▊ ▄▄▋▇▅ ▇▊ ▊▅█▉▌▅ ▉▆▌▊▇▊▍▋▊▅▌ ▆▉▉▉▉█▄▉ ▌▌██▇▄▅▍▉/▄█▊▉-▋▌▉▅▉▇#▇▉▋▍ ▇▍▌ ▅▉▋▄ ▅▋█▄▍▇▄▌▉▊▅ ▋▇▊▅ █▆▉▋▄▇▍▄▊▄▅▌▅██ ▍▉▅▉▌▋▆▉, ▌▉█▇▍▋▆ ▌█▆ ▅# █▊▊▌ ▋▋▅ ▊# ▋▍▌█▍█▄▋ ▉▉▌▋. █▆▋▋▅://▉▄▍▇█.▅▋▊▄▍▌▇▋█.▋▊▅/█▉▍▅▉▌▍▍▊▆▉▉/▋▅▌▍/▊▅▋▆▇▇▌/▅▌_▍█-▆█-▌▅▄▄▇▌▅▋▄▄▅▄▇▋▌▅▄.▆▋▍ █▄▆▄█ ▋▅▋▌▆▉█▊▉▌▅█.█▇▇▊▅▉▅▉▅▍▉▍▍▋▊▊▆▍▋▌, ▄▊▉▋█▍▋█ ▊▇ ▌▌▋▊▊. ▌█▆▆ █▅▉▇ ▌# ▉▌▌▉▍▋█▉ ▄▆█▌▌ ▊▆ ▆▌▊▌▋▅▊▅▆▄, ▋▆▍▋▇▋▉▇▊, ▅▉▄ ▆█▍▍▆▌█▆▌▄▋▍ ▍▊█▊▉▋▌▊▉▉. ▆▉█▌▋▉ ▍▉▅▉ ▋▆▉ ▅▍▌▌ ▌▋▄▆▋ █▄ ▋▊▇▌▋▍▆▌ █▊▆▇▉█▄▍, ▆▇▌▆ ▆▋▄▆▊▋ ▌▄▍▉▇▉▅█ ▄▄▅▄▋ ▆▆▌'▋ ▌▍▊▆ █▋▌ ▋▌▌▅▋▍▊▄ ▆▄▅▆▍▍▇.. ▋▅▅▇▄▋ ▆▉▊▄▇▄▅▇▄█▇▆▅▋█▊ [▄▊▅█▅▌▋] ▄▄ ▍▋█ ▅█▅▅.▋▄▉▆ ▆▅▇ ▌█▋▅▉▋▍ ▋▆▍▅▅█▆▉▊ [█▌▉▍▇▇]▊ ▆▊▇▆ [▉▄▆▅█]▌ ▆▆ ▍▇▊▅▇▅▅█▉▍▆▊▌▅█▅ █▋▅ ▄█▌▉▉▆▉█▋▄▌ ▋▆▆▄ ▊▆▋ ▋▅▌▅▌ ▅▆▇▊ █▇▉▅▊▊ ▋▆▋▅▌▅▍▌ ▊██▊ (#▆▍█▌) * ▉▆▇▋▉▇ ▌▉▊▆▅▉▅▄ ▅▌▅▄ ▉▍▆█▇▊▌▇▅▋██▍█▆▉▌, ▇▋▍▅██ ▅█▊▍▇▊▊▆ ▉▉▆██, ▊▄▌▋ ▍▅ ▅▄▅▅▇▋ ▇▉▆▌▅▅▍ ▄▉▄ ▄▋▋█▊▉█ ▌▍▋▄ * ▋▍▌█▄▄ ▍▆▇▍▇▆▅▍() ▅▇██▇ ▇▇▍▉ ▄▅▄ ██▊▊▇▆▉ 🙏🏻 * ▋▉▊█▇▅ ▅▍▌▅▄▊█▉█▉▅▄█▊ █▋▌ █▌▇▄▊▉▊▋ ▊▄▋█ ▇▉▍▄▇▅█▉▋█▇ ▊█▍▍█▉▍▉ * ▅▄▋▅▊▄ ▅▉▇▅██▊▋ ▅▄▄'▆ ▍▄█▄ ▅▄▍█▋▉▊▊▅, ▅▋▉ ▉█▊▇▇▄ ▅▊▄▇▇▄▋▌ ▇▌▌▆ ▉▌ ▅▅ ▌▋▆ ▅▆ * ▉▍▋▍▆▊▄▅ ▋█▊▌▍▌▌ ▄▌▋▍ ▋▌▆▋▋▍▊▍ ▇█▉▍▅▅▋▊ ▋▆: █▄█▊▋▉█▆▇ ▊▍▆▅-▍▍▆▇█ `▆▅▄▄▊▊▋▋▅▉▉▋.▅▆▅▋█▊▉▅▅▊▇▉()`, ▉▍▄▅▆▉▍ ▌▌▇▇ ▉▅▇█▋-▍▍█▌▊ `▊█▊▅▇▉▆▋▆▇▉▌.▉█▊▊▉▉▉▉▊()` ▍▌▌▉▊ [▄▆▋▆▆▆█▌] ▍▉▇▍▌▄▊▄▉ ▄▋▋ ▊▍▋▄▇▇ ▌▆▍▋▉▋▉▋▉▄, ▍▍▄▆▇▋█▅ ▇▉ ▊▉▍▉ ▇▌▅▌▄▄ █▋▌▌█▅▌▆▍▉█▅█ ▊▅▉▍█://█▌█▊▋.▋▋▆▇▇█▊▊▋.▋█▉/▆▅▆▌▅▌▆▅▋▅▉▅/▆█▋▍/▊█▅▉▌▍▄/▄▆_▌█-▌▆-▌▊▇▍▄▌█▊▊▆▍▆▉.▄▊▆ ▄▄▍▊▋ ▄▇▉▍▋ ▆▄▅▉▇ -> ██▌▌█ ▅▅ ▆▉▆▆▍▅▅▇▇▍█▌▅▋▉▅▉ ▌▇▌▄▆ ▊██▅▍▉▋ ▊▅▅▅ ▍▌ ▇▇█▄▅█▉█▆▉▇▇▉▍▇▆▄▅▇▅▍ (▍▌▌ ▌▅▉▉▊, ▌▆▋ ▆▍▅▋▅▋▅ ▇█▌▇/▌▅▋█, ▊█▇) .▅▄▌▋▌█▉▊ ▆▍▌▄▌█▇▉▅▊▋ + ▉▅▆▍▍▊▅ ▉▍▊▄ ▋▍▅▆▋▅ ▍█▄▊▆██▅██▄ ▍▉▉▊▋▌ ▍▅▌▅▌▅▋▍.▉▍▅ ▅▍ ▍▉▋▅▊▊▉▄ ▆▋ ▌▋ █▆▄▊█▄█.▍▄▅▅▍▄▄ ▇▇▋▊ █▇▍▉▉▉▅▇ ▍▄▆▋▊█▄▇▇ ▌▊▆▅▍ ▋▆▌▋█▌▅▊▆ ▅▇ ▊▆▉ ▋▍▋ ▉█▄▅█://▋▆▉▊▌.▊▊▉▋█▉▉▉▋.▊▋▄/▇▆▇▋▄/█▍▅▉▉█▄▄/▌▄▋▇-█▊▆_▋▍▉▍▋█▌▅▋▍.▍▆▄ █▄▌▌▊ ▊▋▉▉ ▇▄▅█▊▊█▋ ▅▇ ▄▉▇█ ▋▇▍▊▊▌█▉, ▉▆▄▉ ▋▆ ▍▊▌▌▊▆▉█▋ ▇▌▅▋▍://▋▊▅█▅.▊▅█▋▄▅▊▄▌.█▍▇/▄▌▅▌█/█▆▌▅▌▆▊▊/▋█▅█-▋▍▄_▊█▄▅█▍▌▋▄▅.▋▍▋ ▄▋▇'▉ ▅▇▆▍ ▊▄▌▌▌▅▆▊ ▉▊▄ ▉▌▋▊▌▄▇▉▊▉▌ ▍▄▆▌ ▉▄▅▉▆█▊, ▄▍█▆ ▆▊▌▉▄█ █▋█ ▌▆▅▉█▌ ▋▉█▌▄://▋▊▍▉▆.▉▄█▊▌▋▋▅▉.▌▊▋/▄▉▇█▇/▌▄▇▌▊▄█▊/▅▊▅▇-█▊▋_▆▇██▄▄▉▄█▄.▍▊▅ ▄█▍█▉ .█▋▍▆▇▍▍▄ ▍▋▅▊▋ ▅▅▍█▋▄▍█▆▆▍ ▌▌▊ ▇▆▊▊▊▊▋▍ ▌▌▄ ▄█ ▉▄▅▋▍▋▆.▋▉▆▊▋▌▉▅▅ ▉▍▇ ▉▆▉ ▋▆▅█▄▄ ▅▇▄▇▋, ▉█▇▅ █▄▄ ▊▌▌▄▄'▌ ▋▅▉▌▇ ▌▋ █▆▍▇? ▌▊█ ▋▅▊▅▅▆▄▆▄▌▄▄▍▆▌▇▊▊.▆▆▊▌█▇▍▆▊▆ ▇█▄▆▌▉▆█▆ ▊▍▋▌█▄▋▋▇▌█▊▌ ▇▋▊█▋▌▋▆, ▆▍ ▊▋ ▍▊▌ ▋▆█▄ █▅ ▍ ▊██▅▌▊▉▊ ▇▅▉▉▅ ▇▊█▌▇▊▍█▄▅▄▉█▍▄.▄██▆ ▋▇ ▄ ▅▄▉▄▄▋▉▊█▆▇█▉, ▅▌▉▊▋▅█▊ ▇▇▊▇▋/▉▉▌▋ ▇▌▋▇▉ █▆▇▊▆▌▇▊ ▌▅▍█▌ ▆▌▌ █▊▍▇.▋▊▍▋( ▇▅▄▌▋▌▉▋▆ ), ▉█▇▇▅▌ ▊▆▋██▇▇▊▇ ▍▍▍▅▌▍ ▋▋▇▉▇▄▌▉▌▄▉▅▆▇▌▉ ▉▇▋▆▄▍▅█ ▇▍▉▊▌▋▍ ▇ ▍▆▋ ▊▍▋▌ ▌▋▊▌█▌▅▅▇▉▇█▉█▉▍▌▉▌▆▇▉▅▊▅▅▅▆▍▉▅▊▋▉▌▉▇▅▋▊▅▋▅▅▉▇▇▍█▇ ▍▅▄▉█ ▆▉▄▋▇▊▍▆▌█▋▊▄▉▄▉▊▌▆▄▉█▄▅▋▋▆▌▊▉▄▉▆ - ▄▉▍▇▇▇ ▍▆▉ ▆▊▌▊ ▇▇▇▋▇▆▌█▌ ▌▉▌▄▉▇▄ ▉▆█▅█▍▄ ▄▆▆▉ ▇▌▄▅'▇▆ ▄█▍█▌ ▆▋▋▋ ▆▋██▇▋▉ ▅▄▍▆▋▆█ ▇▇▉▄▋ "█▊▌▋▅▊ ▍▅▇▊▋▄▊ █▊ ▊▆▊▋▌▋" ▋▊ ▍▅▄▉▋▍ ▊▅▆▆▄▆▄▇▍▇▌ █▉▅▉ ▆▍▊▆▊▋ ▄▊▌▅▍▋▄▌ ▊▄▅ ▅▆▋██ ▌▉▅▉▆▇▇▍ █▅ ▉▄▋ "▅█▆▅▅" ▊██▄ ▅█▄▉▇▆▋ ▆▇ "█▅▋▄" ▅▅▄█▊ ▇▌▋▋▆▍▅█▉▌▍.▄▄▍▄▌█▊█ ▋▍▄ [▆▅▌▄▍▍▅▇▅▅] ▋▍▅▉▇▇▆▄▇. ▌▊▌▆▇▇▅▊▆ ▊█▉▋▊▆ ▊▉▍ ▅▄ ▅▇▆▋▌▇▅ ▌▉█▄██▇ ▅▇ ▇▌▉ ▊ ▌▇▌▊▊ ▉▍▆ ▌▌▋█▅ ▄▆ ▉█▅ █▍▆▆▄▋▊ ▄▅ ▇▉▍ ▆▋██▅ ▌█▊▄▇▇. ▌▄▋▋ ▊▆▇▅▉▍▆█▉▇▊▆▄▍▊▇▊▊ ▌▉▄▍▊▌█ ▄▌▄▄▊█▅ ▇▄▄ ▋▋▆▄▍ ▍▆▍▄▉ -> ▉█▊▇/▍▋▅▅▅ ▋▊▊█▊▉▅ ▅▇▌▍█ ▌▄▍ ▍▊█▊▍▉▋ ▄▊▇▌▊▆▋▄▍▆ ▍▆▆█ ▅▆▉█▌▌▌▄▅▄▋▇▊█▇▇█▆ ▉▄▉▄▅▌▍ ▍█▇▍▊▉▊▋. ▉▌▇ ▌▆▅▋▌▄█▆ ▅▆ ▉▇▋▊▋▊▊▆▌▅▅. ▋▉▍▇ ▉▄█▉▄ ▉▅▉▄█ ▆▅ ▋▅█ ▉▍▊▊▇▅▉ ▇▍▌▍▉▊▋ ▅▄▊▆█ ▆▄▄ ▋▄▊█▋▋▅ █▉▍ ▄█▉▆▄▌▉▆. ▄▋▉ ▊▅▄█▌▌▇▊▍▇▍██▅▊▄▌█ ▌▅█ ▇▄█▅▅▍▄▋. ▊▆▆ ▆▉▅▌▊▍▌▌▋▌▊▉▅▄▅▄.▇▌▊▋▅▉▅▆▅▉▆▋▌▇▌▆ , ▅▊▅▍▄▋▇▍▊▍▇▉▋█▇▅▍▍ ▊▌▍█▄▋█ ▌▋▄▋▄▍ ▇▍▇██ ▌▆▄▉█▋▅ + ▅▅▉█▋▆ ▄▌▍▋▍ _▇▊▊ ██▅▄ ▇▅▊▄ ▄▉█▍▌▆▋ ▌▄ █▆▇▌▉▌▇ ▍▌▊▅▍▊▍ ▄▌▌█ ▋▌▉▅▉▉▅▅ ▍▄ ▌█▌▄ ▄▋▉ ▄▇▋▌▉▋▅ ▉▉█▄█▊█ ▄▍▋ ▄▄▉▆▊▋▊ ▇▍▇▅ ▇▋▅▍ ▌█▍█ ▅▊▅▅▇▊ ▄▅ ▅▋▇▊▋▉▄. ▄▄▆▆█▉▄ █▊█▄ ▅▋▆▅ ▉▅█ ▉▌▅ / ▌▌▅ ▊▊▊▉▊▊▋▇▌, ▋▄'▌▊ ▅█ ▍▄ ▅█ ▋▇█▆▌▄▅▅▅.▅▊▌▅. ▅▄▉ ▌▌▉▌▄▋▊ ▆▄ ▆▆▌▍▄▊▋▄ ▇▅▋▆▇▌, ▉█ █▉▆▅▌▌▊▉▊▊▄▉ ▇█▍▋▅://▅▊▋▇▅.▄█▍▌▋▄▇▇█.▄▍▇/▊▅▇▄/▅▇▊▇/▇█▉▆▊▍▅/▄▄_▆▅-▌▅-▆█▋▆▍▅▊▆▆▅▍▉▍▌▌▇▄▄▇▅▍▌▊▍.▊▅▌ ▌▆▆▆▌▅▆ ▇▊▊▌▅▆▍▄ ▄▆▊▊▋▄ ▇▊▍▅▌▊ ▅█▌▌▉▋ ▆▌▍▄▌▄ █▋█▅▋ ▆▌▄▅▍ ▋▇▆▄█▋▉ ▊▆▄▄█▄▍▌▋-▆▇▍▅▄ ▄▇▉▆▍▊▅▌ ▋▇ ▋▉▆▋█▉▉▇ ▉▇▇▋▌ ▄▍▋▉▇ ▍▄█▅▄▌ ▊▍▋▋▉://▅▇▌▉▋.▆▍▋▆█▆▊▄█.▋▋▆/▉█▇▆/▅▌▌▊/▌▊██▄█▋/▌▋_█▍-█▅-▄▌▄▍▆▍▋▇█▋▆▄▇▇▆█▇▄▉.▍▌▍ ▊█▇ ▅▍█▌▆ ▄▋▆▅ ▉▊ ▆▆▌▍▄▆ █▌▆ █▊▅▉▇███ ▉▇▅▆▉ ▊▅▄▇ ▉ ▅▋█▋▆▌▊▅ ▄▅▊▌▊█▋▆ ▌█▌ ▍▉▌▊▇▋▌ ▇█▋▊ ▋▍ ▋▋▆▅▋▊█▆▌▅█▆▌▊▊▊█▇▋▊▆ █▄▇▅▅▄█▉ ▆███▋▅: ▌▅▊ █▆▄▉▄▇▇▇█ ▄▅ ▊▍█▌▄▋▇, ▋▍▍▊▊▍▊▊▋▄ ▋▅▉▋▉▌ ▌▉▊▊▇▊, ▍▋▊▍▇ ▌▆ ▄▉█▄▋ ▅▆▊ ▌▉▄ ▍▇▊▇▊▇ █▇▅▅▊▆█ ▄▄▄▄ ▆▍▋ ▊▋█▋█ ▇▅▌▊▇▆▍. ▄▉▊▍▄▉▄▇ █▍▋▅▇▇▍▍▋/▅▅▇▍-▌▇▅▍▍▍#▇▅▊▋ ▌▌▊▆▌▇▄▍▉▅▊▆▊▄▆▇▄▇▆ - ▅█▅ ▌▄▆▅▉▍▅▊▋▅▌▆▍▆, ▋▅▅▉ ▊▅▊▆▇▊ ▋▄▊ ▉▌▄▍ ▉▆ ▊▄▊ ▄▊▌▄, ▌▌▇ █▇▇▅▄▉▍▅▋█▆▉▉▋, ▉██▆▉▋▋▆▇▍, ▆▅▄▅█▊▉▇▋▌▌▆▇▍▊▍▌▌, ▆▄▄▅█▍█▅▇▌▆▅▊▆▄█▍▌ ▉▌▊▄▍▍▋▋ ▌▇▅▉▊▉: ▌▌▄ ▆▍▄▋▅▊▇ ▇▋ ▄▊▅▊▅▍ ▄▌█▄/▅▆▅▄▇▋▅▄ ▄▌▆▋▆ ▌▆▌█▌▄▇ ▅▇▊▅▌ ▅▉▅▆▆█▋ ▄▌▊▌ ▅▍▊▄▄▊▆█ ▉▇█▆█▇: █▆▋▅▌ ▌▉▍▅▆ ▅▍▌▋██▊▇▆ █▋▉▅ ▄▇▉▄▅ ▊▉▋▇▋▌▋▆ ▄▍▄▋▆▅▋, ▇▌▄▌ █▄▄▊▄▄▄ ▊▍▄▊ ▋▇▋▇▆▉▉▌ ▆▍▄ ▆█▋▇█▅▉▌ ▋▆▆▋▉▅: ▊▍▊▆▊ ▆▌▅▇▅ ▋▄▍▌▅▌▄ ▌▌█ ▌▉▍▋▉▍ ▄▅▆█▉▊▅▆▊▊ ▍▉▉▊▆ ▄▄▉▊▇ ▅▋▊▍▆▇▌▅ ▆▄ ▄-▍ ▊▋▅▊ ▍▍▊▅▍▋ ▆▉ ▍█▇▅▆▌▉▇ ▅▅▋▇█ ▆▆▅▋▄▍▊▉ ▄▌▋█▉▅ ▅▌▉███▅▄▋▄▊▌█ ▉▊▋▉ ▄▌▅ ▊▊▉▇▌▌ ▊▍▍▉▉ ▋▋ ▊▇█▊▋▆. ▌▇▆█▅▅▅█ ▄▌▆▇▋▊▇▉█/▇▅▊▊-▌▆▅▅█▍#▅▋▆▆ ▅▌▋▍ ▌▇▆ ▇▆▊▇▉▄ ▊▆▌▄▇▅▌ ▄ █▅▊ ▍▅▅▆▋▅ ▄▋▌ ▊▄▉▄▊ ▉ ▅▆▍▍▍▇ ▇▅█. ▍▉▌▋▊://▇▅▋▋▄.▍▊▆▍▊▄▊▊▊.▇▊▊/▌▇▌▍▊▄█▅▇▊▍▊/▇▅▇▇/▅▉█▇▌▍▊/▌▍_▇▇-▍▆-▋▊▋▌▇▊█▌▊▋▄▆▉▋▇▋▊▉█▋▇▉.▅▍▆ ▋▍▋▄▄ ▆▋ ▉▍▊▍▅▋▄█▌██▋▇ ▅▇▅▇▅▇▋ ▌▆▍ ▆█▌▊▉▋▋▌ ▉█▇▊▉ ▅▇▉ ▌▉▍▌▌▄█▉▅█ ▋█▍▋▉▌▇▍█ █▆ ▅█▋ ▅▉▌▆▄ █▋ ▄▍▉ █▅▌▇. ▄▅▄▇█ ▄▄▇▍▌▍█▇▊/▋▌▆▋-▄▆▋▇▅▅#█▋▊▊ █▇▇ [▇▍▍▌▆█▍▊] █▋▋ ▉▄▇▉▅▅▇▄▆▋▄▊▊▋.▄▍▌▋█▇▌▊▉▊█▇▋█.█▇▄▊ ▉▍▋▄ ▌▍▉▉▇ █▄▉▆▇▇▅▅ █▄▍▍▇▍▍ ▉▊▄▋█ ▌▉ ▍▊'▇▄ ▊▍▍▅▌▅▌▄ ▇▉▍▇ ▅▍▉ ▆▍▇▄ ▊▅▄▋█▅▍▌▅ █▍▅▍▌▇ ▋▅▅▇▅▌ ▅▇▉█▊▇ ▍▌▌▊▉ ▉▊▋▌▉▅ ▉▍▍▇▋▉█, ▇▄▉▋ ▆█▅▊▅▆▉ ▋▉▇▌ ▌▄▍▆▌▇ ▊▆▅█▅▍▊ ▇▅▉▇▌ ▄▅▊▋ ▅▉▇▉▍█▇▅▄▄▌▊▅.▍▇▉▋▅▋▋▇▆▅ ██▆▍▋ ▆▍█▅ ▆▄▌▇▌▆▇ ▆▍▍█▄▄ ▄▆ ▆▅▌▄▌█▌█▍█ ▍▄▋█▊, ▍▄▊▊█▄▄ ▍▊█▌▉ ▌▇ ▌▅█▇▍▋▉█▍ ▉▋▇▊▍▍ ▍▆▉▋▆ ▄▇▇ ▇▊▅▆.▅▅▉▄ ▍▄▄ ▄▇▉▋▋▋▄ ▉▅▄▍▄█▅ ▄▊▆ ▆▋▉▆ █▋▄▋'▌ ▉▇▆▇█ ▌▇ ▊▌▊█ █▋▄▅▉▆ ▆█▉▋▄▅▉▇▋ ▅█▋▉▉█▍▍▆ ▊▆▋▉▅▋▌▆ ▇▆▋█ ▊▇▋▆█▉▅▄█▅▊ ▄▋▊▌▌▆▄▍▉▌ ▌▉▆█▊, ▇▌▌▌▌▇▉▆▉▅▄ ▇▅▍▋ ▌▋ █▊▋▌█▍▍▍▇▆▆ ▊▋▌█▌▋ ▆▆▅▉▇▇██▅ ▋▌▍▍▄▋▍▄ ▄▊▋▌▌▍▍▌ █▄▇▊ ▋▆▊█▇▊ █▊▅▅▆▆█▇▅▅ ▄█ ▅█▋ ▋▌▋▅ ▍▇▇ ▆▋▌▆▅▋█ █▆█▉▇▆▆▌▍ ██▇▉▋▌ ▋▄▌▌▍▍█▍▇█▇▅██ ▆▍▄▊ ▌▋▍.▉▌▌▅█▌ ▍▆▊▉▋ ▉█▍ ▌▇▆▌█▄▆▅▄▄ ▅▌█▊ █▇▊▊▄▍▆▅▄▋█▅█ ▊▊▌▉▊ ▄██▊▌▋█▊▊ ▇▌▋'▄ ▉█▆▌ ▆▌▄▉ █▋▊▆▉█ ▆▉▊▉▅▉█ ▌▄▆ ▌▉'▍▆ ▇▆▌▇▇▊▍ ▋▅▋ ▇▄█ ▄▉ ▊▌▇▆▇ ▅▄▍ ▌▊▅▉▋▇.▄▄▊▍ ▌▅▅ ▍▆▍▍▉▉█▌▅▅▅█▇▇▇█▇▉▄▆ ▇▍▊ ▅▄▅▇▅▋▊ ▄▉▍▇▋.▉▇▇▌▊▊▅▊█▄▅▇▄▊▉ ▇█▋▍ ▌▍▉▋▌▇▆▇▄ ▉▄▉█ ▄▉▌▄▄▊ █▉▅▆▆▅▌▌▆ █▅▇'▊ ▋▄█▋ ▍▊█▉█▇ ▄▅▇ █▊▇█▌▉▇▋▇▇ ▋▋▇▊ ▍█▍▌ ▍▅█▋█▉▌▍█▉▅▄▆▄.▄▌▊▆█▋ ▊▊▄▍█ ▊▊▄ ▉▍█▄█▉▅▍▍▋ ▅▋▊▍▄▋ ▊▇▄▊▊ ▉ ▄▋▍ ▅▆▆▅ ▉▇▋ [▌▋▇█▅▄] ▉▋▍▅▌▍▄▋▅ ▋▉▆ ▇▄▉▄█ ▍▍▋ ▄▇▆▌▋█▇ █▌▍▉ ▊▉ ▉▌▇▊ █▋▅▋▆ - ▄▉▋▌ ▆▆▅▌ ▆▇ ▉█▍▅█▅ ▇█▉ ▊▌▆ ▅▍▋▋ ▆▆▇▍ ▆▋▍ ▌▇▋▅▍▆▄▆ ▄▊▆▄▅▊▊ ▍▉ ▅▆▉'▅ ▇▌▇▌ ▅█▄▍▉▇▄▋█ ▄▌▊▄█▅█ ▇▌▊▍▌ ▉▄▊▆ ▋▌▍ ▅▌█▉ █▆▋▋▄▆▉▆ ▅▆▋▉▋▆ ▉▋▅▅▋▉ ▅█▍▊██▊▋▉.▄▉▊▊▇▆▋▋██▅▇ ▇▋ ▉.▌ (#█▌▄▅) * ▄▌▄ ▄▍▇▍▇ ▄▇▉▉▋▋▅▋▄▍▇ ▍▌▄▊▊ * ▊▅▌▊▇▌▍▊ ▉▉█▅█▉ ▊▄▆▇▊ ▅▍▉▊▉▊▌▋▉█▅ ▇▄▅██ ▋█▇▄▆▇▍▍ * ▅▇▍▆▉▆▇▊ ▉▇▉▋▄ ▉▇▄█▄█▅█▆▇▄ ▄▅ ▌▊▍ ▇▇▋▍ ▉█▆▊▉▆ ▆▅ █# * ▋▊▉▋▇▆▅ ▆▉▅▌ ▌▉▌▍▍▆▇▇▊▊ ▆▄▋ * ▋▉▄▄▇▌▌▆▍▍ ▉▋█ ▆▋▊ ▉▋▋▅▍▅▄▉ #▆▋▇▌ * ▌█▌▉▊ #▌▄▌▅ * ▄▌▊▇▊ ▌▉ ▇▆█▍ ▊▋▅▍█▌ / ▌▉█▉▌▊▉▍█ █▅▍▄▊▆▌██ ▌▄▌▇▇█▆▄▆█▅▄▇ ▌▄▌▍█▇ ▊▆▆▅▇▅▇▇ / ▇▅▌▊▌ ▆▊▄▇▍▉▅▄ (#▆▋▇▄) * ▋▇▅▆▌▆▊▌█▌▆.▊▍█▅▄▅ ▌▌█ ▋▇▋▊▌▋▌█▆▇▇.█▍▄▊▌ ▅▄▉ ▍▅▌ ▇██▇█▉▇▅▌█▍▌▇█ ▉▉ █▅█▆. ▉▄█▋ ▋▍▌ ▇▌▄▇▌▆ ▍▍▇ ▅ █▆▆▄▄▉▌█▄▋ ▅▆▊▊ ▇▉ ▍▆▇ ▍▊▊▉▋ ▄▇▌▅▅▊██▅, ▇▍▌▅ ▆█▉▉▇▊▅▊▄ ▅▇▄▇ ▇▊ ▊██ ▌▋▉▍▋▊. ▋▇█ ▇▋▄▆▊██▊▌▋.▇▇▍▇▅▄▅( █▅▌▆▋▌▋▌, ▅▅▊▇▋▌ ) * ▌▍▆▌▌▍ * ▌▋▉ ▌▊▋▌▄▅▌██ ▌▉▆▉▉ ▅▉▍▆▇ ▉▇▋▇▄ ▍▉ ▇▋█▆ ▄▆▋▉▍▊▄▍▋▋▇ ▊▆█▅ ▊▆█▄▇://▍▋▉▅▆.▄▇▋▍▉▋▄▍▅.▌▆▉/▄▉▉█/▄▉▊▆-▊▉-▍▍/▆▆▌▊▅▆▇▋▉▆.▌▆▇ ▍▆▄▆▋▄ ▉▌▅▆ ▌▉▌▍▅▍▍▊ ▉█▋ ▊▆▌▇▌ ▌▉▉ ▍▋▋▆▅ ▄▆ ▉▍▍▉▇. ▄▅▄▍▅▆▇▅ ▌▊▊▇▌▉▇▄▅/▍▌▅▄-▇▅█▅▇▊#▍▍▇▍ ▋▍▄▋█ ▅▌▆▊▉▇▊ ▆▅ █▇▊▊▆█▄▄▇▆▊▄▊ ▌▌▉█ ▆▉▊▌ ▇▌▋▌▌▆ ▊ ▅▊▋▊ ▌▆▊▍▄▆▋▍ ▍▊ ▉▌ ▄█▉'▄ █▄▄ ▅ ▅▊▆▄▉▌▋▇▅ ▇▍▋▉▄ ▅▇▅▌ ▉▅▉▉▋ ▆▋▄ ▊█▇ ▆▅▅▉ ▊█▆▍▊█▅█ ▇▋▉▋▌▆▄▆▅▌ ▊▉▌▊ ▉▍▄ "+" ▆▉▅▇▄▍ ▆▋ ▅ ▍▉▌▇. ▉██▋ ▅▌▅▉▌ ▋▊▅▅▇▉▉▋ ▍▌▇ ▍▇▌▍▄ ▆▌▇▍▋▇██▌. ▇▅▄▅█▋▋▉▇/▋▉▅▍-▉▊▅█▍▋#▉█▅▉ ▉▊▍ ▍▌▉▅█ ▆▋▇▄ ▇█▉▉▄▉█▍▄▇▍ ▇▇▊▋ ▇▇ ▋▍▇▅▊▉██▋▍▍. ▆▇ ▇█▉█▆▊▌ ▇▊▍▍ ▆█ ▅▋▉▊▅▌ ▋▄█▌ ▍▍ ▋▍▄▄ ▇▉ ▉▊▋▄█▌▌█▄▉▄▅ ▍█▌ ▅█▋▍▄▌ ▅█▇▌ - ▊▊█▉ ▋▋▆▆▇ █▉▋▄▇▋▌▊▋ ▆▄▇▌▉▄▉ █▇▅▆ ▋█▆█ ▆▋▅ ▇▍▆▋▋▌▉▄▆ ███ ▅▆▆▇▅▇█ ▋▅█▍▇▇▄▄▊▄▇ + ▇▋▉▉█▋█ ▉▆▉▆█▋▅ ▄▍ ▍ ▍▉▄▄▄ ▌▍▄▍▍▍▇▊▋▍ ▄▍▅▊▌▊ ▌█▌▊ ▄▌▉ ▊▊▌ ▆█▄▄▅▍▆ - ▆▍ ▉██▋ ▉▅ ▉▋▇█ ▌ ▍█▄▇▅▄▆ █▄▍██▇▅ ▋▍▊▋▋▄▊ ▍▊ ▆ ▅▇▊▇█ ▉▄▅▅▋▌▋▇▊▍ ▄▊▌▆▍▅ ▄▄▊▋ ▆▍▄ ▊▇▅ ▍▋▌▆▋▇▍ - ▍█ ▌▇▆▉ ▆▍ ▉▍▋▊ ▇ ▌▋▊▅▄▆▄ ▉▆▊▍▉▋▊ ▌▍▉ █▆▋▋ ▌▋▄▌▋▉▇▌▊ ▄▇▍▄ ▇▆▅▋▆█▆▇▋▌▍▌▉▍▇▍▄▉() ▉▍▊▍▍ ▉▇'▇ ▋▋▋ ▉▉ ▊▉▋▆ ▊ .▌▌▅▋██▅.▍▅▄▆▉▍▌.▉▉▋▍██▆ ▉▇▌▊▉▊ ▅▆▆▆▌ ▋▋▄▆▇ ▋▉▆▋ ▄█▇▅ ▆▋▌▄▄▌▊▇ ▌▇▇ (█▇▅▌▋▄▊▍ ▋█▌▆▋ ▇▆▄█ ▆▊▅▄▄▋█▋▋▅▆ ▇▉█▌) ▇▋▌▍▊▊█▊ █▉▉, ▋█▉▅▊▌▌ ▆▅▆▆▇▇▉ ▋▅▄'▍ ▇▉▅ ▍▍▌▄▉▆█▋▋▍▋ ▉▉ ▄▍'▅▊ ██▉▇▇ ▊▅▇██▌▉█▋▄▍. ▇▋█▋▄▄ ▉▇█▇▆ █▋▋▉. ▋▍▇█▍▍ ▌▊ ▇▋▊ ▄▌▉▅▇▆▊ ▉▆▆█/█▊▇▌ ▆▍▍▇▊▊ ▋▍▅▊▄ ▆▅▄ ▉▅▅▄ ▇▍▋▌▇▄▄ ▌▅█▆▆█ ▋▄▄▋▌▊ ▍▄▍ ▇▌▇▉/▆▍▉▉ ▋▄▇█▆█ ▅▇▊▍▇▌▉▆▊ ▌▅▇ ▆▄▇▊▉▆▄▇▊ ▌█▋▋ ▅▆▊▋▅▍▄▉▊ ▍▇▆▋▉▅█ ▅▅█▇ ▍▊▉▆▅▉▅ █▌▌▆▍▌▆▆▊ ▌█ ▉▍▄▋▉▄▍▇▋ ▊▌▍ █▊▍ █▋█▊/█▊▉▋▊ ▊▌▋ ██▉▇▉▉▊▊▉▇ ▅▅▉▆ ▋▋█▉▍▇▉ ▍██▌ ▍█ ▌▍▅▇▅▋▆▉▍▆ ▇▇▇ ▋▄█▅▉▆▅▅▌. ▌▇▅▋█▆▉▄ ▄▉▉▄▋▋▇▍▄/█▆▋▌-▉▅▆▊▊█#█▆▌▉ ▋▇▄▅▌://▆▇▆▄▄.▌▅▌▋▆▍▆▅▅.▉▌▍/█▍▇▆▍▅▌▋▄▋▆▍/▌▋▋▊/█▊▋▆▅▋▍/▇▆_██-▊▆-▇▅▇▊▌▌▄▌▉▇▆▇▆▍▅▍▌▍█▆▊▊.▉▋▊ ▋▋▍ ▍▍█▋ ▆▉▊▊▌ ▆▍ ▍▊▋▍▇█▌▌▋▌▇ █▉▍█▉, ▋▊▉▄▄ ▄▅▌▊▍▉▅ ▋▇█▄▉ ▍█▊ ▍▋▅▇▋▌▄ ▄▊▉▌▋ ▌▄▍▄▇▆▍▌/▉▍▆█▍ ▊▅██▇://▍▊▉▋▊.▍█▆▆▆▄▄▆▅.▄▋▇/▋▇█▋▆▄▉▄▍█▋▇/▅▋▊▊/▇▊▆▆▄█▍/▉▅_▍▋-▌█-▋▅▇▅▇█▄▍▉▊▉▍▋▊▉▊▌.▅██ ▇▌▉▋▉ ▇▇▇▌▉ ▇▇ ▋▊▆ ▆▇▆▋▇▉ ▊▋▄▊▇▇▋█▍▇ ▌▆ █▄▌▊▊▉▄▄▋▅▄ (▆▆▅▄█▆▆▉, █▅▌▋▅▉, ▄▆▄, ▉▍▍▆█▅▇▉) ▇▊▋▊▋▆▌ ▉▋ ▋▇▅▆ ▇▅▊. ▋█▄▉▇▋▅▉ ▇▍▉▋▆▋▌▅▌/▉▄▊█-▌▊▍▄▅█#▋▋▅▋ ▅▌▇█▄▄▋ ▅▊█▆▇▋▊▄ ▇▍ ▌▅▆▋▇█▅▍▋▄█▆▇▇▋▆::▆█▍▌▇▋▅▅▇█▆▆█▍▇▍▌▉▌▉▌▄▌▇▅▉ ▆▄▆▍▆▅▉▅▉▆▅█::▊▅▄▅▇▌▆▍█▌▋█▇▌█▆▇▅▉▉▋▋() ▉▄▌█▅▅ ▋▇█▄▌▇ ▍▋█▊▋▄ ▅▆▅█ ▇▋▉█▊ ▆▋▇▊▊▋▌▊▄▇▌.▊▅▆▄█▊▊▄▍▊▌▊. ▇▉▇ █▉▄ ▋▄▍▊██ ▊▄▇▅▊ ▄▅█▇▌▇▍ ▄▅▄ ▊▅▉▉▍█▄▄▅▆▆. ▆▉▆▆▍▍▊▋ ██▆▉▇▌▉▇▇/█▆█▇-█▄▄▍█▅#▉▄▉▍ ▆▌▇▋▊://▅▅▍▇▆.▇▊▉█▊▅▋█▄.▋▉▍/▌▌▋█▅▇▉▌▅▋▌█/▍▊▍▅/▍▆▅▉▌▅▄/▌█_▊▇-▆█-▅▍▌█▇▄█▍▅▍▌██▅▊▌▅█▍▆▉█▌▉.▄▄▋ ▌▍▄▉▄ ▆█▄▋▄ ▍▊ ▉█▅ ▋▆▇▅█▍█▄▇ ▅▇▄ ▌▊▅▆█▇▆▊▍▅▇▌ ▅▄▅▌▋ ▅▌█ ▋█▊▊▅▍▉▌▇▍▋█▊▆▊▇▉▋▉▇▇▌▅▊▌▉▍▇▋▉ ▆▅▇▍▆▇▍ ▉▄ ▉▋█▆▄▇▍▅▌█▋ ▇▄ ▊▉▄▍▇▄▋▊▍▅▄. ▌▋▉ ▄▋▄▆▇ ▄▊▄▉ ▌▉▄ ▆▌█▅▍▍ ▆▅▉▌ ▌▆▄ ▍▋█▉▉█ █▆▌ ▍▇▌▅█▆ ▇▊▍ ▆█▆▋▍▆ ▋▆▄ ▉▉▄▆▍▋▆ █▇▆█ ▄█▅▌█ ▍▄▇▋▉ ▄▋▍▍▊▌▋ ▆▌▆▌▇ █▌▊ [▋▊█▄▍]▍ ▍▅ ▅▍▌ ▇█▆▍▆███▉▌▅ ▇▆▌█▆ ▉▍▊▋ ▍▆▅▋▆▉▆▌▊▄▉▋ ▄▋ ▉▇▍▌ ▄▇▌ ▄▆ ▌▉▇▅▅█▋▇▆ ▉▅▌ ▄▇▉▋ ▊▆▉▋ █▆█▆▉▇▅▆▊. ▍▆▌▍▄▆▅▌▇▄█▍▋ ▇▅▌▍ █▄█▅▇▅▇▆▋▊▅▄▊▌ ▆█▋▆▆ ▇▌ ▄▄█▌ ▇▅▅▌▋▌ ▆█▉'▌ ▅▌▉▊▅▉▋ ▆▉▍▋ ▊▆▅ █▄▅▌█▄█ ▍▄▆▄▍ ▅▇▍▌▍ ▊▅▄▅▊▅▊ ▅▋▅▋▉█▄ ▊▍ ▍█▋▋▇▍▉ █▅▌▇ ▉▅▇▇ ▇▊▄ [▅▉▆▄▌▌█▋▋▌▊█▉▅] ▇▄▆▍▅▅▉ ▊▊ [▉▍▌▌▄▍█▌█▌█▍("▅▋▌")] ▊▍ ▆▊▆▊▋▋▆ ▅▆▄▅▇▅▉ ▉█▌▊▄ ▍▄▇▋▆▄▅▉▅▆▅ ▇▇▇ "▆▍▍█▄▌ ▅▉▊▌▌▇█▇▇▌..." █▇▄▋▊▌▌▌ ▍▉ ▉▅▅▌▄▋▋▄▌▊▊ ▄▌▋▍█ ▇▉▌▍▊▌▆▆▋▌▆.▉▋█▄▄█. █▆▄ █▋▋ ▅▉██▊▆ ██▇▌-▆█▆▍▍▍▊ ▍▌▅▆▉▅▇ █▉ ▉▉██▌▍▊▌▋▇▆. ▇▉▍▇█▍▋█ ▍▋▅██▊▄▉▊/█▉█▄-▄▄▋▌▍▌#▍▆▌█ ▅▉▋▆▇://▍▌▌▉█.▌█▋█▅▍▌▌█.▍▇▅/▍▅▇█▆██▄▋▆▅▇/▍▌▋▇/▋▊▌▊▍▄▆/▉▇_▆▋-▄▍-▅▋▌▄▍▊▊▍▌▊▇█▉▊▉▆██▆▆▉▄▌▅▋.▅▌▌ ▋▅▍▋▇▅ ▉█▇▇▍▆▄▇▍.▍█▆█▇▊▇▍▌█▌▇ ▄▍ ▊.▇.▋▋ * ▋▅▊ ▊▉▄▇▄▅▍ ▅█▄▅▆▅▌▋ ▉▊▉▆█▆▅▇▉▋▉▉▋▍▅ █▇▅▆▇▌▅▅▆▉ █▋▇ ▇▊▅▍ ▅▌▋▄▆▉▋▇▉▆█ [▊▉▊▅▅▆▉▌▄▌]▉ ▍▇ ▉▆▊▄█▋▍▍▉▉▇▌▆▄▅▋█▍▋ ▉▋█ ▋▍▆▊▄▌▌ ▅▄ ▊▍ █▉▄ ▌ ▋▌▋▇▉▄▍▆▇ ▍▅█▄▊▍▋ ▇▊▅ █▋▋▋ ▋▅▄ █▉▋▌ ▋▉▅▌▊▄▄▆▅█▋ ▊▌▋▌▇▋█▄▌▊▌█▉▄▍.▄▄▆█▉█ - ██▅▊▆ ▅▍▍▋▅ █▊▋▅▌▄ ▌▋▇▍▉▍▆▍▅▉▌ ▋▍▄ ▄▊▌▆▆ █▊▆▅▉▉▄▅ ▉▇▋▋ ▍▄▄▅█▅ ▊▌▉▆ ▆█▊ ▇▆▄ ▋▅ ▌_▌█▌_█▇▉▊▋██▋▊▉█_▋▌▊▌▌▉▉_▆█▊▆█▌█▅, ▇▄█ █_▉▍▆▄▉▋▉▌▇▅▇▌▉▊▍▍▉▉▅▌▉▇▉▄▆▆▍▋▅▉ ▅█▆▆▄▉▉▋▄ ▅▆▊▅▄▄▌ ▊▋▌▉▊▋▌▉ ▌ ▅▇▆▌▇▋ ▋▋▌▄ ▍▉ ▆▉█▇▋█ ▍▊▍▆▉ ▄▇▉▆▍▊▌ ▇ ▉▊█▍▆.▇▍▋ ██▍▆ ▍▄▇ ▇▆▇▅▍.▆▍▍ ▌▍▋▅█▋▉▌▄ ▍▊█ ▌▌▊▆▄▋ ▋▉▅▄▍▉▄▄▆▍ ▊▉▍▅ ▊▋▉▍█▅▉▄▍▊▌ / ▇▇▊█▉ ▊▅▄▅▉▇▋ ▌▄▆▅ ▇▉▉ ▆▉▍▉▋ ▅▇▊ ▌▌▆▊▊ ▉▅▉▆▇://▊▊▇▉█.▋▉▆▍▋▍▆▄▅.▉▇█/▇▇▋▌/▇▆▍▆-▅▍-▌▋/▆▊█▍▋▋▌▅▊▄.▆▍▉ ▅▉▋ ▊▌▄▅▆▄▌▆ █▉ ▇██▆▇▋▋▉▊▅█▆▇█▊▅▋▇.▅▌▇▅▊▆▊▇▌▋█ ▅▋▆ ▉▅██▋█▊█▆▄█.█▆▇█▉█▄▇█▅▊▆▅▌▅▉▄ ▌▄▄▉▇▆▊▆▄ ▆█▆▊▊▊ ▆▊▅▍▆▌▆▆█▌▆ ▅▍▍▆▊▉▍▊▉ ▅▍▍▅▄▋ ▆▉▆▊ ▄▌█▍ ▍█▊▅▆▅▊▋ ▊▋▄▄▋ ▇▋▊▌▆▍▄█▆▋▍▍▉.▊▋▍▋▋█▊▍▍▌▍█▋▉▍▇, ▇▆▅▄▍▍ ▋▊▌ ▌▌ █▉▊▋▊▆ ▊█▌▋ ▌▄▉ ▇▌▇▍▊█ ▉█▄▄▍▉▌▍▊▋▍ ▇▍▌▉▆ █▆▄▇▅▅▄ ▅▉▉▅▉▊▄▉▋ ▍▇▆ █▇█▋ ▅▋▆▍▋. ▌▇▌▅▄▄█▅ ▌▇▆█▇▍█▇▇/▇▇▉▅-▆█▉▉▅▍#▄█▍▉ ▌▅▇▆▅▊▄▉ ▉▊█▌▉▅▌▄▇/▍█▌█-▍█▉▊▍▆#▉▌▅▇ ▊▍▌▇▇▍ ▊▆▋▆▌▋▌ ▋▇▌▇▋▄ ▊▄▄ (#▄▄▌▋) ▌▊▆▇▉ ▊█▆, ▋▌▋▌ ▉▅▊ ▊▋▊▊▆▉ ▋▆▄▌▌▋▉ ▇▊▍▋ █▉▅▄▄ ▇▋▅▇▊▄█▄ ▉▅▍▍(▇). ▇██▊▆▄▇▅ █▋▍▍▍▄▍▄█/▍▍▊▊-▇▌▉▍▍▋#▌▄▇▊ ▌▉▍▇█://▆▋▇▅▋.▌▌▍▆▇▊▍█▍.▅▅▄/▇▋▍▉▍▊▇▆█▅▅▅/▄▇▄▋/█▌▊▉▌▌▌/▉▍_▇▉-▆▋-▇▄▆█▋▆▅▇▍▇.▄▄▌ ▆▊▊▌▅ ▄▊▆▄▅ ▉▊▆█(▍) █▊▊▅▄▉ ▅▅▍▊ ▇▄▌▇▉ ▉▉▉▍▊▅▌▄ ▅█ ▉▉▇▍▊▌▉▋▆▍▆ (▊▍▄▇ ▅▉▋▅▌▍▌ ▌▉▉▍ ▄▆▋▌▉ ▉█ ▊█▍▋ ▅▆▌▋▇▊█▆▌) ▉▉▊ ▉▉▄▌▇ -> ▉▋▋ ▌▇▊▋ ▇▍▇█▋▆▆▉ ▇▇▇█ ▇▄▊▅█▆ ▊▇ ▉▉▆▆█▋ ▄▅▊▆▌ ▌▉▄█▇▆ ▍▉▊▇▍▇ ▅▆▊█▇▌▊▆▉.▊▆▅▋▋▅▍▍▅▄▌▄ █▉ ▍.▆.▊▇ * ▍█▋ ▄▄▊▆▄▄▌▆▋ ▇▄▍▇ ▅▆▍▊▉▄ ▄▉█▆ ▄▆▊▊▊▆▊▉▊▌▋ ▊▆▉▉ ▊▅▄ ▊█▋▌▄▅█▊▇▍ ▋▍▇▆▉▌▉▍ █▇▅ ▄▄▌█ ▅▉█ ▄▇▅▍▍ ▄▌▄▉▆▆ ▉▆ ▄▌▋▋▋█▉▄█▍▉ ▆▋▌▊ █▍ ▇▌▊▍▊▍ ▌▌▍▇▇▉▆▆▋ ▍▅-▅▅▆▄ ▋▋. ▍█▊▇▉▊▆▅ ▆▉▉▌▇▌▆█▌/▍▌▋▄-▆█▅▊▌▇#▉▋█▅ ▌▊▅▊█▍▉▆▅▋▆ ▄▄▋█ █▄ ▌▋▆▇▆▍ ▊▋▄█▊▋▇▊▇▋ █▋▆▅▆ ▌█▆ ▋▊ ▄▌▅'█ █▆▇▇ ▊ ▄▅▋▊, ▊█▌ █▉▍█ ▌▄▌▇▉▄▅ ▆▋▄▆▍▊ ▉ "▍▌▊▊▄▇█ ▄▄▇▊" ▋▄▉▋▇ ▇▍▇▆▌▍▍▌ ▌▇▅▅▉▉ ▋▅▅▅ ▋▉▆ ▌█▉▄ ▌▄ █▊▌▍▊. ▉▇▊▇▊▇▋▍ ▍▋▋▊▆▆██▉/█▊▍▌-▅▄▉█▌▆#▍▍█▅ ▄█▉▊▅://▌█▉▋█.▋▉█▅▋▆▋▇▉.▍▆▆/▄▋▇▇▅▌▋▄▋▄▉▊/▊▆▋▊/▇▉▅▍▌▉▄/▉▊_█▋-▊▉-▊█▉▍▋▇▋▆▌▋▊▌▊▊▋▄▌█.██▄ ▄▍▌'▆ ▇▉▊▋▊▋▄ ▄▉▅ ▉▍▋▍▌▄ ██▌█▄▅▌▇█▋▄ ▆▅ ▉▉█▋ ▊▇ ▌▄▉▅▄▊▌. ▅▉▅ ▅▅▉▉█▊▉▄▇ ▆▆▋▆▆▍ ▊▋ ▌▍▉▄▆ ▄▉▄▍▍▇▌▌▆ ▍▆▆▇ ▊▉▊▋▌ ▍█▇█▅▅▋▆ ▆▇▌▍ ▆▍▄▌▄▍▉█ ▋▆▆▉▍, ▆█▄'▌ ▇▅▄▄▅▉ ▊▍▊▇▍▅▊▄ ▉▄▇▋▇▆ ▉▉▉▅ ▆▅▋▆▌ █▌▊ ▋▇▍▅▋▌▄▇▇ ▍█▊▉▇://▄▅▊█▊.▉▅▌▇▋▊▌▌▍.▌█▄/▅▉▇█▆▅▇▆█▊▍/▌▊▄▍▊▍▄▊/▉▇▋▆▉▌▄_▅▉▌▄▅▉▍▌▆▄.▆▌▋ ▍▇▆ '▆▌▅▍ ▋▋ ▊▆▌▌' ▆▍▋▇▆ ▋▉▆▄▋██▉█ ▍▋▋▌█▄▆ ▊▅▅▉█▇▌▇ █▍▊ ▅▆▇▄▅▌ ▌█▇▉▍▉▋▋ ▇▋▄▍▍ ▌▌▋▉ ▊▋▉▌ ▌█▊▍ ▊▌▌▆ ▆▄▍▊ ▍▄▍ ▋▋▋▊ ▇▋▄ ▉▌▇ [█▄▋▇▋▋▆▉] ▄▄▄ ▊▊▆▋▍▉▅▊▅▇.▄▌▌▄▌▌▅▆ ▄▌▌▌▉▅ ▋▄▍█▇▊▄▌ ▄▌▅▄█ ▌█▆▌ ▌▊▍█▆▍▇ ▍▌▅▇▄▅ ▆▋▄▅▍▌▉ ▋▇ ▉▆▅▋ ▍▌▋█▆ ▋▋ ▍▍▆▉'▊█ ▅▊▉ ▉█▋ ▋▌▊ ▇▍▆ ▌▊▋▅/▉▄▋▆ █▍█▅▇ ▍▉▆ ▆▇▉▉█▉▋ ▍▅▋▅ ▉▇▍▇ ▉▋▅▇▅▄ ▌▇▅▌▇▍▅▅ █▅ ▉▅▉▉/▇▋█▋ ▇▌▋▍▌ ▍▆▍ ▉▊▌▇▆▉█▆▇▍█▊ ▅▉▉▋▋▉▉▇▌▇ ▄▌ ▆▇▄▆▆▌█▅▉██▉ ▇▄▍ ▍▊▆▆▇▆▋▊.▋▆▄▆▆▇▌▄▅▉▄▅▌█▆▄█▉▇▄▊▅▄█▋ ▊▊▊▊ ▅▋▉█▋ ▇ ▍▆▊▅▋▋ █▇▍ ▇▍▄██ ▆▋▋▍▋▍▊▅ ▊▉▊▋▆, ▇▍▌ █▊▅ ▅▆▋ ▌▇ ▉▇▆▌▅▅▌▉ ▅▅▇█▍▊ ▋▋▋ ▌▊▅▉▍█ ▄▇▄▌-▆▍▆▆█ ▍█▇▇▋▋▄█▊▅ ▊▄ ▍▉▍ ▌▌▇██▅▋▌▊▍ ▆█ ▄▆▉▉▌▍▍ (██▆█▄▍▋ ▅█ ▇▇▇▄ ▌▅▍█▉▌▌▇▆▊▋) ▇█▇ ▄▅▅▊▋▅ ▄▄ █▉▇▇▉▊ ▄▆█▇-▉▅▊▌▇▅▍ ▄▅▊▆▌ ▉▄ ▉▉▊▍▇▋▉▆▍▋▋ ▇▄▆▆▅ ▇▍▅▇▌▇▋ ▅▌▄▊▋▄ █▌ ▉▄▇▋▄▄▄▍ ▊▌▆▅▌▅▍▄▊▋ ▍▇▇ ▊▅▆▆▌▉▄▇▅▋ ▆▉▍▅ ▇▋ ▉ ▆▅▆▄▉▉ ▊▅▌▄▌ ▍▍▍▄▅ ▉▍ ▌ ▅█▅ █▍ ▊▉▄ ▍▊▍▍▊▇ ▅▉▌▄▆ ▅▊ ▉▅▍█▆█▅▌▆██. ▆█▉'▄ ▄▊▆█▍▉▊ █▌▅▆ ▉▋ ▇▅▄▆▋▆ ▉▇▆▄▋ ▆█'▆ ▋▆▉▊▅▌▅ ▉▅▋▌▆ ▄▍ ▊▄▇ ▍▍▇█ ▄▇▅▉▆▄. ▊▌▊▉▅ ▉▇▌▆▇ █▄ ▋▊▌ ▄▇▇ ▉▅▉▊▅▊▋, ▇▄▋▋▌▇▅▌▋, █▊▉▆▊, ▊▋▅ ▇▋▍▍▅▋▉ ▄▄▌▍▅ ▉▄ ▋▍▋▌▉▉▄▇▄▆▅ ▍▅▆█▄ ▊▌▇█▆█▋ ▌▅▆▆▋▌▉▅▋ ▆█ ▍ ▊▉▋ ▅▆▄▄ ▊▊▋▆▉▇ ▉▍▅▅▌▄▋▇▅▌▋ ▆▆ ▇█▉▅ █▋▋ ▇▋▉▍▋▄ ▇▆ ▋▅▅▌/▊▍▅▍█▄▌▅▊▉ █▊▍▌▍://▋▉▅▉▆.▉▌▄▌█▅█▋▋.█▊▄/▋▍▊▇▅▉▅▄▊▉▄▋/▇▍▍▌/▄▊▊▉▊▌▇/▋▍_▇▉-▆▊-▄█▅▍█▌▄▅▊▉▍▄█▊▍.▌▇▉ █▆▉ ▋▅▋▄█ ▍▉ ▌█▌ ▄▍█▉ ▅▌ ▋▍▄ ▌▊█▄▋█▅▆▇▍▊ ▌▄▍▅ ▇▆▇▍ ▍▍█▇▅▊▍ ▅▍▄▌▍ ▉▊▇▇▌ [▆▄▄▉▆▋▆▍] ▌▄ ▍▍▇▆▌█▋▍▅█▇▇█▋▇▅▅.▉▄▄▆ ▊▉▆▄ ▆▇▇▋▅▆█▆▉▍▆▊▌▍█▋▊.▆▍█▍▉▇▆▄▉▊▌▌▌▇▇▄▅▉▅ █▅▍▅▍▄▌ ▋▄▉▇▊ ▉▆▉█▉▌▅▋▍▄ ▊▊▊ ▉█▋▊ ▌▊▊▇▇▇▉▆ ▌█▍▋▉, ▅▉▆▍▇▊▇▍ ▌▆▄▌▅▇▉▇█/█▉▅▅-▆▍▊▆▅▌#▄▅▋▇ ▅▍█▌ ▅▇▊ ▅▌▇▋ ▄▇▉█▅▄▍▌ ▇▄█▉▇▍ ▊▉▋ ▅▋▇▋▄▌▍ ▌▋█▇▍▌ ▆▋▋█▆▉▄▋▄▌▄. ▇▇▇▋█▄▍▉ ▋▍▍▄▄▍▍▉▊/▊▇▉▊-▌▉▋▋▌▍#▊▅▉▍ ▅▍▆ ▇▋▉ ▆█ ▋▉▌▆▍▆ ▊▊█▇▍█▅▊▇▇█ ▌▉ ▄▉▄▇█▆▍▌▅▋▉▆▍█▅▊▄▌.▊▊█▄▅█▇() ▅▄▋▉▊▍▍▌.▄▅▌▊▆█▍▍█▉▌▍▅▄▍▄▍▇▉▌▆▄▍▇▊ ▄▇▅ ▆▆▉ ▌▊▇▍▆▆▍ ▌█▋▊▍▉▆▉▅ ▅▅▋ ▉▆▇▅▊▍▆▉.▄▅▄▋ ▋▆▍▄ ▆▋▄▋▋ ▄▉▅▄▉▄ ▇▄▄ ▌▆▄█▊ ▆▉▉ ▋▄▄▋▌▊▇ ▍▍▋'▉ ▆▆█▄█ ▍▉▋▅▄▄▌▌.█▍▇▌▋▆▉▋ █▋▄ ▄▊▍▅▍▌▅▊▇▌▌▌▇▅▊█.▅█▇█▊▅▅▇▍▆ - █▆▊▅▌▋ ▉▇▄▋ ▍▇▌▆ ▌█▉▄▉▅▍▋▄ ▌▇▆▅ ▆▇▍█▊▆▊█▌ ▍▅▍▄▆ - ▄▅▌█▌▉ ▅▊▅▊ ▅▋▋▆▊ ▅▌▌ ▉▊▆▄/▄▆▇/▄▆▌▍ ▉▇▄█▌▍ - ▉▆▇▉▊▍ ▊▅▆▇ ▌▉▇▋ ▋▄▇▇ █▄▍▄▉▅▌ ▇▆▊▊ ▆▅▆▌▇▅▍▉▆ ▌▊▊▌ ▌▍█ ▉▌ ▄▆█▄ ▊▄▌ ▍▉▊▆▋▇▋▄: ▉▄▅▉ ▊▄▊▌▉▄▉▋█▅ ▆▊▊▆ ▉▆▇▅▅█▆▄▇▉▆ ▇▉▉ ▍▉▇▋▋▌▌ ▋▇█▍▄▅▇█▌▆ ▄▉ █▋ █▊▇▌▋▇ ▉▋ ▄▉▅ █▍▌▌▌ ▉▌▋█▌ ▌▍▆▅ ▇▌▊█▇▆▋ ▅ ▋▉▍▍▌▄, ▉▇ ▍▇▌ ▋▉▅▉▉▍▋▆ ▌▄ ▍▉▋▅▋▇▉▍▆▋ ▇█▇▅▇ ▌▌ ▊▋▆▄▌▉▄█▊▅. ▇▄▉▊▍ ▍▅▌▍▆▌▅▋▍/▇▊▉▉-▇▆▍▆▋▅#▄▉▉▍ ▄▄▊ ▊▄▅▅ ▌▋▅ ▇▉▆▇▇▊▄▉.▄▆▋▅▄▉▅█▆▅▇█▉█▇▅▋▍▉▅▄▉▌█▍ █▆▌▄▊▌▄▄▉/█▇▆▌-▄▅▉▊▍▍#▉▇▉▌ ▅▄▉█▅▍ ██▇▆▆▉▇▆▇.▊▇▇▇▄▍▄▍▍▍█▉ ▇▊ ▌.▍.▉▌ * ▇▊▄ ▄▇▌▅▄▄ ▍▍▊█ ▋▆▆▆▊▅▄▉▌▄ ▄▊▉▊ ▇▅▋▉▆ ▊▋▍▉▇ ▉▍█▆ ▄▍▅▍▇█ ▊▆▄ ▇▆▋▉▇▉▊▍.█▋▅▋▍▆█▋▍ ▋▌▊▍▋▊▋▋▉▍▍▄▇▄▄▄ ▄█▆█▅'▇ █▍█▄ ▆▆▉▅ ▊▋▆▇▋▌ ▉▅▊▊ ▄▋▌▊▋▍▅▊ ▅▊▌▌▅ ▆▋▇▇▋ █▊██▆▇ ▆▅▋▍▇▆▉▌ ▌▊█▇, ▉▌▆█ ▍▉▅▌▆▌, ▉▄▊██▌ ▊▍▅ ▉▉█▇▉▅▆▇▍▅▄▍▉▌█▋.▉█▄▋▍▇█▅▇▊▋▇▍▋▊ ▅▌█ ▌▌▅█▋▇▊▅▅▊ ▅▌▄ ▆▅▊▌█▊▅▆▅▅▆▍▍▇▍ █▅▉▌ ▄▄▍▊▊▅▊▊▄ ▋▅▋▍▉▉ ▉▅▇▍▆ █▋▆▊ ▊▌█▌▍▋▋▄▅ ▇ ▋▄▆▉. ▍▋▋▄▅ █▄▇▇█▇▌ ▋▅ ▆▇▇▇▌▆ ▍▌ ▊ ▌▊▆▄▅▉▊▋▉▆ ▉▇▅██▊ ▋▊ ▇█▍█▅▍▊▋. ▌▍▇▅▍▊▄ ▄▌▇▌-█▌▌▋▋. ▌▉▆▋▄ ▌▍▋_▄▊▊▇_▋▇▉▆▇▇▋ ▊▇▇▆▌▆▄ ▊▄ ▋▇▌▉▋ ▆▊▉ ▋▍▋▄▍▊▅▇▄ ▊▇█▌▉▄ █▄▄▇█ ▆▇ █▄▅▌▄▋▌ ▄▊█▋ ▍ ▉█▊▋▋▋▆▍▌ ▉▊▅▆▆▆ ▇█▋▌ ▅▇█ █▋▌▅▊▇ ▉▍▄▌ ▊▌▄▉ ▌▇▆▊▆▇▉▌▇▍▉▋█ - █▊-▌▊▉▊▅▄ ▍▌ ▊▄▌▇ ▌ ▉▋██▆ ▋█ ▄█▅▍▄▌▊ ▇▌▉▌▌ ▄▇ ▅▆▄▆▌▉▍_▉▊▉▇▍▋▇▉_█▅▉▋▄▉█_▉▊▉_▆█▉▍▄▆▍▆▉▇▉█▆▇ ▅▉▉▋▉▉▄ ( ▅▆▌██▇▅▄ ▋▋▋█▊▉▅ ▇▉▊▇▇ ▊▆▍▍▄ ) ▌▅ ▉█▄▊ ▍▄ ▉▅▅ ▊▉▊▍ ▌▆ ▋▊▌'▍ ▊▋▄▅ ▍▅▆▆▇ ▍▇▌▇▉ ▅▉ ▉▋'▄▋ ▇▄█▍▊▄▄█ - ██ █▆▅'▅ ▆▇ █▆▄▉▋▌▅ ▆▋▋ ▅▄▋▇▊▍ ▊▄▉▉▇▅ ▉▌▅▋▋▍ █▄▋▆▆▋▄▇▋█▄▉.▍▅▅▍▍▍ ▋▅ ▋█▊▄▉▋▄▇▋▅█▍▄▆▋▋ ▄▍▋ ▍▆▇▆▅▄▄▉▅▍▉▍▅▄▊▅▄▇▋ ▋▉ ▋▋▉▉▄▄▉▊▇█▍▄▅▋▍▇▅█ ▄█▅ ▌█▅▅▆▌█ ▄▋▇▆▅▆ ▅█▌▊▅▍▉ ▌▌▉▊▍▄ ▆▊▋ ▌▍ ▋▆ ▇▍▇▇█▋▆ ▄▊▉▄▊▌ ▌▊█▉▉▆▄▍▆▄▌ █▆▅▉▋▆▍█▉▍▍ ▆▅█▆█▋ █▆▆█ ▄ ▅▆▊▆▆▇▊ ▊▆▄▌█ ▌▅▉▊ ▆▇▊ ▊▄▌▌ █▆▄ ▆▌▇▉▄▌█ █▅▍▍▉▄▊▋ ▍▋ ▍▇▋ ▉▅▌▄. ▅▍▊ ▋▄▆▇▆▍▅ ▄▌▇▊▄▄▍ █▄▉▊▋▆▍▌▅▅ ▍▅▉▉ ▅▍▆█▄▆▊█.▍▊▋▊▍▉▍▉▄▍▆▋. ▅▄▆▇█://▋▊▍▌▄.▇▅▇▊▍▌▅▆▍.▌▆▄/▅▍▍▄▆▇▍▉▄▄▌▋/▇▄▋▌/▍▇▉▋▉▌▇/▊▆_▇▉-▅█-▋▄██▅▍▇█▇█▆▍▆▄▆.▆▉▆ ▍▅▆▆ ▉▆▉█▆▉▇▋▌▋ ▌▅▇▄█▇▆▄▇█▊▍ - ▆▋▆▌▄▇▋ ▅▉▄▅██▅▍▊▊▋▄ ▉▉ █▅▅ ▊▆▋▆▄ ▍▋▌▊ ▊▍▋▅█▉ ▍▄ - ▋▅▋▍▌ ▉▇▇▉ ▇▊▇▄▇▋▉ ▄▅ ▌ ▊█▄ ▊▆▇▌▌▅ ▆▉▅▆▅ - █▌▇▇▆ ▌▊█▍▉ ▊▅▉▊▆▅▅ ▄▇ ▊▇▊▋▉ ▉▊▄▊ - ▅▅▄ ▅▇▅ ▉▉█▆▌▆▅ ▅▉▉▍▅▋▅ ▊▍▄█▌▉▌ ▌▄▋▌▊▌ ▍▆▋█▉▋▇ ▄ ▊▋▍▆▅▉▅▅▅▉ ▇▌▌▄ ▆▄▊ ▇▋▇▋█, ▋▇▆▇, ▅▌▋▄█ ▇▇▄ ▍▆▅ ▅▊▄▊▋▍ ▅▉▋▍ ▍▄▋▌▅ - ▄▄▇ ▆▍▉▍▋▇▇▇▄ ▅▍▉▋▅ ▄▍█▊▊ ▋▍ ▉ ▊▌▉ ▇▆▌▄▆ ▆▇▇'▊ ▋▆▉ ▆▍ ▋▇▇▌ ▄▉▆▆▌ ▄▌ █▉▇▇█▋▇▋█ ▇▄█▇▌▌ ▉▆▅ ▇▋▇▅▋▌ █▊▊▊▆ ▇▅ █▌▅▋▋▍▄▆▄▍▌▋▉▋▌ ▍▍▅ ▄▍▅█▆ ▉▆▌▉ ▌▋ ▄▋█▅▅▉▉▆ ▅▅▊▆▌▇▋█ █▅▅▉▊▊ █▆▇▄▄▉▊█▌█▅▉▍▆▇▊▇▅.▇▋▌▄█▋▆▄▉ ▄▌ ▊▇▇▅▇▆▆▌▅▉▍▉▊▆▅▄▇▇ █▅▋▌▍▅ ▌▌▇_▌▉▌▍▄▊▉▆▅, ▋▇▉▍ ▄▌ ▆ ▊▇▆▆▌▆▊▍▋▄▍ ▅▌▇▅▆▉▍ - █▆▇▉▌'▍ ▄▄ ▄▇▍▋▉▄ ▍▊▇▌ ▊▉▉▉▌▌ ▆▄ ▊██▋▊▅▄ ▄▊▉ ▍▄█ ▆▅ ▌▆▇▄▍▉▌▆ ▅▄▇ ▉▍▇▍██▇ ▌▆▉▉▆ ▊▋ ▋██▇▋▆▇ ▇█▊▆ █▌▆▉▋▆ ▆▊▆▉▄▊▊▅/█▋▊▄▉▆▍▋▆▆▄ █▌█▌ ▄▅▉▊▊▍▊ ▅▇█▇▇▉█▅ ▋▌▋▅ ▆█▊▇▌█▆ ▋▉▍▉, ▆▇▋▌▆██ ▍▄▆▋ ▊▇ ▉▆▌█▆▄ ▉▆ ▋▋▆▇ ▇▌▊▆'▇ ▅▄▅▋▅ ▍▊▊▅▋ ▆▌ ▊▍▉▌▆▋ ▊▉▌█▉█▇▉▉▉ (▉▌▉▌▋ ▊▄▊█▉▇▆▆▋/▄▇▆▇-▄▌▊█▄▄#▍▊▉▋) ▉▊█▊▇▅▅▇.▅▇▅▄▌▌█▋█▇ ▇▅▇▅ ▅▍█▋ ▌▅▋ ▉▌▄ ▅▆▅▋ ▄▋▍▄ - ▉▋▅▌▅▄ ▍▌▄▇▉▊▇ ▇▇ ▇▉▉▆ ▊▆▍▊ ▊▉ ▅▌▉▋▊▊▋█▆ ▉▊▄▆▋▇▋ ▍▅▇▍▆ ▋▋▍▋▆▉▉▇ ▌▊▅█▇▄▅▇▅▇▋▌. ▅▄▌▋▇ ▆ ▋▌▌ ▇▌▆▊▆ ▇▅ ▊▍▇ ▄▆▅█▍█▉▍ ▊▅▇ ▋ ▋▊▄▄▋▍▅█ ▄▌▊ ██ ▋▍ ▌▄▋▄▋▅▍ - ▊▊▄▉▌▆ ▋▇▄ ▊ █▉▄▉ ▊▅▊ ▅█▉▇▅▉▊▄▆ ▉▋ ▌▍▅▊▊▋▍█▄ ▅▄▍ ▊▊▌▄▍ ▍▊▇▆ ▌▄▌▇ ▊▉█ ▅▇▉▊▊▍ █▄█▌▍ ▇▉▅ ▅▉▅█▌▋▇ ▉▊ ▄▉▆▉▍ ▍▆▇▍ ▅▉ ▇▋▉█▆▊▅▋ ▉▅▄▇▋▄▋ ▉▋▌▋▌▅▊ ▊█▄ ██▉▅▆▉▍▅▄▌ ▇▍▊▆▆▉▉ ▍▉▄▆█▉▅▇▉█▆ ▇▇▋▅▄▇. ▌▆▊▊▇ ▊▄▆▋▅█▊▄▊▉▇▉▊▄█. ▌▄▍▇ ▌▊▄▊▌▊▅▆▌ ▇▇▄▌▍▊ ▍▍▄▋▇▋ ▋█▌▋ ▍▌▄▄▊▉▌▆▆▌ ▊▉▇ █▄▄▅ ▋▋▆ ██▉ ▄▅█▌▆ ▉▉▄▆ ▅▍▌▌▄▆▆▌▉▋... ▉▅ ▍▇▊ ▊▊▇▉ ▍▋▊▆ ▉▆▄▌▅▋▉ ▋▋▋ ██: █▉▆▄ ▍▉▌▋▋▌█▅▌▌-▅▊▆▄▅█▉ ▋▇▉▄▇, ▄▅▍'▄ ▌██▍▅ ▄▇▆▉▇ ▌▌█▊ ▌▍▄▇▉ ▌█▊▉▄ ▌▋: ▆▋▍▊▉▋▋▋ ▍▄▊▌ ▊▅▆▍ █▌▉▊▆ ▊▋: ▅▇▋▊ ▅▉▆▌█▄ █▋▊▇▍ ▋▅▅▊▊▋▆▅ ▊▇ `-▉█▅▊█▆█` ▊▍ ▌▇▌▅▊▆▋▅▅ ▌▅ ▇ ▊▊▉▅██ ▉▄▍▌▅▄▆▉▄ ▄▅▄▌ ▄▅▋█▊▍▍ ▉█▌▉▅▇█▄▍▌▊▉ ▍▋▍ ▊ ▍▄▅▋▍▅▅▋▄ ▅▍▅▆▍▅▍▅ █▍▄▅█▊ ▌▊ ▆▉▆▇▊, ▄▄▄▉▋ ██▅ [▄▇▇▅▉] ▄▇▆▋▄▊▋▇▉▋. ▌█▉▇ ▇▄▊▊ ▌▇▇▄▌▄▋ ▅▋█▄▇▊ ▊▍▌▊█ ███▊▊▆▉ ▇▆▄ ▅▄▅▅▇▋▉▌▅▍▉▅ ▄▍▌▆▇ ▅▅▅▉ ▊▋▍ ▊▆▅ ▅▊▅▉▉▌▋▍ ▋▆▍▄▌. ▅▅▋▊▍▆█▉▌/▇▌█▆-▄▉▉▆▆█#▅▉▇▅ ▄█▍▆▇ [▍▄▄█▅] ▆▄ ▇▍▅▄▇▋▊ ▇▆▆▅ ▇▌▅██ ▄█▌ ▇▋▄▊▅▍ ▍▅▊ ▋▇█▇▍▄▆ ▉▅ ▆▄▇▍ ▄▌▋▇▊ █▅█ ▊▍▍▆▍▇▆ ▆▍▄█ ▊▄ ▉▍▋▋▇ ▌▍▍▆▋▇█ ▇▊▅▌ ▋▇█▄▅▅▇█. ▄▄▊▍▆▆▅▊ ▋▍█▍▄▉▆▊▅/▉▇▆▊-▋▉▊▅▇▅#▋▍▊▌ █▉▇▋▇://▅▄▊▄▉.▋▋█▆▅▌▅▄▌.▌▊▋/▅▌▇█▄▋▍▄█▋▅▄/▍█▊▌/▍▉▄▍▆▊▌/▄▄_█▍-█▍-▊▄▋▆▋▇█▇▌▄▆▋.▍▅▍ ▊▇▆ ▋▆▇▅▆ ▌▋█▉▍▇█ ▊▌█▄▋▊▇ ▌▆▄▅█▄ ▉▌▅▇█▍█▊/▅▅▆▊▉▌▍▉▆ ▌▉▄█▇ █▇ ▌█▇ ▆▉▍▊ ▄▌▄▋▄▉ ▅▄▄▍▋▉▊ ▅█ ▅▌█▇▄▆. ▊█▊▅▇ ▌█▄▉▆▅▅█▅▌/▉▅▍▍▄▋▉ ▅▊▌▋▅█▆▉▋ ▆▍███▇▉▊ ▊▋▄ █▋▊▇▆ ▍▊▊▊▉▇▍ ▉▅▆▍/▇▊▋▍▌▄█ ▍▆▄▋█▅▊ ▇▆▇▊▄█▄▉▉▅ "▌▉▌▆ ▌▍▍▇▅█▅▍ ▍▋▆▇" ▆▊ ▄▅▆ ▆▉▄▆ ▄▊ ▌▄▌ ▌▌▅▊▅▇ ▆▆▄ ▆▅█▆▊█▇'▇ ▉█▋▅██ ▇▌▉▍▌▍, ▋▇▄▆ ▆▉▇▌ ▆▊▍▅▍/▉▌▄▌▍▍. ▉▌▋▅▇▇: ▊██▋▋▉▇█ ▆▇▍_▄_▅ ▄▅▅▉ ▄▌▉▉▆▌▉▇▄▊ ▄▆ ▅▄▅▊▍ ▊▄▌▄ ▉▄▉▋▋▆▍▍▋▍▋▇▇▊▆▌▋█, ▊▌█▋ ▍▇▅ ▅▇▋▇▅ ▇▄▆ █▉▌ ▄▌█▉▊▇▇▊▆▌▋▇ ▍▌▅ ▅█▍▊▋ ▄▅▉▉▌▆▉▉▉▋▄▌ (▄█▋▍▍▄ ▆▄█▇▄▆▇ ▍▋▉▍▆▊▇▌▋ ▋▌▆▍▋█▋▋▄▉, ▋▍▆█▄▆▆ ▇▋▉▇▋▅ ▆▅▌█▄) ▉▇▅▋▄ ▆▋▍ ▊▄▇▌▆ ▊▆▉▉█▋▇ █▋▄ ▆▉▇█▄ ▋▄▋▌ ▍▋ ▅▋█▍▍▍▋ ▅▊ ▆▄▌▆▊█▉ ▋▊▅▄▊▌▇▌▆▊▌.▊▅▊▆▉▌▉▉▉▅▉▉▋▉▆▅ ▌▅▋▅▋ ▊▅▆ ▅▊▌ ▄▇▇▉ ▋ ▆▅▄▄▍ ▍▉▍▊ ▅▌█▅▅█▉█▋ ▉▊ ▉▉▄ ▄▍▇▅▌▄ ▉▆▆▉▌ ▇▉ █&▅▅▌ ▊▋█ ▊▋▋▅▍ ▅▇▊▉▌▌▆▊▄ ▄▄▊▌ ▊▍▅▍▊▍▇▋▍▄▆▊ ▊▄▋ ▅█▇▆▆▅▊▊ ▌▊▇▊▉▊▉ █▅█▍▄▋ ▆▋ ▄▌▋ ▅▆▇█▍ ▅▌█▉▊▋▌▇▋▍▇▆▆▇▆▌ -> ▅█▊▅▅▋ ▄▄▌▋ ▆█▉▍█ ▇█▊▆▌▅ ▅▌▋▆▄ ▅▄█▍ █▋▉▍▄▌▊▆ ▌▇▌ ▇▋▍██▌▌ ▉▍▌▊▄.█▋▄▉ ▌▌▄▉ ▍▊▌ ▆█▌▊▍▉ ▊▅▌▌▍▋█▍▆ ▌▆ ▇██▅▌▊ ▅▅▄'▇ ▌█▌▌▌▋ ▌▊▍▉/▆▌▄▆▊▌/▆█▄▊▉.▉▍▌▅ ▉▅▊█▋▊█ ▌▆ ▌▋▍▄ ▄▍ ▉▇▆▆ ▍█▇ ▅█▍█▋▅▇ ▋▆█▄ ▊▇▊▅▅▅▌▌ ▍▌█▍▌▆ ▇▄▄▆ ▇▋ ▌▋▅▍▅█▇▍▆▉.█▊▆▍▇▋▇▇▅▅▇▄█ ▉▋ ▉▅▅ ▇▄▇▉▍▋▅▍▅▊ ▍▊ ▌▍▉ ██▌▋. ▍▌'▉▋ ▊▄▅▇▋ ▆▊▆▊ ▇▆▊▅▆▌▊█▋█▊ ▊█▉▆ █▉▍ ▅▌▋▅▇▋ ▇▊▉▋ ▇▇▊ ▉▇▇▆▉▆█▆▉▅▆ ▅▇ ▍ ▄▆▉▌▍▆▆██ ▌▅▍▌▌▊. ▇▍▄█▌▄ ▇▄▆▋ ▅▄▋▊ ▊▉▄▍ ▌▆▇ ▍▌█▅ █▄▍█▄▊▇▉▊▅▆▅▋ ▉▌▋▅▆▅▋▅▉ ▌▋▇▅▍▄▉▆▇▅▉▇▇ ▄█▊▅▄▋▉ ▄██▇ ▇▇▍▉▅▊▊▋▍▍▅ ▅▄ ▍▊▇▍▇.▌▅▉█ ▆▌ ▆▉▅▅▍▊ ██▇▍▋ ▊▅▄ ▅▊█▌▇█ ▌▆ ▉▅▇█▉▊▉ - ▆▌▍ ▅▅▆▊▉█ ▌▆ █▋▌ ▅▆▄▅▍▆▅▊▋▄▋ ▍▍▍▄▌▉▅ ▋▌▄▅▌▉▄▌▉▅ ▍▄▄ ▍▄██▍▇ ▆▊█▇▉▅▌ ▇▅▆▊▉▊▇ ▅▋▌▋▄▇▉ ▅▄▋▄▋▊▍ ▌▌█'▉ ▄█▆█▇ ██▄ ▍▅▌▊ ▌▉▆▋▌▅▅▋█▉▋ ▄▉▋▇ ▌█▍ █▆▋▅ █ ▅▄▊▇, █▆ ▄█▇'▇█ ▌█ █▍▅ ▊▋▋▄ █▋▅▍ ▊▅▉▊▄ ▊▊▌▋▅▅▊▅▌▋██ ▅▇ ▋▅ ▌▌██▌▌ ▉▄▄▍ █▍▋▋ ▆▊ ▇ █▋▊▉ ▅▇▇▇▍▌▍ ▆▊▇▇ ▇▌▋▇▅▅ ▆▌▄▌ ▊▅▊▋█▄▉ ▌ ▄▋▊▄, ▉▋ ▉▄ ▅▍▍'▊ ▋▇▊▄ ▉▍▍▍▉▆▆▍ ▊▋ █▅▊ ▊█▋██▊▊▋▆▆ ▄▋▄▄▇▌█ ▅▆▉▉▅█▄ "▉▇▌█▋█▋ ▆▇███▅" ▅▇▋▍▇▇: ▊▍▅█▅▌ ▄▅▊▆▊▅█▍▊ ▍▅▌▅▍▋ ▉▌█▊▉▌ (▊▇ ▋▉▉▅▌▌▅▇ ▌▊▉▊ ▇▅▍▋ ▆▍█ ▉▆ ▅▌▌▇ ▉▅ ▅▋▋▉ ▄▇▌▌▋▄?) ▍▊▅'▉ "▉▆▅▉ ▇█▇▌" ▋█▊█ ▅▄ ▊ ▊▋▌▆▋▄▊ ▅▅▉▆█▆▆ ▊▇▇▆▍▋ (▍▋▆ ▄▅▋▇▄▇▍ ▉▆▌▆) ▄▇▅██ ▉ ▍▅▄▍▄▍▄▉ ▄▄▆▅ ▅▇▊▍█▋▅▍ ▊▊▋▆ ▄▄▊▄▅ ▇ ▅▌▌█▌▌▊▆ ▄▅▊▋ ▍▆▊▇▄█▉▅ ▌█ ▆▉▌▆▇ ▌▍▄▆▄█▋▍.█▇▋▉▌▆▆▋▍▆▍▋▉▉▊▍▅ █▍█▋, ▉▇▉▉█▌ ▇ ▍▌▊'▇ ▅▇▆▄▆▍▋▍ ▉▊▆ ▆▍▉ ▋▆▇ ▄▄▉█▆▅▌ ▄▅ ▍▇█▍▋ ▅▊▉▉▆▇▊▊▆ ▋▄▍▅▆ ▄▊▍ ▋▉▄▍▋▅ ▍▌▅▇▍▅▄ ▇▉▊▍ ▅▊▇▍ ▉▍▊▇▌▋▇▇ ▄▉▍▉▄▊▌, ▍▋▇▉▊ ▋▄▍▊▉▆( █▉▆▅▅█▇▍▅▊▇▊▍ ) ▇▉█ ▅▌▍▉▍▊▊ ▋▅ ▌▅▊▆▉ ▍▍▋▊ ▇▌▅ ▌█▉▅▄▉▆ ▉▅█▅▅▆▍▅ ▊▍▆ ▌▌█▄▆▇▊▋ ▊▊▇▌▆▄▊ ▇▆▇ ██▍▄█▅▍█▍ █▄▊▌▆▋██▍▊▋▅▅ █▇▍▉▆▇▅▅█: ▌▊▌ ▆▉▆▋ █▆▅▌█▅▊▄▌▄ ▄▌▉▊▊█▅ ▆▍▊▅▌▍▉ ▇▌▄▅ ▍▍ ▄▆▅▋▉█▊ ▇▋▆ ▊▌▋▅▆▆ ▉▌▆▅▊▍▉, ▉▉▉▆▉▉ ▊ ▅▉▄▌▄▌▋▌▄ ▆▌▋▉▊▄▆ ▅▌▇▅▆▆ ▍▋▆ ▄▊▉▅▄, ▅▅▌▅▄▄ ▌▍▅ ▇▉▋ ▋▍▇▍█▌ ▉▇██▅ ▇▇▍▊▆ ▉▍▆▅▊▄▅ ▋▍▇ ▉▍█▆▊://▄▊██▍.█▇▊▋▍▌▊▊▍.█▋▅/█▉▇▆/▄▇▄▊▌▊▄▄/▇▊▌▅▌▅▋_▍█▊▌▅▆▉▅▌▇.█▋█ ▊██'▌ ▌▇▍ ▆█ ▌▄▋▇-▊█▇▍█▋ ▋▊▌▊▋ ▊▅ ▄█▅▆▆█▌▉▇▌▅.▄▇█▅▉▉▊▊▄▌▉▅▌▍▍▊▍▋▌▋▋ ▅▋ ▇▉▄▆. ▉▉ ▍▋▆▉'▅ ▍▅▇▊, ▅▇ ▄▄▊▇█▇ ▇▆▇▋ ▌▋▉▄ █▌▉▅ ▊█▆ ▅▄▅▄ ▆▉▊▄.. ▋▇▇▊█▋ ▊▉█▌▅▊▍▅▌▄▄▋▉▋▄▉▅▍▋▄▌▄█▆, ▆▋▋▆▊█▉▅▄▆▌▆▅▇█▋▇▍▆ ▅▄▉▄ ▌▍ ▅▆█▍ █▌ ▉▅▅▉ █▍▊ ▉▇▉▌▊▆▌▌█▋█.▍▊▍▋▇▅▋ ▊▍▇ █▆▄▆▊█▆▅▍▋▍.▌▊█▍▊▆▌ ▌▍▄▊█▍ ▍▋▍▌▌ ▍▌▌▄▇.▄▅█▉▄▌▊▋▉▄▉▅▄█▌▊ ▍▌▋▍ ▆▋▌▅▆▌█ █ ▇▍▍▅▌▆ ▇▋▆▊▌ ▄▇ ▇▅▇█▌▋█▄ ▅▄▍▄▅▅ ▇▇▆▇▅▇▅ (▇▉▅█▇ ▋▄▄█▇▄▋▉▌▉ █▋ █▅▍█▆▍) ▍▄▋▅▄█▍▇▊▊▅▄▊▆▄ ▉▍█ ▍▊▊▌▆▉▇▋.▍▉▌▍█▋ ▅▊▅ ▇▊▊▄▊▉▄█▅▇▌.▍▅▊▍▆▉█▉▆▄▋▅▌▆, ▉▇█▊▆▇▌▍ ▄▊▌▆▇▆▅▉█▅▅█▋▋▌▍▋▌.▇▊▇▄▊█ ▌▋▅▅▊▋▍▍▍▍▄.▄▄▍▅▆▇▊▊▉▍▇▉▋▉ ▉▍▇▄▆ ▊▄▍▇█▊▅▄▍▊ - ▆▅▉▌▊▌▌▋ ▋▅▆▊█▄▉ ▉▆█▊▄▌▉▍▋▆▄▄▊ ▉█▅▇ ▋▍▇▋▌▊▄▊▊▅▊▍▍▄▉▍▌ ▌█▊█▌▋ ▊▆▋ ▉▊▋▅▆.▆▍▍▍█▋▋▋▉▇▍▇▋▍▍▌▆▉▅▋▊▄, █▍▌▅▊▉▄▄█▍▉▍▇▍▄▅▄▅▅▅▌▇▉▉ ▄▋▆▍ ▇▅ ▊▇▉▅▉▍▄▆▅▆▊, █▍▍▌▋, ▉▄▋▅█▍ ▊▉▆▅ █▇ ▅▌▆▅▋▆▆▅ █▆█▄▄▋.▄▍█▇▇▉ ▊▇▆▆▅▆ ▊▊▋ ▄▍█▉▋ ▅▆▍ ▉▋▊▋▊▇▇▉ ▋▄▊▍▊ ▄▌▋▌▊▋▊ ▍▍▉▊ ▊█▇▆▍█▆ ▉▋▍▍ ▊▊▋▍▄▌ "▊▇▅▍▊▄.▄▅▊▊▅█ ▉▄▊▅▄▅ ▆▍▅ ▊▇▌▅▆" ▋▄▅▄ ▅▊▋▌▆▉█ ▊▍▇▇▄▆ ▋▅▅▅▍▇▉▉▊▋▄▋▄▄▇▌█▇▍▄▉▉█▊▋▋▄▋█▅▌▉▄▇▉▊▍▄▋▋. ▊▉█ ▍▊▄▆█▄▋ ▉▄█▄▊▅▊██ ▆▆▋▅█▌ ▉▋ ▊▉▊ ▍▇▊ ▅█ ▄▅█▄▊▉▉, ▊▋▊▌▄▍ ▊▇▍█ ▊▉█▌▇ ▍▄▄▇ ▉▍▇ ▌▅█▇▊ ▊▄ ▆█▋▊ ▋▅█▌ ▄█▋▄ ▅▊█▊▅▊▊▋ ▅▇▍▇▄▊▆▍█▇▋ ▇▄▇▋ ▍▍▌▋ ▋▍▅▄▊ ▊█▋▋ ▇▉▇▊▄▍▍ ▌▉█▊▄▌█ ▇▊▋▇▄▌ ▍▉▋▆▍▍/▋▍▇▇▊▉▍▉▊: ▍▄▅▇▅ ▇▍▇▉▅▊_▌ (+ █▌█▌ ▇█▌▋▌▋▄ ▊▄/▅▍) █▆▋▅▅▆: ▌▇▉▉▍ ▌█▍▅▆ ▅▆ ▄▆▅▍█▇_▄ + ▄▋▋▆▄█ ▆▍█ █▅▋▍ ▉▊ ▊█▌ ▇▇▉▇▌ ▊█▌█▄▍▋▉ ▌▇ ▄▄█▄▅▉ ▅▊▍▄█▄█▅ ▊▇▊▋▄▅▍▉▊▍ ▅▋▅▍▆▍▊▌▆█▍█▆ ▉▆▇▅▊ ▉ ▇▇▊▄▋▌ ▊ ▇▄█▋▇▉ ▇█ ▍█▇▅█▍ ▇▊▋▄▆▅▅ ▅▉▋▍ ▇▍▇▊ █▊█▅▉ ▊▊▇▉▄▇▄▋▉▋▍▄▅▉▍▋▍▍█▊▉▆▉▋ ▌▄▊▄ ▌█▋ ▍▍▍▇▋▆▆▄▌▄█▉▋▌▌▅▇▇▌▉▋▍▉▄█▅▊▊▍▋ ▄▌▄▄ ▍▄▆▆▆▉▊▍ ▊▉▄ ▊▋▌ ▍▍▇▋▄▍▄ ▍█▍▌▊ ▉▉▄▅▄▊█ ▋▌▋ ▌▄▅▇▌▋▆▄▍▋▇ ▋▋ ▍█▇ ▌▅ ▍▄▊▆▇▊▍▅▌▉██▆ ▄▄▅▄ ▆▉ ▊▄▇▋█ ▄▅▇▋▋▅▊▋ ▌▆▋▌▅ ▊▋▉█ ▋▍▋▉▉█▆ ▋▉▍ ▅▋▅▅▊▆▆ ▆▆▆ ▅▇▋▌▋▊ ▍▆▅▄█▉▄▆▇▇▍ ▌█▊▄▄ ▅▅▉▍▊▅▅ ▉▍▇-█▆▆▇▅▌▋▍ █▄▉▉ █▊▊ ▍▌▆▇▇▌▉▆▅▅▉▇▌▍▌▅▊▄▄▄ ▌▄▍ ▅▄▅▉▅▄█▊▋▍▆▊, ▇▌▆ ▉▉▌ ▍▄▅▊▉▌▍ ▊▌▍█▇ ▉▋ ▍▌▄ ▆▅▆█▆▊▉▌█ ▉▆▉▆█▉ ▉▅ ▍▍▌▉'▉ ▇▉▉ ▅▉▅▇▇ ▉▋ ▉▋▍ █▆█▋▇://▉▌▅▇▊.▄▉█▍▌▇▌▍▍.▉▋▌/▋▍▄▅/█▉▄▄/▉▄██▅▆▋/▆▉_▆▋-█▍-▌█▉▅▅█▄▊▋▉▆▆▉▉▉▊▆▅▇▄▆▅.▄▅▍ ▌▉▊▊█ ▋ ▌▆▌ ▌██▄▆ ▄▍▇▋▉▆▆ ▉▋▅▉▇▅█▇▊▋.▇█▅▇▌█▄▇▋ █▍▊▋▄ ▅▆▌▆▄▍█ ▉▌▋▆▌ █▄▄▊ █▍▅▄▅▄▌. ▍▅▉▇▇ ▋▌▆▌▄▅█ ▅▆▅▆▋ ▇▋▊█ ▄▄▄▍▇▅▍ ▍█ ▊▍▅ ▇▌▅▉▉ ▄▌ ▄ █▇▌▆▊▍▇▆▋█▋. ▇▇█▌▅ ▉▇▄▊▌▇ '█▇▆▆▋█' ▄▋ ▅▆▍▉ ▍▊▆ ▋▇▇▋▊▆▄▌ - ▉▋▌▍▄▍▆▄▆▅ ▅▍█▄▇://▅▍▆▍▆.▉█▌█▆▌▌▍▊.▌▅▄/▇▉▋▉▍█/▄▋▍▅▋▇▌▋/▋▋▄▅▌█▆▋▆▄.▍▇▋ ▅▅▆█ █▄▄ ▉▍▇▋▆ █▆▆▇█▋ █▉█▅▄▌█▍▊▋▊.▆▊▊▉▊▌▊▊▋▇▇▌▅▌▇ ▆▍▇▆ ▄▇▌▇▉▌▆▄▄▇, ▍█▇'▆ ▍▊▋▅▊▋▇▊ ▋▋█▅▋▆▆▊▊█▉█ ▋▆█ ▆▅ ▋▇▌▉▆ ▋▌'▍ ▉▆▆ ▊▅▆▊▌ █▊▅▍ ▇▄▄▋▇▋█▌ ▌▉▋ ▆█▄▍▇█▄ █▍ ▉▅▅▄▄▄█▆▍▊ ▆ ▉▇▆▋ ▊▇▅▆█ ▇▄▄▄▉ ▄▆ ▄▇▆██ ▆▅ █▆▌▍▋, ▇▆▆▍▆ ▆▅▌▅▇ ▆▍▇▌▍▊▉ ▄▅▉ ▄▋█▍▊▅▌▇, ▅▌█▌██ ▌▆▄▅▌▋▇ ▅▄▋▄▆▄▉ ▆▉▌▆ ▊▇▊▉▌▇▆▄█▋▊▆▍█_▉▍▍▋▉█▆█ ▅▍▊▋▌█▄ ▆▅▊▍▆▅.▄▋▆▇▋▌▋▆▉█▋ (▌▉▋'▅ ▉█▍█▍▆▆ ▋▌▅ █▌▄▅▊▄ ▆ ▊▇█▅▋) █▌▉▉▅▉█▍▍ ▆▊▍▋▊ -> ▋▉▆▍▌ ▄▇▆▆▄▋▅▍█ █▅▆▇ -> ▍▌▄▅ ▍█▄▊▆▍▆▅▅ ▄█▄▆ -> ▋█▇▉ ▅▇▆▉█▋▄▊▄█ ▋▍ ▆▍▌▊▊ ▊▋ ▌▆ ▋▇▍ ▅▍▊▋ ▌▅▋▊ ▍▌▋█ ▌▉█ -> ▋▄▍, ▆▉█ ▅▌▄▉ █▊▅▋ █▆ █▍ ▆█▉▅▆ ▋▍ ▋▄▄█▅ █▋▄▅▄ ▌▆▉▌▉▍▄▉ ▆██▉ ▍█▉▇ █▊▅▌▉ ▋▆▆ ▋▇▅█▍▄▊. ▊▍▊▉▄▍▅▋█ ▉▉▄▆█ ▅▄▊▍▌▄▅▌ ▆█▅▄▆▅▅ - ▌▉ ▊▅ ▌▋▊▇▌▉ █▇▌▊ ▇▄ ▋▍▋▉ ▆██ ▄▄ █▋▊▆█▍▊ ▍▊▊▍▌▌█▋▉ ▋▌██▊▆▆ ▍█ █▅█'▉ ▌▇▅. ▊▄▇▄▍ ▅▇▉▋▇▆▍█▅/▌█▄▄-▉▊▄▊█▆#▉▋▋▄ ▋▆█▋▇▌▆▋ ▅▊▉▊█ ▌▊ ▆▍▆▉▇▊▊▇ █▇▊▄▍▊▅█▆▇ - ▇▋▉'▍ █▊▉▌▄▇█ ▉▌▆▆▍▅▆▇▅ █▇ ▅▌▍█▊▋▇ ▄▄▅ ▆▇ ▄▄▅▇▉▊ ▍▉ ▉▇▍ ▍██▌▍▉ ▌▅▄▍▄▊▊▍▍▍ ▋█▍▇▆'▆ ▉▅▅ ▌▋ ▋▊▆ ▌▌▋'▌ ▄▄▅ ▍▇▉▅ ▍▅▇▄▇ █▇▉ ▊▅▄▊▍▋▊▍ ▆▊ ▅▌▅█ ▌▄▆▌▌ ▍▍▋▌ "▅█▅▆▄▅ ▅▋▇█▆ ▄▄▌▆▋" ▅▇▅▍▇▆▋▄ █▆▆▌█▊ ▇▉ ▌▇▍▅▌█▉ ▋▄ ▌▌▇ ▍█▌▅▍ ▅▊▊▌▌▉▌▋▅, ▋▌▌▇▆▊▄▊ ▆▊▍▄▍▊▋▇▌/██▇▅-▄█▅▌▇▍#▋▋▍▌ ▄▇▊▋ ▋▌▋▊▅▇▆▅▅▆▍▅▍▌█ + ▄▄█ █▄▊▇▋▉▍ ▊▇▍ ▆▌▍▊ ▇▍▄▉ ▅▌ ▆▄▌▌▆▌▌, ▆▍▌▆▍▋▉▍▊ ▄▇▄▅ ▊█▍▇ ▍▇ ▇▆, ▋▄▌▌ ▍▆▅▇▆▌▄▍ ▊▊ ▊█▊▇▄▇ ▋▋ ▍▊▉ ▍▅▌▄█▍▍ ▉▊█▍▄ ▇▍█▇▉█▆▇▅▉▄▋▉▋▉▆▍.▉▄▄▆▇▄ ▅▇ ▇▋▌ ▄█▄ ▅▋█▆▇▉▍ ▅▇▋ ▆██▄▄▉ ▋▇ ▋ ▉▅█▌▋▄▍▇▍▆ ▊▇▆▋ █▍▄ ▄▉▆▊▄▇▋▇▍ ▍▉▄▇▋ ▄█▇▌ ▍▋▌▋▅▇▆▍/▍▊▇▄ ▋▍▅▍ ▉▅ ▅▅▉▋▋▉▌▄▇▆▊█▊▍▌▌▉ ▅▆▇ ▇▌▇▄ ▇▄▍▌▆▊▍▇▆▌▆ ▆▇▅▄▆▍▅ [▍▄▇▉] ▍█▅▌▇▍ ▋.▅ ▌▇ ▋▉▇▊▉▍▌ ▋▆▆▅▌▊▊█▇▅▍, █▆▌▇▊▌ ▅▉▊▇▆▄▊ ▄▍▍█▌▋█ ▋▍▆ ▆▋▄▇. ▅▌ ▉█▍▋▋▋▊ ▉█▌▉▉▄▆▉ ▉▆▊▄▌▊▆ ▊▊▋▆█▍▉▉▊█ ▍▊▅▍ ▆▆▌ ▇▆▇▍ ▄▆ ▌.▊ ▋▋▋█ ▇▇ ▆▅▆▋▇▄▉▇▋▍ ▍▆▄▉▇▄▉▆ ▄▌▋▉▆▆▊ ▇▌▉▊▅▌▄▆ ▅▊▉▍ ▅▍▆▆▍▉ █▄▋▅▇▇ ▊▅███▉▊ ▌▍ ▅▍▅▄▊▉/▄▌▍▍▌▌ ▅█▇▌▊▌ (▄▌_▅▌▆_▉▆▍▄▇▊_▋▊▍▊▍_▍▍▄▆▇▄ ▇▆ ▌▆██ ▉▋ ▅.▊) ▌▋▊▄ ▌▇ ▋ ▉▋▊▉ ▊▅▅▇ ▌▅▅▉▇▋▇▉▍ █▍▄▄▄▋ █▆▆ ▄▍▍▇▊▅▉▆▉█ ▊▉ ▋▄▊▌, ▉▇█▆▋▌█▆ ▋▉▌ ▇▊█▄▆▆█ ▅▅█▉▉▄▍ ▅▆▍ ▌▇▋▌▇▅▉█▄ ▄█▅▉▊▉▄▆ ▆▉▄▇▇ ▇++/▆# ▌██▄▋▇▆ ▊▊█▇▇. ▌.▍: ```▍▉▍▊ ▆▅▍▄▊▋ ▍ { █▋▋▉▅ ▉_█▍█▄▌; ▊▉▊▊▌▌ ▉_▄▇▅▆▆▆; } ``` ▄▄▋ ▅▆▇▌ ▋▋ ▄▆▉▉▄█ ▍ ▌█▇ ▍▄▌█▍▊▇▅▉▊ ▇▌ ▆██▉▄ ▌▇▋▅ ▅▅ ▍▉▇▄▆▌ ▄▅█ ▋▍ ▇▅▆ ▊▋ ▉▍▆▇▅. ▇▅▄ ▅▅▉▇▅▉ ▊▅ ▌_▍▍▍▊▉▄ ▇█▉ ▌▄▆▅▇▇█▄▋▌ ▍▋ ▍▉▇▇▍ ▅▆▊ ▍▍ ▅▋▉ ▅ ▆▋▅▍▌ ▍▌▊▉ ▅▌▍▋▆▍ ▄▋▌▅▄▄. █▉▆▊ ▍▄▌▉ ▍▍ █▊▅▄▋ (▍▌▍▄▌▆▍▆▉▍ ▇▄, ▋▍▅ ▆▊█▅▌▅) ▌▇▍▌▄▅▉▅▇/▇▊▅▆▅▍▍▅▅▌█▇▋▋▉▍▅▉▋▊▌/▅▄▅▊/▄▉▍▅/▋▅█▄/▅▊▊▌-█.▌▆▇#█▆▆█▋▄-▉▇▍▍▉▌-██▅▊▄ ▊▄█▍▍://▇▊▄▇▊▄▌▅▊.▋▉▇▇▍▋.▊▌/▄▍▉▆-▌▉▉▉▊█▄▌▌▋▌▇▉▌▊█▇██▉▌▇▋▆▅▄▅▌▇▋/ ▄██▋▉▅ █▌▍▊ ▌▆▋▄▋ ▍▌ ▄▅▆█▉█▄█▉▋.▇▇▊▆▆ (#█▅▊▇) ▍▌ ▇█ ▄▉▉▌▋▉ ▉▋▉▆▅▅▋▅ ▆▉▄ ▇▆▄█▅█▇▇ ▉▌▉▇█▄▄▋▊▅ ▍▄ ▉▇▍ ▍▄▋▅ █▅▉▇ ▍▅▆ ▉▉▇▄▍▅▅. ▉▅▋▄ ▇▅ ▆▄▇▄ ▍▆██ ▄▇ ▅ █▇▆▌ ▅▄█▊▆▅ █▉█ ▊▆▌▌▍▆▆ ▌▊▉▍▇▋██▊▋ ▌▉ ▆▅▊▉▌▆ █▄▆█▅ ▄▋▉▍▇▊█▉. █▌▅▆▋▋ ▇▉▇▉▄▍ ▉▇ ▌.▇ ▆▄ ▊ ▄▉▉▅▍ ██▉▅▋▌ ▅▋▆▅▇▋ (▅▍▌▌█▋▄ █▅ █▊▋▍▆▋ ▇▍█▄). ▍▊▅▋▆ ▅▅▋█ █▇▋█▍▄▅▆▅▌▉▌█▋ ▌▄▌▌ ▆▉▅▋▋▌▄ ▇▅▄▆▊ ▊▇▍▊▍▌▋ ▆▋▌▄█▆ "▅▌▆█▍ ▆▋▇▇ ▍▆▇▋▉▍▇▊▍▅▄▉▆▆ ▌▌▋▄ ▇▊▅▇█▋▉" ▉▍▌▌ ▅▋▉▆▆▇▋ ▆▆▆▋▌▅ ▌▌█▋▍▊▇▊▅▆█▋▆▉▋▊▆▍▍▉▋▋▇█▆▍▌▅▊▉▋▉▌▄█▉▆▌▊▇. █▆▄▉▅▉ "▄▋▍▊▄▆ ▌▇▇▅ ▉▍█▄▋ ▅▄ ▊█▌▍▆▅▅▇█▇.▊▄█▋▌ (#▇▋▌▄)" ▅▍▉▉ ▋█▊▇▄▇▇ ▊▉▇▆▇▅ ▆▉▌▊▌▆▉▍▅▇▌▇▊▊▊▅▋▄▄▅▌▅█▊▌▄▄▄▋▅▋▆▇▋▅▅▄█▇▋. ▍▊▉▅▋▍ ▇▊▊█▌▆ ▅.▆ ▆▄▅▆▌▋▅▉ (▅▄▊▊▍▍██▅▆▊▆▅▆▊▇▌, ▌▊▇, ▇▆▆█▄▄▉▄▄▌ ▊▊▉▇███▄, ▍█▆.) ▅▆▉▊▌▅▍ █▋ ▇▍▄▋▅ ▌▌▆ ▉▍█ ██▇▊▄▊▋▋▅▌ ▌▌▆'▅ ▅▄▊▋▅▍▉ ▊▆▉▊▉▌▆▉ ▊▆ ▉▄▄▋ ▋ ▍▍▊▆▇▅▇▍▉▅ ▌▊▄▌▅█▇ ▍▍▌ (: ▅▋▍'█ ▌▉▆ █▉ ▆▌▆ ██▄▊▅▍▊▇▇▇▍▉▋ ▆▆▊▉▌▅ ▄▄▍▉▅ ▄▅▇▋ ▍▌ ▇▆▆▉ ▅▉▌█▆█▇▉▉ ▌▌ ▇▋▊▇▉▌▊+ ▅▋▅ █▌▌▊▄ ▊▍▇█▍ ▋▆ ▅▄▊▌▄▊ ▋▋▉█▋▇▊█▊▇█▍ ▊▄ ▉█▋ ▋▍▌▅▌ ▇▅▄▌▄▄▉▊▋ ▊▌▄ █▍▉▄▄█. ▍▉▍▉ ▍█▆▊ ▋▋ ▆▌▌▆█ ▍█▇ ▇▌▇▊▍▄▉▋▅ ▊▊ ▊▌▊▋ ▉▍ ▉▌▋ ▆▊▊▇ ▇▌▇▍▌▊▉▉█ ▆▋▅▅▆ ▊▍▍ ▅▇ ▉▄▄▌▊ ▅▇▆ ▌▄ ▊▄▊▆▍ ▆▄▊▊▍▉▅▅ ▅▊. ▌▉▇▊ ▍▍▌▅▇▄▇▇ ▄▋▋█▇▊█▌ ▅▄▌▅▄▊▆▇▅▋█ ▌▌▆▋ ▉ ▍▉▍▄▌▍▇▆▊▍▄▍▌▉▅█▊ ▇█ ▌▊▆▊▆▋█▄▉▉, ██▋ ▍▆█ ▌▊█▄▆ ▊▊▉▄▉▆█▊▊ ▍▅▉▋ ▍▍▋▍ ▊▇▇▌▌▊▅█▆▄ ▊▄▇▋▆▇▅▅▍ ▊▉ ▋█ ▄█ ▌▊▇▍ ▍▍ ▇▋▌▍ ▄▊▇▌ ▄█▊▆ ▆▋▉▇▅▌▆▊▌▍▄▇. ▍▌▇█▍▄▌▉▆▄▇▇█▌▆▊▌▆ ▍▆▍█▆ ▆▌▉ ██▋▇ ▅▇▊▉▄ ▆▇▌▌▄▉, ▄▍▅█▆ ▌▇▊▊▌ ▉▍▌█ ▉▊ ▄▊█ ▉█▌▌▍▍▊▍ ▌▍▆▍▇ ▍▊▌█▄ ▌▊▋▄▋▄▉ @▉█▌▅█▉▇▆█ █▅▆ ▄▆█ ▉▍▉▊▇ ▌▆▄▅▉▄▉▅▄▋ █▊ ▋▇█▉▌ ▌▇█▌▊▍█ ▉▊▇▌█▄ ▌▉▄▋ ▋▇▇▋▉█▍▅▆▋▄█ █▋▋▍▊ ▄▆▆_█▅▇▉▉▌▊▋▋▍▌▍▊▍ ▊▅▅▅▆▌ █▋█ ▅█▄▅▊▄█ (█-▋▆▋%). ▆▉▍▌▅ ▋▋ ▆█▇▌▅ ▋█▅▊▋ █▌ ▇ ▌▋▋▅▅ █▋▄▋▆█▅▊ ▍▋▄ ▅▇▄▉▄▆▆▅ ▆▆▆▊██ ▊▍ ▍▌▍▉▌▌ ▊▊▍ ▋▉▅▌▋█▌ ▋▄ ███ ▆▇▉█▉▌-▌▅▄▊, ▆▊ ▉▆▋▍▅ ▆▇▋█▉▇▋▅ ▇▉▌ █▌▇▍▆ ▉▊▉█▄▆▍. ▋█▌▄▆ ▉▇ █▋▍▊▌ ▅▋▄▊ ▍▌▇▆▇▄▋ ▆▇▇█▍▉▅ ▉▄▍▇▍▍▊▇ ▉▊▄▅▄, █▆ ▉▋██▍▊▉▋ ▄▊▊▊, ▊▋▌▅▇ ▌▉▇▉▌▋▋▄▍ ▊▆▋▆ ▆▄▆▍ ▌▊▍▉ ▉▉▍ ▇▍▋▇▆ ▄▉▊█▊▆ ▉▄▋▊▍▊█▄++ ▄▇▄ ▋▇▊▇▋ ▍▆▅▌▇ ▄█▅ ▌▄█▌ ▍▄▊ ▆▉▄█▅▆▅ ▊▇▅▉█▊▇ ▅▇▊▌ ▆▊█▇▌▌█ ▊ ▉▋▍▅▊▄ ▍▊▋▆▇▅ ▆█▌▊▌▊▋▉ ▌▌▊▊▌ ▍▋█ ▆ ▍▊▅▄▉▋▇▋ ▅▉▉█ ▍▉▍▍▉▊▋▋▌▉ ▅▅▍ ▌▊▅▆▇ ▊▇▉█▌▉▆ ▅▊▋█ ▌▊▅▆▄▍▇▋ ▊▇▆▍▊▇▇█▄/▅▋▄▆█▌▌▅ ▍█▊▇▋ ▇▍▄▇▍▌▄ (#▌▌▍▇) ▇▉▄██▍▄█ ▅▆▍▍▋ ▆█▌▇▄▅ █▊█ ▍▍ ▆▍▇█▉ █▅▇▌▋▍▌ ▋█▋▄▇▅▆ ▉▇▄▆▄█ "▄▊▌▊█▋▍▊ ▅▅▉▉▊▍▊▅▊/▅▄▇▉▄▍▆▅ ▅█▅▇▉ ▆▊▆▍█▋▆ (#▊▇▄▍)" ▆▊▆▆ █▋▅▉█▋▍ ▆▋▍▍▋▉ ▉▆▆▋▆▉▍▍▇▊▉▍▌▄▋▄▇▇▇▊▍▋█▆▊▍▌▇▇█▄█▄▊▅▄▋▆▍▄. # ▇▇▅▄▊▉▉▊▅: # ▆█▊▉/▄▊▋▌▍▄/▇▋▉▉/▌▉▄▍▅▌/▊▆▅▇▇▇▊▉▇▊▄/▇▅▅▄▄█▌▍▄▇▆▋▅▊▇/▋▋▆▉▉▊█▌▉▄▇▆▆▋▍.▆▉▇▍▍▊_█ # ▉▌▅▆/▍▅▉██▍/▋▍▉▌/▇▌▄▇▍▇/▉▄▋▅▉▆▄/▅▊█▅▋▋▆▆█▇_▇▋▆.▇▅▉▇█▆_▅ # ▅▌▋▇/▊▍▆▌▉▄/▍▊▋▄/▇▋▄▋▄▆/▆▊▍█▊▊▊/▍██▇▋▆▄▍▆.▍▄▉▋██_▋ # ▇▇▋▍/▆▍▇▉▉▇/▄▌█▍/▆▊▍▆▆█/▄▋▆▇▊▄▄/▌▍▆▆▌▌▍.▉▄▍▊█▄_▄ # ▍▌▇▆/▅▉▇▋▇▊/▉▅▍▊/▊▅█▇▆▌/▉▉▇▅▆▄▉/▇▅▋.▆▌▆▇▄▍_▌ # ▄█▉▋/▄▉▉▋▊▌/▆▍▍█/▇▅▅▉██/▆▄▅▍▍▉▊/▇▊▌▊▊/▋▆▇▌▋_▅█▍▋.▇▉▅▇▇▆_▆ # ▍▊▅▌/▊█▊▄▆▉/▋▉▍▆/▅▋▆▉▆▊/▅██▍▄█▊/▍▉▄▊▊/▇▇▇▍▋_▌▄▆▊.▆▉▅█▍▄_█ # ▆▋▍▋/▅▊▅█▆▅/▋▅▋▋/▉▆▌▅▆▊/▌▅▄▇▉▍▍/▌▍▆▉▄.█▅▋▋▅▌_█ # ▋▅▍▋/▊▄▌█▍▋/▇▆▆▋/▇▊▄▊▉▆/▅▊▆▉▍▉▋/▋▉▍▋.▄▄▊██▍_▇ # █▇▊▉/▄▅▉▍▆▇/▅▉▊▄/▊▊▇▄▍█/▋▄▇▅▍▍▍/▇▆▊_▆▌▊▋▆.▆▉▊▊▄▍_▄ # ▇▇▉▍/▇▋█▇▆█/▉▉▉█/▄▉▉▄▆▆/▊▊▄▆▍▍▋/▇▅▋█▍█.▋▊▍▉▍▉_▆ # ▌▍▇▌/▇▅▅▌▆▄/▄▉▌▋/▇▊▆▇▄█/▍▄▅▉▄▊▅/▌▋▄▍▊█▍.▇▋▆▆▌▋_▋ # ▍▅▅▊/▌▄▊█▍▊/▆▌▅▇/▋▌▋▌▋▄/▆▅▅▄▇▄▌/▇▊█▄█▆▊_▍▌▄▌▅.▉██▋▇▋_▋ # ▇▊▊▌/▉█▅▋▉▌/▄▄▆▌/▆▇▋▉▊▋/▊▉▇▍▋▍▊/▆▊▌▇▋▇▊_▊▅▋▋▍▉▇.█▅▅▌▍▉_▆ # ▆▄▊▅/▋▄▅▌▇▊/▄▊▋▍/▅▊▉▆▋▊/▅▄▊▄▊▄▇/▅▇▆▄▌_▇▇▍▉▆_▅▄▇▉▌▌▄_▊▆.▌█▇▉▊▉_▆ # ▍▅▅█/▊▉▊▊▍█/▄▊▆▆/▇▄▉█▇▅/▇▅▆▆▊▇▇/▆▍_▌▌▊█▉▇▆▋▅▊▊▇▋▉.▇▋█▇▍█_▇ # ▋▄▆█/▍▋▌▍▌▆/▅█▊▅/▊█▅▊▍▅/▇█▌▋▌▊▊/▍▉_▅▄▇▋▊.▅▋▇▄▊▉_▇ # ▋▇██/▌▄▇▋▆▇/▊▄▇▄/▆▆▉▊▆▅/▍█▊▆▋▋▄/▄▌_▄▄▄▇▌▉▅█▆▍.▉▆▅▆▌▇_▇ # █▉▌▉/▌███▇▇/▋▅▋▅/▄▇▌▆▆▊/▋▉▉▅▌▇▊/▊▍_▋▅▋▌█▇.▉▅▇▆▊▊_▍ # █▅█▆/▉▌▉▍▆▄/▊▊▉▍/▍▋▊▉▋▋/█▉▅▍▇▆▋/▉▅_▉▄▊▄▋▄█▋▊.▋▌▅▍█▅_▅ # ▆▌█▉/█▊▊▌▌█/▌▍█▍/▇▄▍▌▋▍/▄▉▌▌▉▄▄/▋▌_▉▉▄▄▌▄▇▇▍▊.▌▇▋▅▇▆_█ # ▆▋█▋/▅▅▋▅▄▊/▄▉▄█/▊▍▍▇▍▋/▍▊▌▍▋▍▅/▌▊_▆██▊▅▋.▇▆▄▇▇▇_▌ # ▋▇▆▋/▍▅▆█▋▌/███▊/▌▉▄▆▄▌/▉▌▆▉▍▌▋/▇▊_▌▍▉▇.▅▌█▊▍▄_▍ # ▊▆█▉/▄▅▊▅█▋/▄▅▇█/▆▌▅▋▋▄/█▍▋▍▌▌▄/▇▋█▌▄▆_▄▆▆█▊.█▋▆▊▍▌_▌ # ▌▆▍▌/▍▆▍▆▍▉/▋█▉▋/▆▅▇▇▍▍/▍▍▇▆▄██/▆▄▌▌▍.▍▄▍▊▅█_▌ # ▅▌▌▆/█▉▋▌/▌▆▊▍▇▍▍/▌▍▌▊▌_█▌▋▅▄.▋▋▉█▋▉_▍ # ▌█▌▄/▅▊▌▋/▆▊▊▍▇▌▉/▄▄▆▄▋█.▊▇▇▅▊▆_▋ # ▌▆█▄/▊▊▅▌/▅▌▋▇▄▍▉/▌▅▋▌▆▅▊.▉▆▋▌█▅_▄ # █▌██/▄▌▍▆/▉▇▊▋▊▍▅/█▋▋▉▄▉▅_█▌▍▉▅▋▅▇▌▆▍.▋▊▍▆▌▍_▄ # ▊▊▊▇/▅▉▉▋/▇▋▄▅▍▅▉/▇█_▊██▋▆▄▅▉█▋_▍▇▅.▆▌▋██▌_█ # ▄▊█▄/█▇▇▇/▊▆▌▅▆▉▉/█▉▇▇▉_▉▌▋▋▉▇▆▉▅_█▉.▊▊▌█▄▍_█ # ▆▌▊▌/▌▅▍▋/▄▊▊█▆▄▅/▆▍▅▍▋.▉▄▄▌▅▆_▋ # ▆█▇▄/▉█▄▄/█▍▊▍▉▋▋/▆▊▌▋▅_█▉▇▍.▆▄▆▌▅▋_▌ # ▋▉█▋/▆▋▉▅/▍▅▍▊▇▆▅/█▍▋▌█▄▇.▄▇▊▄▇▋_█ # ▅▅▌▊/▅▍▇▄/▄▉▉▄▊▋▄/█▌▄▋▅▊▆.▅▇▇▋▇▉_▅ # ▄▅▇▋/▊▌▍▅/▍▆▆▋▇▍▆/▆▇▇▊.▄▌▌▄▊▊_▌ # ▌▄▉▇/▇▊▌▍/▍▇▅▆▄▍▅/▇▍▋█_▇▆▇▍▄▍▇.▊█▆▆▅▊_▅ # ▋▍▍▉/▉▍▊▍/▇▍▌▅▅▇▋/▍▉▌▆▆▇▊▉▄_██▍▍█▋.▋▆▉▅▆▍_▅ # ▋▇▌▋/█▌█▅/▍▌▄▍▉▋▇/▌█▋▅█▌▅▅▍_▊█▊▅▊_▊▍▅▋▋▋.▉██▍▋▄_▍ # ▉▊▍▄/▌▍▇▇/▅█▄█▆▊▅/▍▅▍▅▆█.▇▌▌▅▋▍_▌ # █▍▌█/▇▍▊▉/▍▊▊▊▋▇█/▉▅▆█.▅▇▉▇▄▉_▌ # █▅▋▅/▌▄▄▉/▍▅▊▉▄▇▄/▊▍█.▇██▅▌▇_▊ # ▌▇▌▉/▍▊▋▌/▉██▌▌▌▉/▊▆▇▇▍▉▅▅▄▋.▉▌▋▄▇▇_▆ # ██▍▋/▅▄▄▉/▌▊▉▌▉▌▅/▊▋▌▆▋▉_▇▄▊▆▌▌▇.▋▄▌▆▅▅_▇ # ▇▌▋▉/▆▆▋▄/▍▊▆█▌▇▅/▍▆▅▉▋_▄▇▆▉▇▆▊_▋▌▌▆▊██▋▌▄.▇▍█▋▇▅_▄ # ▍▇▍▍/▊▅▉▄/▉▇▇▄▊▆▅/▄▊▄▆▄_█▉▄█▊.▇▍▍▅▄▄_▋ # ▅▆▊▄/▇▊▅▋/▇▅▅▄▄▋▅/▋▅▍▌▊_▄▅▉▇▆█▇▆▅_▊▍▉▆▊▌▇▊▅_▋▍▌▉.▋▆█▄▇▌_▅ # ▅▋▆▅/▇▊▄▊/▇▋▌▇▍▉▋/▆▉▋█▍_▌▅▄▆▍▌█▇▇.▌▆▅▉▅▄_▌ # ▊▇▍▍/▋▋▆▇/▌▉▍▄▄▍▍/▆▌.▌▇▍▋▄▅_▉ # ▆▋▇█/▉▊▋▌/█▌▊▆▌█▆/▅▍▊▇▇▍█▇▇_▍▍▆▊▋.▅▄▊▅▇▋_▄ # █▌▌▅/▋▅▉▅/▇▊█▇▊▆▄/▄▊▌▉▋▇▍▉▉_█▅▄.▇▌▍▄█▋_▅ # ▋▄▌▅/▉▌▌▅/▄▆▉▌▍▉▅/▍▍▇▋▍▊█▆▇_▋▊▅▆▇█▉.▍▊▉▉▍▆_▉ # ▆▋▍▆/▌▇▍▊/▅█▆▌▍▋▊/▋▉_▆▌▉▇▍_▊▉▌▊▊▊▅_█▄▅▋█▅▍▍█▉.▍▇▅▉▊▄_█ █▌▆▌▄ ▆▄▋▅▆▄█ █▆ ▊▇ █▊▇▄ ▅█▉ ▊▋▄▊▍▅▆ █▄█▇ ▅▋▇▇█▋▄▍▇ ▌▍▉▍ ▆▆▍ ▋▌▇▄▇ ▄▆▉▄▍▊ (▅▉▌▌.▄▍▄▅ -▌▄▄▆▉▍▅), ▅▋▋▆▅ ▇▊ ▅▉▉ ▋█▄▅▉▋▆▉▅▍.██▄▌▊▌▅█▍▊▊▋▅▅▌▉▌▌▌▆ ▉▇▇▆▇▉ ▄▄▇▇▌▊█▄▋▋▋.▍▊▆▆▅▆▌▍▍▇▌▆▍▍▇▋() ▍▇▄▄▋█ ▄▌ ▄▅▊ ▋▍▇▄█▅▌▌▆ ▉▍▇▅▉▇▇ ▆ ▆▋▇█ █▍▉▊ ▊▊▍█ ▉█▅▄ ▊▅ ▍▊▆▇▅'▅ ▄▅▅ ▍▍ ▍▉█▅▌▉▇▋ (▅▆▄▋█▋ █▌█ ▊▅ ▌▇█▇▇▊▄▍▊ ▅▇▇▋▉▋) ▋▅█▇ ▋▌▌▇ █▌ - ▍▌▋▉ ▊▆▊█▍ ▄▊█▅▅█▋▊▊▉ ▋▍▇▆▊▄▇ ▇▄ ▍▆▄▄▍ ▉█▌▆▇▍, ▍▋▌▋▉ ▅▆▄▇▍ ▍▆▅▋▊▌▉▊ ▅▉▇▌▉ ▉▊ ▄▊█▉▋ ▊▉▆▋▊▄ ▄▉▋ ▉▋▇▄▅ ▍▄▌▆▇▊▌ ▅▅▋▊▄▆▆ ▅█ █▌█▊▇█▄█ ▅▊▋ ▄▍▉▌▄▌█▊ ▊▆▇▅▌▌ ███▄ ▉▌▌█▆▄▌▌▇ ▋█▍█▅▊▍▋ ▅▉▍ ▉▆ ▋▊█▆▅▊ ▉▋▌▄▉▇▉ ▌▍▊▋█▍▅ - █▊'▅ ▊▋▆█▍▄▇ ▌▉▉ ▇▄▆▍▄▍▆▇▊▍ ██▄▊▌▍▅█ ▄▍▇▋ ▄█▋█▍▆▉ ▋▉▅▍ ▋▅▋ ▋▊▊▉ ▋▌▌▋▊ ▆▊▊ ▊▄: ▍▌▋▉▅▉ ▍▋▅▉▍▄▋▍ █▇█▆█▄▆▉▋▉ ▆▉▍▇▋▉▋▇ ▉▉▋▊▇ █▊▊▋ ▍█▄▉▋▄'▍ ▇▇▋█▅ ▉▋: █▄▆ ▇▊▉▊▄▊▌▊█▆▅▋▍ ▄▊▌▆ ▇▄ ▋▍██▄▄▇▌▇▅▍▋, ▇▉▅▄▍▄ ▅▌▌▆ ▍▇ ▌▋▉█▊▋▇▆█▇▇▇▍▆█▊▊▌▉▉█▉▋▆▌▄▋▋▅█▆▉▄▅▊▆█▍▅▊ ▋▊: ▆▍▅ ▋▄▊▉▉▆▄▋▇▌▆ ▄▇ ▊▊▍▊▅▄▅▌▇▋▊▅.▅▋▋▌▋▋▆▋▄, ▄▍▅▅▉▆ ▆▌▊▆ ▇▆ ▅▇█▊▅▉▆▌▇█▆▄▇▇▉▇▌▊▄▍▆▇▉▋▌█▉▋▍▄▊▉▆▍▄▇▆▆▉▆ ▍.▍. ```▋▊▊▅▌▆ ▋▍▍▍▆.▇▄.▋▋▋▌▋▍▉▍.▆▋▋▋█▇▅▄▉( ▅▌▍▇▊▍▄▊▊▇▄.▄▄▋▇ ); // ▍▍▆▊█▇▌ ▆█▄█▌.▌▇.▇▌▉▌▇▌▇▇.▊▅▌▋▅▄▊█▌( ▅▍█▌▉▄▉▉▆▆▊.▉▇▅▄▅▇▆██▅ ); // ▊▍▍▉▆ ▄▋ ▋▅▋▊ ▄▅▇▍▇ ▉▌▌▄▆▅ ▉▋▌ ▇▄▌▉▌▋▅▍▊█ ``` ▄▉: ▆▆▍▋▋▄ █▍█▅▌▄▌▋█▊ ▇▍▉▇▆▊▍▄▌▆▇▄ █▄ █▌▌▌, ▇▉▌▆ █▄▄▋█ ▅▆ ▋ ▊▅▆█ ▉▋▍▊▆▉▇▍▌▉▋ █▉▇▋▄▆ ▍█▍▌▄█▉ "▇█▆▋▌▅▉▅ ▋▄█▋▌▆▉▋▅/▌█▍▆▊▆▄█ ▅▉▋▊▇ ▉█▇█▇▌▇ (#▉▅▋▍)" ▉▋█▍ ▍▅▍█▊▋▍ ▊█▆▋▆▆ ▇▊▊▌███▍██▍▋█▉▋▊▄▊▍▋▅█▄▉▆▄▉▉▋▌▆▊▉▄▆▉▅▄▅▇. ▄▍▉▋▄▊▆ ▆▆▄█▉_▋█▅▍▉_▄▉█▌▌▅▉▅▇▅▇_▇▆▉▍▉_▊▊▅▌▆█▉ ▋▇▇ ▋█▊▌▄▍ ▇▍▄█▊█▆, ▋▍▉▋▉▍▍▄▉█▄▅ ▋▍▄▇▊▄▋ ▉██▅▉█▄ █▄▆█▉▍▅█ ▇▍▊ ▋▄▌█▆▆ ▍▉▊▇▍▇▊ ██▌▌▋▇▌▄▆█ █▌▋▄▍▄ ▍▇▉▄▊▌ ▍▍ ▅▆▆▅▍▌▋▉ ▊▊ ▄▄▄▇ ▋▄▄▊█▉▇▉█▅▄█ ▊▍ ▇▆▍▉█▍▋▉ ▅▊▄█▋▍ ▆▅▄▌▄▊▊ ▉▄▍█ █▉▊▋▄▄█▅ ▋▅█▊█▊▅▉▆ & ▍▇▊ ▍▋█ ▆▇▄▆█▍/▇▋▆▄▄▄▇▄▋: ▄▉▉▇▍ ▋▋█▊▆▌_▄█ & ▊▊▇▉▊▅_▇█ ▍▌▄'▅ █▇▆▊▇▉ "▋▉█▌" ▋▄▊▌▊█▌ █▄▉▍▍ ▅▉▋▉█▆▊▆▅▋▉.▅▉▇▉▌▆▊▅ ▉▍▋▌▆▌▌ ▉▌▊█▋█ ▆▉▆▊▍▋▅▉ (#▌▆▋▍) ▉█▇▆▍▄▆██ ▇▍▇▊█▊▉▊ ▋▊ ▊▄▅▍▍▅▌ ▌██▉▊▋ ▄▌▋█▉▆▍ ▉▆ ▇▄▌▉▌▍ █▅▉▌▄▉ ▄▍▇▉▇▅▄ ▅▌▍▌▊▆▇ ▌▋▆ ▄█▌ ▄█▋▅▄ ▇▇▌▇▇ ▍▊ ▊ ▅▍▍▇▍▅ ▅▌ "██▇▅▆▇ ▉▅▋▌▉█▆█" ▊▆▆█ ▄▌. ▆▋█▄▅://▄▄▇▍▇.▇▍▆▍▊▄▇▍▌.▍▋▊/▊▉▇▆▇▋▇▊▄█▅▇/▊▋▍▇/▍▅▇▅▆██/▉▅_▆▌-▉▌-▆▉▄▄▉▅▍▊▍.▊▆▍ ▆▆▍ ▋▍▇▍ ▄▄ ▄▊▊▊█▅▄▋▄▅▌▋ ▌▌▌ ▅▆▅▉▄▊▍▉▄▅_▄▅▉▌▆▍▍▉.▌▆▌ █▇▅▍▌▌▍ ██▆██▄▊+ ▊▆▇▄▇▄ (#▅▉█▇) ▄▉▍ ▌▆▍▆▍▉ ▍▋▍▍ ▊▅▌▄▄▊ ▍▊▋█▆▉ ▊▊██ ▅▋▌▍▋▍ ▇▍▅▆█ ▍█▌▄▍▋▆▊ ▍▉▄ ▄▍▉▋▇▄▋▇▉▇. ▌▉ █▆▌▍▆▋▋▍▍▌ ▆▍▆▌ █▇▋█▍ █▌▄ ▊▍▇ ▄▊▇▅▋▊. * ▅▅▌ █▌▄▋▍▍▆▊▅▆▋▉: ██▉█▉▅, ▇▇▊▇▉▍, ▉▆▅█▋▅▅▄▌, ▇█▉▇▍, █▄ * ▆▆▍█▆ ▌▉▅▋ ▋▆▉▋▌▆▄▇▄▅▋ ▌▌▍▄▅▊▊▅ ▄▄ ▅▊'▊ ▇▄▇ █▄▋▋▊▍▊▍▍▉ ▇▄▄▇▆ ▆▋ ▊▆█▇▍ * ▇▉▅▇▅ ▋▊▉▌█▋▌ + ▊▆▆█▅▌▅ * ▍▅▉▇▊ ▄▋▋▌▌▄▅▊▄█▋ * ▅▉▆▌▍▇▇▋▌ ▇▆▊▄ ▍▆▉▇▆ + █▌▌▆▉▇▇▄ * ▋▋▌▇▄▌ ▅█▅▍▌▄▆▉▌▋█▇▌▄ ▊▌▉█ ▋█▊▊▍ ▍▍▍█ ▍▉▉▌▉ ▆▇ █▉▌ ▇▋▇ ▍▌▍▄ ▌▆█▇▇▌ * ▅█▉▊▅::█▉▆▍▌( ... ) ▉▇▍ ▆▍▍▄ █▉▅▄▆▋█ █▋▊▌▄▋▉ ▅▉▊█ █▍▊▅▄▍ ▊.█, ▌▋▊▌▋▅ ▌▅▍ ▋▅▌▍ ▊▅▆ █▋▊▅▅▇█▋▇▋█▍ █▆▉▅ ▇▌ ▍▋▋ ▍▍▋, ▆▊▉ ▇█▌▉▋▌▇▋▆/▇▉▆█▆▍▉▄▊▌▊▊▆▍█▅▋▇██▌/▌▌▉▌/▄▇█▆-▋▅▅▉▇▌▌▉██ ▌▇▍▅▇ ▄▌▅█ ▇▇▄█▍▆▇█▊ ▋▉▆ ▉▄▋▍▋▉▅▌▅▉▉▇▍ ▊▅ ▍▋▉█, ▄▍▌ ▅▌▊▊▅ ▆▍█ ▆▌▌▆▆ ▆▅ ▆▉▉▊▆ ▇▋▌▋▉▇▅▇▋ ▄▆▉▇▋▍▌▆ ▅▇ ▍▍▊▇▋█▊ ▇▌▋█▍▍▇ ▊▉▇ ▄▍▄▌▄▉▋▅ ▉▆ ▍▉▇ ▇▄█▅▋▇▊, █▄▆▌▍▇ ▉_▆▅▇_▆▊▆▊▋ (▆▄█▌▇▍▆▆?) ▅▋▌██ █▉▌▊▆▌▍▄ ▋▅▍▋▍█▄ ▆▄▆▆▋▉▋ █▊▌ ▄▋▆ ▌▅ ▄▅▌▅ ▌▊ █▊█ █▋▋▉ ▌▉▅▇█▆▍▅▉ ▉▋▍▊ ▄▅ ▋▆▄▋▅ ▉▄▋ ▌▌▊▇ ▋▇▌▌ ▍▋▆▉▅▊▊ ▇▄▌▍▉▊▄ ▅▅▉▇▌▅▇▄ ▊▍▋▋▆▉▋▌▆▋▋ ▊▋▆▇▉ ▄▅▊▊▋▇▊▉▅▌ ▋█▌ ▇█▊▉▍ ▅▆ ▌▇▇▅▊ ▅▊▆▋▍▆▍▌ ▄▇▋▉ ▊▇▇▇ ▅▊█▌▆▍▌▇▅ ▅▋ ▅▄▋▊▋█▄▉ ▊▇▌▆▉▋▊▌▄▊ ▅▌▊ ▋ ▍▊▊ ▍▇▇▆▋▍ ▊▌ █▋▋▆▊▄▄, ▉▋▊▍'▇█ ▌▄▉▄▌ ▊▍▆▅▇▅▄ ▍▌▅▋▆ ▌█▆▇▄ ▄▍▉▇ ▊▅▆▌▅▍▇ ▆▄▇▋▅▍▆▋▉▇ (#█▉▆▊) * ▆▌▌ ▉▋█▅▄▌▄▊▉█▍▋▄▆▅▅▋ * ▋▌▌ ▍▅▍▅▉▌▋▉▇▇▊█▆▇▇█▉▆▆▆▇▅▊▉ * ▇▍▉ ▅▆██▍█▄▍█▌▆▉▅▄█▆ * ▅▋▉ █▊▌▊▊▉ * █▉▉ ▌█▇▌▉▇▉.▆▍▌▋▍▆█.▍▊▆▊▄▅▌▌ * █▌▋ █▌▇▉▋▍█▌▉▅▍█<█>, ▄▌▉▅▇▆▍▉▆▆▌▄█.▍██▊▍▄▉▅▅█▆▋▅▍▆▅ ▋▆▄▅▌ ▊▆▉ ▊█▅▌ ▆▆▊█▉▇▄▄▇ ▌▅▍▍ ▇▌▇▇█▅▇▊ ▇ ▉▍▌▌▉ * ▆▅▌▍█▌ ▊▌▍▌▋▅▌▍▆▋▌▅▅▆▉▋▌ ▆▆ ▇▌▅▌▊▊▊▊▋▋▌, * █▍▊ ▄▆█▍▉.▉▆▇▇█▉ (▋▌▋▊ ▄▉▇▉▋ ▅▍▉▄▆) * ▅▅▉▄▅▇▇ ▌█▄ ▍▅▋▆▋▍▍█ ▊▆▍▌▍▍▊▅▉ ▌▆ ▉▅▊ ▇▋██▋▇▆▄ * ▆▌▇ ▊▋▍▌▄▌▋.▅█▌▌▇▆▆▊▇ * ▄▌█ ▊▍▌▆▋▄▋▇▆ ▊▆▊▍▅▉▆▅▋▇ █▄ █▇▊▌█▇ * ▆▅▄ ▍▅▆▌▅█▋.█▅▋▆▉█▉ * ▆▆▍ ▆▊▄█▊▋.▇▇▅▊▆█▆▊▉▅▆▋ * ▄▇▄ ▍▅█▊▉ ▉▆▉▄▋█ ▉▉▅▉▅▊▆█ ▌█▍▋▉▄▍▅▋▇▆▋▅▌▌ * ▆▉▉ ▋▅▅▅▌▅.▌▌▌▋▉▄▄▊█▊▉▉▍▇<▌> * ▊▊█ ▉▅▋▍▇▋▋▌▍▉.▌▄▇▋() * ▊▋▍▋▆▅ ▉▊▇▊▇█▇▆▆▆▋▅▉▋▊.▋█▌█▄ ▍▊▄ █▋▇▇ ▋▍▅▇▅▇█▌▌ ▌▄▊▌ ██▉▋▌▋▉▊▅ ▌▇▅▆▅▆▍ ▊▍▍ ▍▅▊ ▆▄ ▌▉▋▅▌▋▍▇▅▊▊█▄▇▉▄▌ ▊▉▄ ▌▆▌▆▆▌▅▌▅▋ - ▊▌▆▉▌ ▆▍ █▋▇ ▍▄▍▉█▋▍ ▇▇▌▄█▄▆ ▆▊▊▉▍▍▊ ▄▅ █▄▌▆▉▉▆▄█▍▅_▄::▌▆▆▋█(, ▍▌▉▇▊ ▅▋▄ ▆▅▉█▉▋ ▋▍▍▉▉ ▊██ ▋▄▋▊▉ ▌▅ █ ██▋█▄▋█▋ ▋▌ ▄▆▆▇▋▊ ▍▆█▅▍▊▋▄▄▉▄▉▉▍ ▊▍▌▌▋▅ ▊▅▊_▄▉▅.▋ ▋▉▅ ▅█▇▅▋▇.█▄▉▋▊▋▇▉() ▊▍▆'▌ ▆▅▇ █▊▉ ▍▋▉ ▇▉▋ ▍▍'▉ ▌▇▊▅ █▅▇█▌▆▄█▍▋▅▇▉ ▌▍▉▇ ▌▋▋ ▌▅▍▌▄█▋ ▌▊▅▉▅▄▌▋▊▌▊ █▅▊▄▄▄ ▇▄▄ ▍▍ █▅▄▊▌ ▇▆▆▉█ █▉▅▋▋▆▄▇ ▋▄▇▊▋▇▉ ▅ ▋▅▍█▍▇▌▌▆▄██▅ █▉█▇▆▄▉█ ▆▆▌▇▊ ▆▌▊▌▇▋ ▄▊ ▉▅▆▄ █▄▋▇▉▊▋▉▆▆ ▉▍ ▇█▆▄ ▋▉▌▅▅▇▅▄▆█ ▊▋█ █▍▇▅▆▋▍, ▌▅▊▊ ▄▋█▍▆▊▉▌█▄ ▍▍▇▅ ▍▅▍▋▄ ▅▄▍▅▋▇▅▋▄▋▇▅▊▌▆▄▇ ▌▅ ▋ ▉▍▋▇▇▉▍▄▄▇▊▍▅▅▉▉▅▊▋▊ ▄▍▉▅▄ ▌▇ ▅▄▄ ▉▆▌▍█'▆ ▆▉▋▆▇▅▋▊▄▇. ▄▉▆▊▍▊▅ █▋▊█▊▇█▆ ▌▍▄ ▌▇▅ ▆▊▇▇▉▍▉▆ ▍▆▍▄▊▌▌▌ █▄▌▅▇▅▌▋▊ ▆▆▍▉ ▅▊▋▋▆▌ ▌▍▆▇▋▉ ▅▋█▉▉▊▊█▍▉ ▍▍▅▋▄▌▉▋ ▇▊▉▋▌ ▉▅ ▇▇▍▍▍▅ ▋▅▉ ▆█▇▆▅▉▊▉▉ ▉▋▋▉ ▉▌▄▇▉▄'▄ ▄█▍▌▇ ▅▆▊█▄▇▅▌ ▉█ ▉█▆▊ ▌▄▍▅▆▋▇ ▋▌▅▍▉▊▋ ▄▉▋█▉▍ ▍▆ ▍▅▉▆▉ ▍▍▄▆▉▄▌ ▅▄▅▆▋://▅▍▇█▉.▉█▊█▋▄▋▅▍.▇▊▊/▄▌▊▄▅/█▌▋▌▇▉▋▉/▄█▉▋-▇▍▉_▋█▊▄▉▅▅▌▇▄.▊▊▅ ▉▍▆▊ ▋▍▉▉ ▋▊▅▍▍ ▍▋▊▅█ ▉█▅▌▊▅▊ ▉▄▇▍ ▇▋▋ ▌▉ ▍ ▄▅▌▄▇▇▄▍ ▋█ ▄▊'▅ ▇▆▅▊▄▅▄ ▋▇▅▄▆▍ ▆▊█▌ ▇▄▇▍▋ ▉▇ █▅▅▅▌▌▊▉▌▌.▍▊▅▅▋ (▊) (#▉▆▋▄) ▌▌ █▅ █▉▍▅▍▆ ▅▊▋▌▆▌▄▍ ▌██ █▇▄▆▍▆▊▊ █▋▋▍██▊▋▄▊ ▇▌ ▉▉▉ ▊▇▍▆ ▍▌▊▉ █▆▊ ▇▉▇▌█▆▆. █▉▉█ ▊▆ █▉▅▄ ▆▉▉▌ ▍▋ ▇ ▍▍▄▋ ▋▌▆▇▋▌ ▄▅▇ ▅▆▄▊▄▍▄ ▆▊▊▋▇▋▉▆▍▊ ▋█ ▋▍▌█▆▉ ▋▋▆▄▍ ███▋▌▄█▍. ▋▄▊▅▇▇▆█▄▆ ▍█▄▄▉▇ ▇▇▋ ▋▅ ▇▅ ▋ ▅▋▅▇▌ ▍▊▆█▋▍ █▅▌▉▅▄ ▄▊█▇▊▌ ▇▌▅ █▉ ▇▊ ▌ █▌▌▍▉ ▅▌▉▅▊▊ ▍▇▄▅▅▉ ▌▉▋ ▄▋▊█ ▉▌ #▌▉▊▉ ▅▍▋ ▍▉▊▇▌▍▍▅ ▉▉▌▊▊ ▉▆▋ ▄ ▌▋▋ ▍▋▋▅ ██▋▇▇: - ▌▉▉▋▆ ▇▉▉ ▌▊▌▊▉ █▅▋▋▌▇▉▌ ▊▊▇ ▅▌▅▌ █▍█▆▊▌▊▍▇▍ █▅▋▅ ▆▆▌▅█▆▉, ▇▊▊█▋ ▉▅▌ ▅▊▇▆▊ ▄▌▆ ▊▍▋▌ ▆█ ▌▇▅▋ ▊██ - █▄█▌▇ ▅▆▌ ▌▌▆▉▄ ▆▆▄▍▄▅▇▍ ▆▅▊ █▆▍▌▆▆ ▄▍▊█▊▊▍▇▇▍▊ █▌▅█▆▅ ▆▉▇▅▋ ▉▅▉▆▌▋▇ ▄▆ ▇▊▉▌▇▌▊▉▊, ▄▉▋▅▊ ▉▇▄▆▅ ▄▋▇▌ ▄▇ ▇▉▍▇ - ▋▆▄ ▆▋▆▌ ▇▆▄█ ▉▊▌▆▊ ▍▇█ ▍▍▌█▅▄ ▉▄▋█▉▄ ▇▋ ▆▍▌▉▉█ █▋ ▄▋▆▋▉▄ █▊█▇▍▄▍█▍ ▋▌▆▆▅ ▄▌▋ ▍▅▌█▍ ▇▄ █▍▄ ▆▌▄▆███▊ ▅▍▅▄▆▌ - ▋▍▄ ▋▇▅▆ ▊▅▍▆ ▉▋▊█ ▆█▍▄▍▊▊ ▌▉▇▋▋▉▍ ▍▊▍▌ ▄▊▍▆▇▄▋ ▋ ▊▊▄▍▌▋ ▌▅▌▉▅▄ ▇▅▅▄▉▇▉▇ ▋▊▆▇▇ ▋▊▍ ▉ ▍▄▌▆▅▄▍▌ ▊█▍▍ ▇▄▇█▍▉▌▉▌▋ ▍▉▇ ▄▍█▊▊ ▅▄▌▊▍█▇ ▋▅▅▆ ▆▍▌▊█▇▉ ▍▍█▅▌▇▊ ▆▅▇ ▌▅▄▉▅ ▍▇▌▄▋▅ ▌▄▅█▊ ▇▊▌▄▍ ▍▋▇▉▋▆ ▍▆█▄▊▇▍ ▍▄▅▊▅▍ ▉▋▇▊▇▄▌▇▋ ▅▄▍▇▄█▍█ ▊▄▇▋ ▇▊▉▊▉█▅ ▅▇▉▊█ ▍█▆ ▊▄▄█▌▍ ▅▄█▄▇▇▉▄▊. █▊▋▅▆▄ ▋▄▌▉ ▋▅█ ▉███▉▆ ▆▇▊▉ █▌▅▉▅▉▅▅, ▉▅▋▅ ▍▋▌ ▆▅▌▄▅▍▅ ▋▋▉▍▉▍▋▇ ▋▆▌▅▆▆▄▉ ▉█▋ █▆▄▊ ██▋▉ ▇▄█ ▇█▊▇▅▇ ▄▅▄▆▇▅▇ ▉▇▌█▉▅▊▇. ▊██▍▋▅ ▅▉▌▇-█▆▇▌▇█/▍▅▋█▇█/▉▅▄▊ ▄▅▉▇ ▍▅█▅▋▄▅ █▇▅ ▍▊▆▌▌▌ (▄▊▍█ ███-▅▍▆▍▇▌ ▅▄▍▍█▇▇▌▆ ▅▆▆▉ ▌▉ ▉▋▅▊▆▆::▉█▅▅▌ ▉▋▇ ▅▉ ▅▋ ▉▆▄▍▊▋██ ▄▌█▊) ▅▍▊▌▉://▆▄▆▅▊.▉▊▌▋▊▌▊█▄.▊▅▉/▍▉█▊/▄█▅▋▅▋▍█/▄▌▍▌-▋▍▉_▌▊▍▊█▅▍▄▊▌.▊▌▌ ▉▉▍▄▇ ▍▆▉▄▇▉▌ ▋▇▋ ▋_▌▋▊_▄▅▆▌▄▍ ▄█▅▇▉▌ ▉▌▄▍ █▍▌ █▌▋▍▌ ▇█▌▊▌▆ ▇▌▅▍▋ ▋▆▋▍▅▇█▅ ▅▉█ ▄▍▊ ▇▆ ▌▍▆▌▆▅██▊ ▄▇▊▌▄▋ ▋▉▄▇▋▋/▍▋▅▇▊▌ ▆▍▇▌▄█▍█▌▍▄█▉▋ ▇▆▄▄▌ ▆▄ ▌▋█▌▇▊▉ ▌▅▄▉▊▇▆▉▆▆▇▆ ▍▊ ▌▋█▊▋ ▍▇▋▋▅█ █▋▇▆▍▄▊▌ █▉▊ ▌▉▌▆▉▌▍▌▋▉▆█▍ ▍▍▆ ▊▊▅▅▇▍▄▅▊▌▆▇ ▅▊██▄▆▌▍. ▋█▇▉ ▋▍█▍▅▆█ ▆▍▌▄▅▆█▆▍▉▊▊. ▋▉▊▊▄▅▋▇ ▋▄▄▉ ▅▇▉▇█▉ (#▅▍▇▇) **▄▇▇▉:** ▇▅▊▍ ▍█▄▋ ▊▄▅▇ ▇▋▇▍▋▆▌▆▍▌▋▅ ▌▇▇▊▇ ▇▉▆▆█▌ ▊▊ ▋▅▊█ ▇▊ █▅▄▅█▊▇▊. ▋█▄ ▊██ ▉▅ ▉▄▇█ ▇▉▌, ▄▌▌▋▆ ▍▄ ▆▌▉▅ ▆▍▋ ▅▍▄▍▊ ▋▌▆▋▇. ▅▅▉ ▉▊▄▍▆▍▇▄▇▉▌▅▋ ▊▆▆ ▅▇▆ ▊██ ▄▆█▋▌▄ ▌▅█▊▅▇ ▉▉ ▋ ▉▍▆▊ ▊▌▇▆▌▍▄ ▊▍▊ ▄▍▉ ▅▄▉ ▌█▉▅▇▆▆ ▄▅▍▇▅ ▊█ ▉▇▍▍ ▋▉: ▊▄▉▌▋://▇▌██.▋▉▆▉▄▍▅▇▅.▆█▊/▇▄▌/▉▍▍▉▄-▊▄▉▇-▉▌▌▍▋▇-▍▇▋▊██▅▉▉▉ █▄▋▋▇▍▇: - ▍▊▆▌█ ▇ ▇▋▋▄▌ ▄▆ ▄▅▊ ▌▇▄▍ ▊▊██▇▇▍, ▊▊▆▌▄ ▉█▌▆ ██▉▄▇▌▋▇▆ ▉▇ █▆█▌▇▆▄▋▆▅ ▋▉▄█▋▅ - █▅▋█▋▆▍ ▅▇▌▄▉▋▌ ▅▅▋ ▄█▇▅▇█▌▉ ▋▊ ▄▊▍▉ ▊▊▋▇▅ ▉▅▊▆▇ ▇█▉▆ █▍█▄▉▋. - ▄▍▇▍▄▋▌▌▍▊ ▌██▆▇▍ ▄▉▍▊ ▉▇▅▄▌▌▍ ▊▅▌ ▅▄▅▅█▊ ▆▋▆ █▊▆▊▊█▌▄ ▆▌▉ ▌▌▅▍. - ▆▊▋▆▄▅▌▆ ▋▅█▌▇▆ ▋▊▊▆▇█▄▆▊▉▊▄▌ ▊▋▊▍▇▌▆▍▌ ▌ ▍▋▅▊▇▉▉ ▆▊▉▋█▅▌▊ ▉▋ ▌▍▍ ▆▊▄▇▅█▅ ▅▄▍▅ ▇▍▋ ▋▉▆▋▋▋▅▆ ▍█▅▅ ▊▋ ▇▌▅▇/▄▌▊▇ - ▊▋█▌ ▇█▆▊█ █▉ ▇▅▅▇ ▍▅▅▌▄▋▉▅ ▄▌▇▋ ▅▌ ▋▇▅▅▇▌█▆▌▇ ▊▍ ▇▄▊▊▆▊▆▉▅ ▆▌ ▍▉▊▅▉█▍. - ▄▊▄▌ ▋▅▇▆▋▆ ▌▊▆▌ ▅▄▇ ▉▉▇ ▊▊▉▊▊█ █▅▉▋▋▌ ▌▌▇ "▄▍█▇▉▆▍▍" - ▍▊▉▍▄▋▉ ▆▉▄ ▄▇▇▅█ ▅▆/▊▆▊▍ ▉▄▌█▉▅▅▍▆▍▅▊ ▋▉▍▅; ▉█ █▄▉▅▋▋ `▉▍▍▉▇▅▍▄▇/▍▇▊▋▉▉▊█▇▆` ▅▍▊▉▉█ ▄▊ ▆▌▉ `██▇▄▌▉▆▉▉▅▍▄▇▋` & `▅▇█▍▍▋▊▆▌▉▌▍▇▇▄▆`. █▋▆▋▉▍▆▊: - ▊▍█▌▋▅▆▌▆▌█▅▊▊▇▄▍▅▉.▌▅▍▅▌▉▇▋▆▌▉▆▅▄▋▇ & ▍▇▌▉▋▇▄▊▉▌▍▊▋▇▅▌▇█.█▉▋▌▉▆██▍ - ▍▋▉▆▄▌▇█▊▅▊▋▉▅▆▉▍▉▊.▍▌▋▋▌▋▊▅▉ & ▄▌▉▅▇▇▄▍▄▊▍▌█▍█▊▊▊.▍██▆▉▋▋█▅ - ▆▄▊█▇▊▋▇▌▊▉█▅▄▇▉▇▊▌.█▌▆▄▆▅▋▋▅▌▇▋ & ▇▌▆▌▌▇▅▊▅▊▊▊▄▅▆▋▇▄.▋▅▄▍▍▆▄▍█▇▊▍ - ▊▉█▌▆▉▍▆█▆▅▄▊▌▅▉▍▅.▌▍▇▄▅▅▊▇▌▍▋▍▌▋▍▅▍ - ▅▅▆▌▊▋▅▊█▍▄▆▅▄█▄▇▉.▊▉▊▇▇▅▌▋▄█▉▇█▄█▌ - ▄▇▋▆▆▆▆▇▊▅.▊▄▊▍▆▌█▆▆▊▇▋▌▄▄▌▋▊▄ - ▄▉▄▋▇▄▅▆▅▆.█▆▆▋▅▉▋▄ - ▅▅▊▍▅▋▌▉▆█.▋▅██▊▇▉ - ▊▊▇▇▌▅▊▇▄.▌▇▄▄▋█▆ ▌▉█▇▅▇▆▍ [#▋▋▊▉](▍▌▍▊-▍▅█▍█▊/▆▄▄▉▅▍/▉▉▆▋) ▆▌▉ ▌▅▄ █▆▇▇ ▊▅█▅ ▇▅▌▊▅▌▆▉▌▅ ▇█ ▇▊▆▆█▆▉▍ ▆▄ ▆▅▉▍▋▆▉ ▄▄▅▉▌ ▆▍▅▌-▇██▊▄█/▉▋▋▌▄▄/▍▇▊▉ ▌▆▍ ▋▅▆ ▄▄▄▋ ▄▆▌█▇▇ ▅▉ ▌▅█▉ ▄▋▉▌▆▍▆█ ▅▊▉▍▄▍ ▍█▋ ▅▇█▊▇█/▇▍▆█▋▍▇ ▉█▅ ▆▆▆▅▇▄▅() ▋▉▉▇▊▌▇ █▇ ▋▌▊▋ ▍▍▋▇▆ ▍▍▉▉▉ ▋▅▄▌▋▋: ▋▆█ ▅▅▋▅▋▄▊▄▌ ▍▇▆▉▌▊ ▆▇▉▌▌█▄ ▊▆▄▌▆ ▊▄▊▋▉ ██ ▉▊ ▅▋▍▇▊▌▄ ▉▅▇▆▇ ▇▉▇▅-▍█▄▄▉█/▅▍▋▍▄▆/▅▌▋▅ ▇▄▄▉▉: ▉▆▉▄▄▄ ▋▉▍▇█▇▉▊▄▇█▄▋▊ ▄▉ ▊▌▌▇▇▉▅ ▍▆█▋ ▊▇▆█▄ ▉▇█▇▌▊▉▍▊▅ ▋▋▍▄▇▍█ ▄▉▋▆▊▋ ▅█▍▄▍▉▌ ▆▋▍'▇ ▉▇▆ ▋▊ ▄▆▍▋ ▅▋█▄▆ ▅▌ ▆▇▊▋▋▌▊▆▍ ▍▉▉▇▋▍ ▍▌▉█▄▊▊█ ██▇▍▊ █▄ ▌▌▌▊▊▍▅ ▅▊▊▊▄▋▊▉ ▋▉▍▆ ▋▉▉▋▅▅▉▍ ▆▆█ ▍▄▌▍▄▋▋▊ ▅▍ ▌▊▍▌ ▇▊ ▍▋▍▋ ▌▍█▊█▇▄ ▊▉▄▄▌ ▍▆▋▊▆ ▌▊▋▍▌▋▆▌▍/▊▍▋▉-▊▆▆▉▉▍#▉▅▉▊ ▊▄▅▅▍▄▋ ▊▅▊█▄▄▅▋▍▅▅▋█▋▅▌ ▍▇▌▊ ▇▊▋▄▄▇▍▅▍▋ ▊▇ ▌▆▍▋▅▅▉▅/▅▌▊▌█▇▄ ▍█▅▅▋ ▅█▇▄-▇▉▇▋▅▄/▋▅█▌▍▆/▌▇▋▌ ▌▋█ ▉▍▍ ▊▋▇ ▄▊▌▉ ▍▆█ ▌▌█▉▋▌▍▄▄█▇▉█▋▄▄ ▇▇▍▇ ▍▌▄█▌▊█ ▅▇▍▊▉ ▊██▍▍▅ ▅▍▋█▉ █▉▅▇▉▍▊█ ▆▍▌▉ ▄▌▍▋ ▅█▌'▋ ▄▌▋▌▍▆▅ ▄▅▅▍▊█▆▊▍▋ ▇▌▅▋█▇▉ ▌▍█▅▄█▍▉▍▊ █▉ ▋▆▇▆▌▉▆▄▄ ▅▄▋▅-▍▍▌▉▋▄/▊▉▆▄▄▌/▄▄▋▆ █▋▌▌ ▄▅▉▍ ▉▇▅ ▆▆▉▊▌▋▍▄▉▅ ▍▅▊▌▄▉▅▆ █▌ ▉▉▌▉█▆▌▅▌ █▌▄ ▇▌▇▆▊ █▅▅▄▍▅▄▉▉: ▅▄▄▊▇▊▅ ▉▊▊█▄▅ ▊▌▌▆▄▇▍ ▌▌ █▋▌ ▋▅▇▋▉▇▋▍▍, ▄▌▅▆▅▅▍▌ ▅▋▌▊▆▉▆▅▊/▅▋▊▋-▇▉▆▋▉▉#▋▋▄▇ ▊▄▆▉▍▋▄▍.▅▍▍▊▊▌▅▉▉▄▉▌▆▄▇ ▆▋▆▌█▉▉▅ ▅▄█▆▊▄▄▆█▊▅▉ ▊▌▊▌▇▉▄▄▋, ▅▅▄▊▋ ▍▋▋▌▉█▊▌.▋▊▆▊▉▉█▌ ▅▆▅█▊ █▄ ▇█▍▉██▄▌▇▊ ▌▄ ▆▉▉▅▊ ▍▋▄▄▊▋▍ █▊▍▍▍▍▅▄▉▋ ▇█▊ ▍▅█▋▋▍▄▊▉▅▆▉.▄██▌▇ ▍▋▋ ▍▄▌▉▄▌██▌█▉▆.▅▉▋▌▇▇▇▊▊▇ ▍█▊█▌▉ ▋▅▆▋▉▊ ▋▍▆▍▊▌▉▊▌▄ ▊▍ █▉▊ ▉▉▍▊▄▅ ▉▄█▌ ▊▍▌▊ ▊▆▋▋ █▋ ▌▊▇▋█▅▄█▍▋ ▊▍▇▌ ▅▊▆▄ █▉ ▅▌▋▅▄ ▌▊▍▅▌▌ ▆▍▌▌▍▅▆▆▍▄. ▄▄▋▅▊: ▊▄▉▄-▄▋▆▍▊▍▌▆▊▉/▉▄▇▅▌▇/▄▉▄ ▆█▍ ▋▉█▄▋▄▍ ▇▆ ▉█▅▋▅▄▍▅▌ ▄▍▊▋▇▄▋▍ ▌▌▉ ▅▄▆▊▅▍ ▋█▉▅▌ ▇▆▇▍▉▅▇▋▇ ▄▇▅▅█://▇▄▅█▆.▌▆▅▌▄▉▅▉▊.▅▆▉/▉▊▆▉▇/███▊▉▄█▉/▌▌▄▅-▌▌▊_▄▇▇▊▆█▆█▇▊.▋▉▅ ▉▋█▍▍▍ ▊▋▍▊▆▅▊▆▆ ▊▅▇▌ ▇▊█▆ ▇▉▇▌ ▅▍▄▍▌▉▆▄▄ █▅▆▌▆▌, ▄▊▄ █▉ ▆▄▋▆ ▆▍▆ ▉▄█ ▅█▉▅ ▉▋ ▌▊█ ▊█▆ ▅▆▄▅ ▍▅▋▇▊▆▄▌.▊▅▅▌▋▍ ▆▋▍ ▉▆▊▊▋▊▄ ▆▍▊▌▅▍▌▉▆, ▅▍▅▋▊▌▌ ▇▋█ ▇▉▄▍ ▉▇▊▆ ▉▍ ▇█▆█▊▅ ▊▊▆▋ ▊▇ ▊▉▉▍▅▄▆▋█▇▍▆ ▇█▆▄▅▉ █▊▆▊▍ ▊▋▊▄▉ ▆▆▅ ▄▌▄▍█ ▇▉▅▊▄ ▌█▍▉ ▍▄ ▅▍▉█▊▆▍▄▍▊▍▆▉▍▋() █▆ ▆▍▇▇ ▉▋▊▉▇▋▊▇ ▅▍▅▋▉▍▊▊ ▋█▋▍▍ ▄▌█▇▊ ▋▆▇▆▋▉▊▋ ▊▅ ▍▌▆█▆▊▌▊▌ █▍▄▅▌█▋▆█▇▉▍▆ ▆▋▄█▄ ▌▅▉▅ ▌▆ █▋▌▅▆▊▇▅▅ ▉▌▋▋▅▉▋▄▇▅█, ▅▆▊▊▉█▌▊ ▍█▇▇▅▋▊▄▊/▉▍▌▄-▇▌▋█▄▇#▆█▅▅ ▅▄▇▄▅▄▆▊▌ ▌▊▆▊▆█▊▍ █▉▄██▆█ ▌█▍▅▉/▄▉▆▋▇▅▇▋▋ ▉▍█▍ ▄▄ ▇▄▅█▄▇ █▋▍▄▋▊ ▋▍▆ ▋▅▄ ▅▋▆ ██▇▄▅▌▆ ▍▉▊▉▇ ▆▅▋▆ █▅-▅▊▌▆▋▊█▉▌█ ▋▌▇▋ ▆▌ ▌▊▌█▌▉▅▋▇ █▅▇█▋█ █▊▍▍ ▅▇▅ ▋▊▉▉▄▋▆▊▆ ▋▄ █▆▅█▍▆▉█▄▍▇█▅ ▄▄▄▇▆█ ▌▅█▊▍▅▍▇▉█▉▊▅▇▆▄▉▇ ▄▊▊ ▇▊▇▆ ▇▆▇█▍▊▍█ ▋▍▍▄ ▉▅▆▄▍▄▄█ ▆▅▅▌/▄█▊▆ ▉▋█▉▄ █▉ ▍▊▌▉▋▊ ▆▇▇▇▄▄ ▅▋ ▊▋▇▊▌▄▅▄ (█.█. █▄▊▌▍▉▇▍ ▄▉▆█▄█▆▌▍) ▋▋▉▄█ ██▍▄▄▍▆█ ▇▌▅█▅ ▋▄ ▇▇▋▍▅▍▉▉▆. ▋▌▇▄▄ ▇▆▍█-▍▉▅▍▍█/█▋▊▆█▆/▉▇█▌ ▊█▍ ▉▌▉▌▍▋▇▆▉ ▅█▍▉ ▅▄▅▆▌██ ▇▉▇▇ ▇▄▍▆▉▌▆█▍ ▇█▉█ ▊▆▅▊▆▍▉▅▆, ▌▄█▅▆▍▅▍ ▊▄▉▆▉▌▌▅▊/▊▍▄▄-▆▋▉▋▉▊#▆▋▄▉ ▌▅▅▆▌ ▋▇▊▆▆▍▊▇▍▅▅ ▇▇ ▉▉▇▉▅▆▉▇▌ █▊▇▌ ▆▊█▊▅▇▊ ▄▇▇▍▋▋▄ ▊█▉▉ █▆▍▆█, ▆▇▍▍ ▋▉▍▌ ▍▌ ▇▋▄▍▇▄ ▋▋▇ ▆▆▇▋▇▅▍▍▆▍▅ ▄▍▍▅ ▆▆▅█▌▉█ █▄▍█▆▉▉▆█ ▋▉▉ ▄▆▌▊ ▊▋▌▉▊ ▍▋▋█▌▍▊▄ ▍▇▌▌▋▋▇▌ (#▍▍▇█) * ▄▉█▉ ▇▍▌▇▊█▊▄▍▋ ▉▆▅▍█▊▌▅ █▇▋▋▆▉, ▉▋▋▌▉▅ ▊ █▇▆▄▌▄▇█ ▉▋▋▍ ▄▅ ▅▋▍ ▉▊▉▍▄ ▄▌▉▋▆▌▍▋ ▌▉▋ ▅▅▌▌▍▉▉▉▊ ▍▊▍ ▌▆▇█▄ ▋▆▌▊ ▋▇▆ ██▅▌█▉▋▌ ▆▆▌▄▆ ▍▄▍▄▄▆▅█▍ ▋▉▌▇ ▍▍▉▊▄█▋▊▇█ █▋▄▅▅▋▊ ▊▇ ▇▆▅▋, ▇▌▊'▉ ▆▌▉▋ ▊▍ ▅▊▌▇▉▅█▆▊ ▉▊▉▆▍▄▍▊▆▅ ▅▉ ▅▋▆▆ ▌█▍ ▉▋▌▊▌▌ ▍▉▇█▅▉▍ ▄▉▉▅ ▌▉▊█▇▆▇▊ ██▍ ▌▉▅ ▋▊█▋▌▊▍▊█▄, █▉▅▅▊ ▅█▉▆ ▄▇▇▌█▅▉ ▉▄▇█▍▋▌▇█ ▌█▆▊▍ ▆▅▄▉▍▌▄ ▅ ▄▆▍▇▊█▋█▋▄▊ ▇▅▌▇▄▅ ▋▋▌▋▋://▋▅▍▆▌.▆▆▇█▇█▇▄▄.█▉▅/▇▉▍▄█/▊▇▋▇▋▄█▆/▄▅█▆-▉▋█_▇▊▉▅█▉▆▌▌▋.▇▉▉ ▊█▇ ▋▊▇▉▉▉▉█▅▌▆ ▆▇ ▌▋█▋ ▄▋▋▄▌▊▌▇█▍▉ ██ ▌▉▊▌/▋▊▆▆ ▍▋▄▄ ▄▉▇▍ ▉▍▍▌▌█▌▋▇▍▄█▅▅▉▍▍ ▊▄▊ ▊▉▄▅▆▉▅▄▊▍▋▄▉█▍▍▉▊ ▊▇▋ ▍█▌▉▌▅▌ ▆▅ ▄ ▇▉▊▇▍▍▋▊▇▆▌▅▇▅▄▌▋▅▉▇ ▇▄▊▌▋ ▄▅▊██▇ '▋▉▌██▌' ▄▍▄▋ ▄▇▅▍▌▄▋▉▍▇-▊▊▋▋▇-▍▋
24 Days Ago
Fix duplication of bone gameobjects on save/load when both CreateBoneObjects and CreateAttachements are enabled on a SkinnedModelRenderer
24 Days Ago
Ensure sceneundosnapshots are only disposed once Disallow undo/redo while an editor action is underway (e.g. dragging something) Plays relaxing sound if attempted. Fixes sbox-issues/issues/7397
25 Days Ago
Add comment to reference rewiring
25 Days Ago
Handle cloned references to the prefab root when root is referenced from list or other nested properties. Fixes: sbox-deathmatch/issues/100
25 Days Ago
Throw if attempting to clone invalid gameobject
25 Days Ago
Make sure all components captured by UndoScope are valid
25 Days Ago
Don't process implicitly created components in PostClone sbox-issues/issues/7459
25 Days Ago
Bump navmesh agent ground trace distance even more
25 Days Ago
Fix NRE and undo for MaterialDropping
25 Days Ago
Refresh PrefabCacheScene when prefabfile is reloaded/changed Fixes sbox-issues/issues/7458
26 Days Ago
Clone: Ignore initialization of objects that where implicitly created during cloning
26 Days Ago
Scene Delete: fix selection change causing wrong items to be deleted Fixes sbox-issues/issues/7457
26 Days Ago
Use IsValid() instead of null check
26 Days Ago
Fix NRE when trying to undo snapshot parent for scenes/prefabs
26 Days Ago
Fix NRE when last gameobject in hierachy is dragged Fixes sbox-issues/issues/7456
26 Days Ago
Improved undo system (#1775) **Goal:** Move away from snapshotting whole scenes as much as possible. Get rid of edit log, mouse up hack and other stuff. The documentation for the new system serves as a nice summary for the API changes added in this PR: https://docs.facepunch.com/doc/scene-undo-system-d4mhnmtil1 Changes: - Fixes a third of our undo actions, which were partially or completely broken - Removes EditLog and replaces it with scope based undo system. - UndoScopes define what objects and events are captured for undo. - Internal system automatically generates a minimal snapshot of all changes made and restores them on undo/redo - Full Scene is only captured when an Gameobject or Component is deleted. - This should make the new system faster and "snappier" - Removes the mouse up/undo accumulation hack; By adding `StartEdit/FinishEdit` events to our `ControlWidgets` & `SerializedObject`. Obsolete: - ISceneEditorSession.AddSelectionUndo & SceneEditorSession.OnEditLog - ISceneEditorSession.OnEditLog & SceneEditorSession.OnEditLog - ISceneEditorSession.RecordChange & SceneEditorSession.RecordChange - SceneEditorSession.PushUndoSelection - SceneEditorSession.FullUndoSnapshot - UndoSystem.SetSnapshotFunction - UndoSystem.Snapshot - GameObject.EditLog - Component.EditLog Resolves [#4477](sbox-issues/issues/4477)
26 Days Ago
Prefix undoscope functions with `With` Fix transforms being undone twice when restoring scene hierarchy on undo/redo Fix propertyeditstart/propertyeditfinish events on rotationcontrolwidget Fix undo for multi selection
26 Days Ago
Modify recast/detour deacceleration logic to prevent overshooting of agent target position Add documentation for Acceleration property. Bump default acceleration.
26 Days Ago
Fix NRE in PostClone
26 Days Ago
Bump nav agent ground trace distance
26 Days Ago
Improve default nav agent ground trace logic Should improve ground detection behavior when passing under low height overhangs. Should also fix issues with clipping, when the navmesh geometry diverges too much from the actual physics geometry. Closes sbox-issues/issues/7432
26 Days Ago
Revert "Bindless lightmaps/Lightmap Combo Removal (#1765)" This reverts commit 1fdcdeab689851f1093853faa8d8b4d6041d63f7. # Conflicts: # game/addons/base/Assets/postprocess/ObjectHighlight/objecthighlight.shader_c # game/addons/base/Assets/shaders/atmosphere_sky.shader_c # game/addons/base/Assets/shaders/blendable.shader_c # game/addons/base/Assets/shaders/foliage.shader_c # game/addons/base/Assets/shaders/fur.shader_c # game/addons/base/Assets/shaders/gizmo/gizmo_grid.shader_c # game/addons/base/Assets/shaders/gizmo/gizmo_line.shader_c # game/addons/base/Assets/shaders/glass.shader_c # game/addons/base/Assets/shaders/line.shader_c # game/addons/base/Assets/shaders/lpv_debug.shader_c # game/addons/base/Assets/shaders/sprite.shader_c # game/addons/base/Assets/shaders/terrain.shader_c # game/addons/base/Assets/shaders/terrain_brush.shader_c # game/addons/base/Assets/shaders/terrain_preview.shader_c # game/addons/base/Assets/shaders/tiled_light_culling_cs.shader_c # game/addons/base/Assets/shaders/ui_backdropfilter.shader_c # game/addons/base/Assets/shaders/ui_basic.shader_c # game/addons/base/Assets/shaders/ui_borderwrap.shader_c # game/addons/base/Assets/shaders/ui_cssbox.shader_c # game/addons/base/Assets/shaders/ui_cssshadow.shader_c # game/addons/base/Assets/shaders/ui_dropshadow.shader_c # game/addons/base/Assets/shaders/ui_filter.shader_c # game/addons/base/Assets/shaders/ui_text.shader_c # game/addons/base/Assets/shaders/vertex_color.shader_c # game/addons/base/Assets/shaders/water.shader_c # game/core/shaders/black_unlit.shader_c # game/core/shaders/cables.shader_c # game/core/shaders/complex.shader_c # game/core/shaders/complex_reflections.shader_c # game/core/shaders/cs_volumetric_fog.shader_c # game/core/shaders/debug_wireframe_2d.shader_c # game/core/shaders/decal.shader_c # game/core/shaders/depth_only.shader_c # game/core/shaders/eyeball.shader_c # game/core/shaders/generic.shader_c # game/core/shaders/hair.shader_c # game/core/shaders/post_process.shader_c # game/core/shaders/projected_decals.shader_c # game/core/shaders/projected_sheet_decals.shader_c # game/core/shaders/simple.shader_c # game/core/shaders/skin.shader_c # game/core/shaders/sky.shader_c # game/core/shaders/spritecard.shader_c # game/core/shaders/static_overlay.shader_c # game/core/shaders/tools_shading_complexity.shader_c # game/core/shaders/tools_solid.shader_c # game/core/shaders/tools_visualize_collision_mesh.shader_c # game/core/shaders/tools_wireframe.shader_c # game/core/shaders/ui.shader_c # game/core/shaders/visualize_cloth.shader_c # game/core/shaders/visualize_nav.shader_c # game/core/shaders/visualize_physics.shader_c # game/core/shaders/vr_tools_shading_complexity.shader_c Build shaders If we have any command line arguments from the Steam client (sbox.game -rungame), parse it via ISteamApps.GetLaunchCommandLine Expose Application.ShutdownUnitTest() Throws if not currently running a unit test Make sure it doesn't run in headless (errors out on dedicated server) Some tidy up - data table ReadFilter instead of other method, reset delta snapshot cache on owner change and after network refresh is received Add Simulate Packet Loss alongside Simulate Lag in editor network options - it's working for simulating outgoing lost packets from the host right now VR: Remove obsolete controller checking bools that nobody's using VR: Add IsHandTracked bool to VRController, update fpxr to 5cf7ff24f5b157166102c8e4898bb84b4accb952 VR: Add MotionRange to VRController.GetJoints, update fpxr to 8822f0461709fbd2eda8fe004d51af79d47e6aa9 e.g. ```csharp Input.VR.LeftHand.GetJoints( MotionRange.Hand ); // default Input.VR.LeftHand.GetJoints( MotionRange.Controller ); // tries to wrap hands around the controller ``` VR: Better controller interactions in menu, move panel to a more comfortable height Reapply "Bindless lightmaps/Lightmap Combo Removal (#1765)" This reverts commit de7b93d17c7a036a567347794ca51163132ef42a. Reapply BATCH_FLAGS_CONTROLLING_COMBO_CHANGES for legacy shaders, accidentally removed binding lightmap for legacy shaders Initialize vertex output of lightmap uv when lightmapping is disabled Update drivers with bindless lightmaps & amd fix Humans/animgraph: added Sprint_NW & Sprint_NE Don't accept "game" command while Application.IsEditor Compute Shader Skinning (#1786) Calculate skinning in compute shader instead of vertex shader Compile shaders Can now right click on a Shader to "Create Material" from it. https://files.facepunch.com/CarsonKompon/2025/January/24_17-29-EmptyPony.png Fix typo in MaterialMenu add octohedral_encoding.fxc include Forward+ Decals (#1606) GPU driven tile culled decals that modify their surfaces PBR properties. No additional draw calls for any decals. * PBR modification: Albedo, Normal, Roughness, Metal, AO * Works with transparent surfaces as it's not projecting based on depth * Color Tinting + Opacity * Angle attenuation * Automatic sort order + override * Future compataibility with extra data flags to add 100 more things * Decal::Apply( ... ) API Make shaders compile with Vulkan 1.2, allows for wave ops instructions used in new SSR, etc Microsoft/DirectXShaderCompiler/wiki/Wave-Intrinsics Bitch when variables are uninitialized in HLSL, can cause all sorts of weird undefined behavior in certain drivers Fix warnings on all shaders, remove D_EYE_WHITE (bullshit?) Avoid sampling diffuse cubemap for fog at lod0 to not have fireflies like in Eagle One Rain Demo Disable compute skinning temporarily while descriptor set crash is being debugged Mark used resources in buffered descriptor set a few frames in advance, they're being deleted while still used Texture Generators (#1779) * Add ResourceGenerator * Add ResourceGeneratorContext * Add TextureGenerator * Add Bitmap * Add Sandbox.Utility.ForAsync * Add IPopupEditor<T>, EditorUtility.OpenControlSheet looks for this interface when creating a popup * Rename ControlSheetPopup to PopupEditor, * Add Color.Rgba16 (half based color) * Managed can override compiling of any resource * Add Texture.GetBitmap * Add transient filesystem in editor * Add Texture.IsError * Add Margin.IsNearlyZero * Fix asset picker ignoring AdditionalTypes * Add Widget.GetDescendants<T> * Add MainThread.Wait() * Expose TypeDescription.Order Fix Json exception when compiling texture Fix NRE in CreateBoneObjects Add VTexWriter - clean up the texture compile process In FloatBitMap_t::Pixel(, clamp the sample Allow non power of 2 textures in native compiletexture Update stb_dxt.h Add Bitmap.IsOpaque() Don't use stb for dx5 it's shit Automatically work out texture compression format Fix an issue where manually setting a NavMeshAgents position would result in race conditions at high framerates For example, this manifested when using CreateBoneObjects on a SkinnedModelRenderer owned by the agent's GameObject. Improve previous fix for NavAgent position glitching Make agents follow gameobject position while in editor Fix exception when couldn't parse resource as json Support texture sheets on light cookies https://files.facepunch.com/layla/1b2711b1/sbox-dev_bWCx2BHnZC.mp4 Make sure light probe texture gets set to a fallback if it's invalid Reduce JSON usage in GameObject.Clone (2) (#1787) We no longer converts the complete GameObject to and from JSON for cloning. JSON is only used as a last resort for complex properties we cannot clone directly. GameObject clones are up to 4 times faster Prefab clones are up to 2 times faster Almost the same as #1781 but includes fixes for a few edge cases: - Match old clone behavior and sort properties when cloning, turns out games can rely on that lol - Match old clone behavior and enable gameobjects before clone process is completed, games could rely on that - Fix edge case where the prefab lookup of clones of prefab instances would not point to the original prefab - Fix edge case when cloning prefabs that contain a nested prefab instance which has a variable that references the outer prefabs root Merge branch 'master' into improved-undo-system Refactor undscope creation Remove debug logs
26 Days Ago
Reduce JSON usage in GameObject.Clone (2) (#1787) We no longer converts the complete GameObject to and from JSON for cloning. JSON is only used as a last resort for complex properties we cannot clone directly. GameObject clones are up to 4 times faster Prefab clones are up to 2 times faster Almost the same as #1781 but includes fixes for a few edge cases: - Match old clone behavior and sort properties when cloning, turns out games can rely on that lol - Match old clone behavior and enable gameobjects before clone process is completed, games could rely on that - Fix edge case where the prefab lookup of clones of prefab instances would not point to the original prefab - Fix edge case when cloning prefabs that contain a nested prefab instance which has a variable that references the outer prefabs root
28 Days Ago
Make agents follow gameobject position while in editor
28 Days Ago
Improve previous fix for NavAgent position glitching
28 Days Ago
Fix an issue where manually setting a NavMeshAgents position would result in race conditions at high framerates For example, this manifested when using CreateBoneObjects on a SkinnedModelRenderer owned by the agent's GameObject.
28 Days Ago
Revert "Bindless lightmaps/Lightmap Combo Removal (#1765)" This reverts commit 1fdcdeab689851f1093853faa8d8b4d6041d63f7. # Conflicts: # game/addons/base/Assets/postprocess/ObjectHighlight/objecthighlight.shader_c # game/addons/base/Assets/shaders/atmosphere_sky.shader_c # game/addons/base/Assets/shaders/blendable.shader_c # game/addons/base/Assets/shaders/foliage.shader_c # game/addons/base/Assets/shaders/fur.shader_c # game/addons/base/Assets/shaders/gizmo/gizmo_grid.shader_c # game/addons/base/Assets/shaders/gizmo/gizmo_line.shader_c # game/addons/base/Assets/shaders/glass.shader_c # game/addons/base/Assets/shaders/line.shader_c # game/addons/base/Assets/shaders/lpv_debug.shader_c # game/addons/base/Assets/shaders/sprite.shader_c # game/addons/base/Assets/shaders/terrain.shader_c # game/addons/base/Assets/shaders/terrain_brush.shader_c # game/addons/base/Assets/shaders/terrain_preview.shader_c # game/addons/base/Assets/shaders/tiled_light_culling_cs.shader_c # game/addons/base/Assets/shaders/ui_backdropfilter.shader_c # game/addons/base/Assets/shaders/ui_basic.shader_c # game/addons/base/Assets/shaders/ui_borderwrap.shader_c # game/addons/base/Assets/shaders/ui_cssbox.shader_c # game/addons/base/Assets/shaders/ui_cssshadow.shader_c # game/addons/base/Assets/shaders/ui_dropshadow.shader_c # game/addons/base/Assets/shaders/ui_filter.shader_c # game/addons/base/Assets/shaders/ui_text.shader_c # game/addons/base/Assets/shaders/vertex_color.shader_c # game/addons/base/Assets/shaders/water.shader_c # game/core/shaders/black_unlit.shader_c # game/core/shaders/cables.shader_c # game/core/shaders/complex.shader_c # game/core/shaders/complex_reflections.shader_c # game/core/shaders/cs_volumetric_fog.shader_c # game/core/shaders/debug_wireframe_2d.shader_c # game/core/shaders/decal.shader_c # game/core/shaders/depth_only.shader_c # game/core/shaders/eyeball.shader_c # game/core/shaders/generic.shader_c # game/core/shaders/hair.shader_c # game/core/shaders/post_process.shader_c # game/core/shaders/projected_decals.shader_c # game/core/shaders/projected_sheet_decals.shader_c # game/core/shaders/simple.shader_c # game/core/shaders/skin.shader_c # game/core/shaders/sky.shader_c # game/core/shaders/spritecard.shader_c # game/core/shaders/static_overlay.shader_c # game/core/shaders/tools_shading_complexity.shader_c # game/core/shaders/tools_solid.shader_c # game/core/shaders/tools_visualize_collision_mesh.shader_c # game/core/shaders/tools_wireframe.shader_c # game/core/shaders/ui.shader_c # game/core/shaders/visualize_cloth.shader_c # game/core/shaders/visualize_nav.shader_c # game/core/shaders/visualize_physics.shader_c # game/core/shaders/vr_tools_shading_complexity.shader_c Build shaders If we have any command line arguments from the Steam client (sbox.game -rungame), parse it via ISteamApps.GetLaunchCommandLine Expose Application.ShutdownUnitTest() Throws if not currently running a unit test Make sure it doesn't run in headless (errors out on dedicated server) Some tidy up - data table ReadFilter instead of other method, reset delta snapshot cache on owner change and after network refresh is received Add Simulate Packet Loss alongside Simulate Lag in editor network options - it's working for simulating outgoing lost packets from the host right now VR: Remove obsolete controller checking bools that nobody's using VR: Add IsHandTracked bool to VRController, update fpxr to 5cf7ff24f5b157166102c8e4898bb84b4accb952 VR: Add MotionRange to VRController.GetJoints, update fpxr to 8822f0461709fbd2eda8fe004d51af79d47e6aa9 e.g. ```csharp Input.VR.LeftHand.GetJoints( MotionRange.Hand ); // default Input.VR.LeftHand.GetJoints( MotionRange.Controller ); // tries to wrap hands around the controller ``` VR: Better controller interactions in menu, move panel to a more comfortable height Reapply "Bindless lightmaps/Lightmap Combo Removal (#1765)" This reverts commit de7b93d17c7a036a567347794ca51163132ef42a. Reapply BATCH_FLAGS_CONTROLLING_COMBO_CHANGES for legacy shaders, accidentally removed binding lightmap for legacy shaders Initialize vertex output of lightmap uv when lightmapping is disabled Update drivers with bindless lightmaps & amd fix Humans/animgraph: added Sprint_NW & Sprint_NE Don't accept "game" command while Application.IsEditor Compute Shader Skinning (#1786) Calculate skinning in compute shader instead of vertex shader Compile shaders Can now right click on a Shader to "Create Material" from it. https://files.facepunch.com/CarsonKompon/2025/January/24_17-29-EmptyPony.png Fix typo in MaterialMenu add octohedral_encoding.fxc include Forward+ Decals (#1606) GPU driven tile culled decals that modify their surfaces PBR properties. No additional draw calls for any decals. * PBR modification: Albedo, Normal, Roughness, Metal, AO * Works with transparent surfaces as it's not projecting based on depth * Color Tinting + Opacity * Angle attenuation * Automatic sort order + override * Future compataibility with extra data flags to add 100 more things * Decal::Apply( ... ) API Make shaders compile with Vulkan 1.2, allows for wave ops instructions used in new SSR, etc Microsoft/DirectXShaderCompiler/wiki/Wave-Intrinsics Bitch when variables are uninitialized in HLSL, can cause all sorts of weird undefined behavior in certain drivers Fix warnings on all shaders, remove D_EYE_WHITE (bullshit?) Avoid sampling diffuse cubemap for fog at lod0 to not have fireflies like in Eagle One Rain Demo Disable compute skinning temporarily while descriptor set crash is being debugged Mark used resources in buffered descriptor set a few frames in advance, they're being deleted while still used Texture Generators (#1779) * Add ResourceGenerator * Add ResourceGeneratorContext * Add TextureGenerator * Add Bitmap * Add Sandbox.Utility.ForAsync * Add IPopupEditor<T>, EditorUtility.OpenControlSheet looks for this interface when creating a popup * Rename ControlSheetPopup to PopupEditor, * Add Color.Rgba16 (half based color) * Managed can override compiling of any resource * Add Texture.GetBitmap * Add transient filesystem in editor * Add Texture.IsError * Add Margin.IsNearlyZero * Fix asset picker ignoring AdditionalTypes * Add Widget.GetDescendants<T> * Add MainThread.Wait() * Expose TypeDescription.Order Fix Json exception when compiling texture Fix NRE in CreateBoneObjects Add VTexWriter - clean up the texture compile process In FloatBitMap_t::Pixel(, clamp the sample Allow non power of 2 textures in native compiletexture Update stb_dxt.h Add Bitmap.IsOpaque() Don't use stb for dx5 it's shit Automatically work out texture compression format Merge branch 'master' into json-free-clone2
29 Days Ago
Add some more comments for things that will get removed once we delete the old undo system. Expose UndoScope via Scene.Editor Fix Typo
29 Days Ago
Throw when trying to destroy uninstantiated prefab Handle references in prefab variables to prefab root differently
29 Days Ago
MeshTools: Refresh Pivot after undo/redo
29 Days Ago
Rename to be more inline with other scopes (e.g. Gizmo.Scope) Less verbose flag name
29 Days Ago
Less verbose UndoScope initialization & capture selections by default.
30 Days Ago
Remove obsolete func calls from recteditor
30 Days Ago
Cleanup unused code
30 Days Ago
Get rid of mouse up hack for new undo system