LYN-2537 engine assets (#254)
* LYN-2537 Moved the Engine and Editor folder to be within the EngineAssets folder * Fixed Documentation in bootstrap.cfg to correct the path to the user project specific registry file * Adding a newline to the output of AssetCatalog 'Registering asset..., but type is not set' message * Updating the AssetProcessorPlatformConfig.setreg Scan Folder to detect the @ENGINEROOT@/EngineAssets/Engine path for engine runtime assets and @ENGINEROOT@/EngineAssets/Editor path for engine tool assets * Updating references to Icons and other assets to account for moving the Engine and Editor folder under a single EngineAssets folder * Moving the Engine Settings Registry folder from Engine/Registry -> Registry * Removed the LY_PROJECT_CMAKE_PATH define as it is not portable to other locations. It is hard coded to the project location that was used for the CMake configuration. Furthermore it paths with backslashes within it are treated as escape characters and not a path separator * Updated the LyTestTools asset_processor.py script to copy the exclude.filetag from the EngineAssets/Engine directory now * Fixed Atom Shader Preprocessing when running using an External Project * Updated the TSGenerateAction.cpp to fix the build error with using a renamed variable * Updated the Install_Common.cmake ly_setup_others function to install the EngineAssets directory and the each of the Gem's Assets directory while maintaining the relative directory structure to the Engine Root Also updated the install step to install the Registry folder at the engine root * Fixed the copying of the Registry folder to be in the install root, instead of under a second 'Registry' folder * Moving the AssetProcessorPlatformConfig.setreg file over to the Registry folder * Updated the LyTestTools and C++ code to point that the new location of the AssetProcessorPlatformConfig.setreg file inside of the Registry folder * Renamed Test AssetProcessor*Config.ini files to have the .setreg extension * Converted the AssetProcessor test setreg files from ini format to json format using the SerializeContextTools convert-ini command * Updated the AssetProcessor CMakeLists.txt to copy over the test setreg files to the build folder * Updated the assetprocessor test file list to point at the renamed AsssetProcessor*Config setreg filenames * Removed the Output Prefix code from the AssetProcessor. The complexity that it brought to the AP code is not needed, as users can replicate the behavior by just moving there assets underneath a another folder, underneath the scan folder * Adding back support to read the AssetProcessorPlatformConfig.setreg file from the asset root. This is only needed for C++ UnitTests as they run in an environment where the accessing the Engine Settings Registry is not available * Updating the Install_common.cmake logic to copy any "Assets" folder to the install layout. The Script has also been updated to copy over the "Assets" folder in the Engine Root to the install layout instead of an "EngineAssets" folder * Updating References to EngineAssets source asset folder in code to be the Assets source folder * Moved the Engine Source Asset folder of 'EngineAssets' to a new folder name of 'Assets'. This is inline with the naming scheme we use for Gem asset folders * Adding the EngineFinder.cmake to the AutomatedTesting project to allow it to work in a project centric manner * Updating the LyTestTools copy_assets_to_project function to be able to copy assets with folders to the temporary project root Fixed an issue in LyTestTools where the temporary log directory could have shutil.rmtree being called twice on it leading to an exception which fails an automated test Updated the asset_procesor_gui_tests_2 AddScanFolder test to not use the output prefix, but instead place the source asset root into a subdirectory * Correct the AssetProcessorPlatformConfig Scan Folders for the EngineAssets directory to point at the Assets directory * Updated the asset procesor batch dependency test scan folder to point at the 'Assets' folder instead of 'EngineAssets'
This commit is contained in:
committed by
GitHub
parent
ed74bb9166
commit
3dec5d3b71
@@ -0,0 +1,51 @@
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
|
||||
// its licensors.
|
||||
//
|
||||
// For complete copyright and license terms please see the LICENSE at the root of this
|
||||
// distribution (the "License"). All use of this software is governed by the License,
|
||||
// or, if provided, by the license below or the license accompanying this file. Do not
|
||||
// remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
//
|
||||
// Original file Copyright Crytek GMBH or its affiliates, used under license.
|
||||
//
|
||||
|
||||
// Description: Particles shader extension used by the editor
|
||||
// for automatic shader generation (based on "Particles" shader template)
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Version (1.00)
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %DIFFUSE
|
||||
Mask = 0x1
|
||||
Hidden
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %SIMPLE
|
||||
Mask = 0x2
|
||||
Property (Simple distance clouds)
|
||||
Description (Use distance clouds with no volumetric shading computations)
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %ADVANCED
|
||||
Mask = 0x4
|
||||
Property (Advanced distance clouds)
|
||||
Description (Use distance clouds with more accurate shading computations)
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %DEPTH_FADE
|
||||
Mask = 0x8
|
||||
Property (Depth Fade)
|
||||
Description (Fades the output based on closeness of objects behind it)
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
|
||||
// its licensors.
|
||||
//
|
||||
// For complete copyright and license terms please see the LICENSE at the root of this
|
||||
// distribution (the "License"). All use of this software is governed by the License,
|
||||
// or, if provided, by the license below or the license accompanying this file. Do not
|
||||
// remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
//
|
||||
// Original file Copyright Crytek GMBH or its affiliates, used under license.
|
||||
//
|
||||
|
||||
// Description: Eye shader extension used by the editor
|
||||
// for automatic shader generation (based on "Eye" shader template)
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Version (1.00)
|
||||
|
||||
UsesCommonGlobalFlags
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %NORMAL_MAP
|
||||
Mask = 0x1
|
||||
Property (Normal map)
|
||||
Description (Use normal-map texture)
|
||||
DependencySet = $TEX_Normals
|
||||
DependencyReset = $TEX_Normals
|
||||
Hidden
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %ENVIRONMENT_MAP
|
||||
Mask = 0x2
|
||||
Property (Environment map)
|
||||
Description (Use environment map as separate texture)
|
||||
DependencyReset = $TEX_EnvCM
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %EYE_AO_OVERLAY
|
||||
Mask = 0x4
|
||||
Property (Ambient occlusion overlay)
|
||||
Description (Use for ambient occlusion overlay rendering)
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %EYE_SPECULAR_OVERLAY
|
||||
Mask = 0x8
|
||||
Property (Specular overlay)
|
||||
Description (Use for specular overlay rendering)
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %VERTCOLORS
|
||||
Mask = 0x400000
|
||||
DependencySet = $UserEnabled
|
||||
Hidden
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %TEMP_EYES
|
||||
Mask = 0x80000000
|
||||
DependencySet = $UserEnabled
|
||||
Hidden
|
||||
}
|
||||
@@ -0,0 +1,126 @@
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
|
||||
// its licensors.
|
||||
//
|
||||
// For complete copyright and license terms please see the LICENSE at the root of this
|
||||
// distribution (the "License"). All use of this software is governed by the License,
|
||||
// or, if provided, by the license below or the license accompanying this file. Do not
|
||||
// remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
//
|
||||
|
||||
// Description: Fur shader extension used by the editor
|
||||
// for automatic shader generation (based on "Fur" shader template)
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Version (1.00)
|
||||
|
||||
UsesCommonGlobalFlags
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %NORMAL_MAP
|
||||
Mask = 0x1
|
||||
Property (Normal map)
|
||||
Description (Use normal-map texture)
|
||||
DependencySet = $TEX_Normals
|
||||
DependencyReset = $TEX_Normals
|
||||
Hidden
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %SPECULAR_MAP
|
||||
Mask = 0x2
|
||||
Property (Specular map)
|
||||
Description (Use specular map as separate texture)
|
||||
DependencySet = $TEX_Specular
|
||||
DependencyReset = $TEX_Specular
|
||||
Hidden
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %CUSTOM_MODIFICATOR
|
||||
Mask = 0x4
|
||||
Property (Call CustomModificator function in vertex shader)
|
||||
DependencySet = $UserEnabled
|
||||
Hidden
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %FUR_VERT_COLORS
|
||||
Mask = 0x8
|
||||
Property (Fur Color Data)
|
||||
Description (Vertex color channel contains fur combing and scaling info)
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %FUR_WIND_BENDING
|
||||
Mask = 0x10
|
||||
Property (Wind bending)
|
||||
Description (Enable wind bending for fur)
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %FUR_BLENDLAYER
|
||||
Mask = 0x20
|
||||
Property (Fur Blendlayer)
|
||||
Description (Diffuse layer blended into fur as it grows from base to tip)
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %FUR_BLENDCOLOR
|
||||
Mask = 0x40
|
||||
Property (Fur Blend color)
|
||||
Description (Specified color blended into fur diffuse as it grows from base to tip)
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %FUR_LENGTH_SCALED
|
||||
Mask = 0x80
|
||||
Property (Scale fur length)
|
||||
Description (Fur length scales with object scale)
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %MODEL_SPACE_Z_UP
|
||||
Mask = 0x100
|
||||
Property (Model Space Z Up)
|
||||
Description (Check if model was generated with Z up, if unchecked, assumes Y up)
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %DEPTH_FIXUP
|
||||
Mask = 0x200
|
||||
Property (Depth Fixup)
|
||||
Description (Write depth for depth of field and postprocessing)
|
||||
DependencySet = $UserEnabled
|
||||
Hidden
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %ZPASS_CUSTOM_DIFFUSE
|
||||
Mask = 0x400
|
||||
Property (Calls GetZPassDiffuse function in z pass pixel shader for custom diffuse handling)
|
||||
DependencySet = $UserEnabled
|
||||
Hidden
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %FUR_MULTI_LAYER_ALPHA_BLEND
|
||||
Mask = 0x800
|
||||
Property(Enable OIT)
|
||||
Description(Use OIT for accurate alpha blending - performance penalty expected)
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
|
||||
// its licensors.
|
||||
//
|
||||
// For complete copyright and license terms please see the LICENSE at the root of this
|
||||
// distribution (the "License"). All use of this software is governed by the License,
|
||||
// or, if provided, by the license below or the license accompanying this file. Do not
|
||||
// remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
//
|
||||
// Original file Copyright Crytek GMBH or its affiliates, used under license.
|
||||
//
|
||||
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %NOISE
|
||||
Mask = 0x1
|
||||
Property (Dust & Turbulence)
|
||||
Description (Add a dust overlay [spec map for dust, bump map for turbulence] )
|
||||
}
|
||||
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %RECEIVE_SHADOWS
|
||||
Mask = 0x2
|
||||
Property (Receive Shadows)
|
||||
Description (Enable shadow receiving)
|
||||
}
|
||||
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %UV_VIGNETTING
|
||||
Mask = 0x4
|
||||
Property (UV Vignetting)
|
||||
Description (Enabling this will cause contents to fade out at UV boundaries)
|
||||
}
|
||||
@@ -0,0 +1,111 @@
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
|
||||
// its licensors.
|
||||
//
|
||||
// For complete copyright and license terms please see the LICENSE at the root of this
|
||||
// distribution (the "License"). All use of this software is governed by the License,
|
||||
// or, if provided, by the license below or the license accompanying this file. Do not
|
||||
// remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
//
|
||||
// Original file Copyright Crytek GMBH or its affiliates, used under license.
|
||||
//
|
||||
|
||||
// Description: Glass shader extension used by the editor
|
||||
// for automatic shader generation (based on "Glass" shader template)
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
Version (2.00)
|
||||
|
||||
UsesCommonGlobalFlags
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %DIRT_MAP
|
||||
Mask = 0x100000
|
||||
Property (Use Diffuse map)
|
||||
Description (Use Diffuse map for dirt, etc. Requires Alpha channel)
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %SPECULAR_MAP
|
||||
Mask = 0x200000
|
||||
Property (Specular map)
|
||||
Description (Use specular map as separate texture)
|
||||
DependencySet = $TEX_Specular
|
||||
DependencyReset = $TEX_Specular
|
||||
Hidden
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %ENVIRONMENT_MAP
|
||||
Mask = 0x10
|
||||
Property (Environment map)
|
||||
Description (Use environment map as separate texture)
|
||||
DependencyReset = $TEX_EnvCM
|
||||
}
|
||||
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %TINT_MAP
|
||||
Mask = 0x200
|
||||
Property (Tint map - Tint/Gloss/Spec)
|
||||
Description (Use RGB Spec Map to control Tinting in Red channel / Cloudiness in Green channel / Specular in Blue channel)
|
||||
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %TINT_COLOR_MAP
|
||||
Mask = 0x400
|
||||
Property (Use Tint Color Map)
|
||||
Description (Use Tint Color Map for multi-colored glass, goes in the custom Tint Color Map slot)
|
||||
DependencyReset = $TEX_Custom
|
||||
DependencySet = $TEX_Custom
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %BLUR_REFRACTION
|
||||
Mask = 0x2000
|
||||
Property (Blur refraction - PC Only)
|
||||
Description (Blur objects seen through the glass)
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %DEPTH_FOG
|
||||
Mask = 0x4000
|
||||
Property (Depth Fog)
|
||||
Description (Enables depth fog behind glass surface)
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %UNLIT
|
||||
Mask = 0x8000
|
||||
Property (Disable Lights)
|
||||
Description (Disables the reflection of lights)
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %DEPTH_FIXUP
|
||||
Mask = 0x4000000
|
||||
Property (Depth Fixup)
|
||||
Description (Write depth for depth of field and postprocessing)
|
||||
}
|
||||
|
||||
Property
|
||||
{
|
||||
Name = %SAA_FILTERING
|
||||
Mask = 0x80000000
|
||||
Property (Specular Antialiasing)
|
||||
Description (Perform specular Antialiasing)
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d924c59739f63724999b1bf6cd326d10024b031bdfbf02fe8e09cb0b783dfe67
|
||||
size 2891
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:045f6506425364221f9dbf0b359e38877f276300770ef7a5ab694f1055eb0d02
|
||||
size 1569
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f25999b453c3e91c8237d28ccc1ef3baefaa2a7ec8f9aad65adb95042e25e435
|
||||
size 56582
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:396a70d86a4678b16fa110b3eceacbd5b515aa85090d16bdb6a8562d7c94e4a8
|
||||
size 17205
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b05841cd01ec853455ad792e80302cf5ffbbd104c5ecf46699f5ecd4b0624c09
|
||||
size 983
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:725006c2f2844e49b691506cbc3d015466cdfbad19209a63964acc264b78c782
|
||||
size 4096
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5886e0be4d4047a9b41431c141738cb0a13a3b3a4033cc262f173b5e9e195707
|
||||
size 4734
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:57682432ba4de87ddc5ba542b6630ad512f75dbaca2a0c1402fb2a59ed35804c
|
||||
size 111615
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:01bbe928766a8c75bc3d990747f91e5becfbed6a59d58b71d2a2922f6d14bc1f
|
||||
size 6970
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8c4c004afe3782ae58fa4ac90dd7f16e026d0c38e4bf66ed475beaa1ce3fcf98
|
||||
size 3363
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:86f594a6f8fb6e1328b95e6b03a04109ea3e9e8b8642d30c674281ea916dbf41
|
||||
size 19522
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:04850ac23185147fd8e97303efad70cbb876c6589c71cb413b0429d267705cd3
|
||||
size 8020
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6c660b79e7532b5a9513341d3f37215a742d3ee99532ba0003e2c13381d55bc6
|
||||
size 4238
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8fe036b79e16737499920500c87997567d8ee32534748df4ea617c4118237cb5
|
||||
size 32052
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a30f1c7b94eb1bcb0261e518062da6eb69987698d65e6dd786bfe29be32d749e
|
||||
size 4995
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3c4ac5b9fa8a288f8fdfc4110599b25742b19ddd3a251d638e5e1da9284310d6
|
||||
size 2814
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a2b214f2873a3a99bcaccc120d6a397c708a4b3309c9b953860f8f9cf93461c8
|
||||
size 8591
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f26436234a598c2aa906653e711eb0e8ae14f99b65fc25eea0d238d9f56d914a
|
||||
size 4345
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bb0a8212530051bd6e4ac5646f6ab2f0a59f43a349ce8e03e544f6cf6d87ba4b
|
||||
size 1929
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:24e1f7c4242c708a638a1069908f258fa26aa77152330a2c8da72260dd192209
|
||||
size 14703
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:77910f05ea15757e24201187a68a9a0db924f7951dadd4b7c7330f0845bd5944
|
||||
size 14043
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4ab94af4462722c1a111f4199714fabd0addf095aba82840f92e6ef8b056d78c
|
||||
size 94446
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0641726ad6140704434896912f0e57e29e6f5e28ac2653bc97bbe7e2d444fbc2
|
||||
size 2828
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6ea4c40161f4f628fbf9cd1a3b7df445615dfa8ca15761a4fec15d0c2276b369
|
||||
size 22312
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b67ece889d68d8ed6f891ca5cfb1f951a777616ea928b0e6f91bd541b35c62ff
|
||||
size 13136
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a06a4a972542f51bea726578b26ef0fc711c4b6f4a77a31a383690717c5ccba2
|
||||
size 10622
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fed5c2b72b2b4769954f2fad9573c6e35581c556e3a96685d449eea5576cf433
|
||||
size 19244
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1b6aa7281d2174f24b510a7ac820b4ab308a215d6b3eae4a039bc01e34b131ec
|
||||
size 9922
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:750ac5a4ef25f1379121c7346dad0230d389c7c889ffdccbe6281a511b021cea
|
||||
size 4044
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:073303aa45adc5ca237f33f29fb4de52f8b3c935912298cdec611128c510399c
|
||||
size 9279
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:052a458b7bdef6d7e1fa1a26d4cb66f6e24f91b9e42451a8e48045d3779aef1c
|
||||
size 2383
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ab757a0df8246a0e9d20839a89219a6c616d6df054d72b21b79e459b8503ade8
|
||||
size 10188
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a37c2ab18b0ad1da90005c0ff9fea89d7c78ade9fd51b28b665cf42b814ecd8d
|
||||
size 23690
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2f429a8537df95455e32da7fd480e79ef46751d6bc880c34b746c21515aa012a
|
||||
size 31609
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e3f25ea475310f699442a160ffcc9f58c40e54b6570210dafbe41746a010b821
|
||||
size 15002
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f6246f93aa73fdab460c1c82a33f2588a0ae83a162acdcdb12cec86ddac332b6
|
||||
size 5142
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fb0d83cc48ebee33b3d3db2b1a5c27636d35dfb7ce720e5391a28ff70ca0d729
|
||||
size 9023
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b690c770f90e33dc78604b5beca3453aba4fbb4db8014b730680c33b5cef5120
|
||||
size 2299
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:64c184691014423f2f6c518d34ff9657acc1dc8867e0e43d20b5526491d35d5b
|
||||
size 462
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a71929dda4a7b4516754286da5494546a0ea2075b9fde5cefef68f0a99d37381
|
||||
size 1520
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a50144544a4c292d172d4bb9586a6016de4cc5b0a39958abfb00bc720e8c23e9
|
||||
size 1989
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:25d51818120964a1576f35727c0f13bc10a01727ab793f5fdf79cb9c1f7bf563
|
||||
size 2055
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4308e81d4ee4c65480a1cf110f3f602d347f2899b4cf299f334c2659904329dd
|
||||
size 553
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bfe3a765c1057d5dfae514ba17d0ce99d6598693035df2037314da5f38e4c305
|
||||
size 19142
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f94a71dd8cbe95080f2de1bfa8cbd9443bea18106cc7bcae2c5c7225d113f2b4
|
||||
size 644
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cf39d59eefe2c6641437e9d535528edb29e1e0dad6d1b84b20662c7075928fe8
|
||||
size 6969
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5cbcdd1c83247233dce9fb5c32e9d4530b23b825b284591a921a0b7e81d230ea
|
||||
size 1817
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cae99346703f5ebc9bb59edb61c17b86184ae7659af78395ec4cba11cb6da471
|
||||
size 37741
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8a3a7bb8ad18d99c7490d15ce24b3c4867d9668b1539014a31b3ba5e80ebb00e
|
||||
size 25753
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:45e7f387bb7cc9d7a489916b27ea6bff816510664099008ebbeaa0d10a26faa7
|
||||
size 12612
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:49aa341aa2563ced85aa4f62f74865c558238c91ba9d8d62ad21392088755820
|
||||
size 26913
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c7f9297a483fd7d7b91a3f06f1a3eb83e77192b967691f4e2119d41b7a7afdd2
|
||||
size 2707
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:52d68438b25fbd2d88a7247295a021680a9b95a6f3ed07c3ae066cb3d44b25ed
|
||||
size 2530
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5cf8d27075f4aa76e5814d1c4a9718d7106df50229f33e1d8d7d7a4532d1e5f3
|
||||
size 40838
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2e62a2aa829af58b2ba19a9920bd87d64a27854d24de5a51842740c7ec1e9ae8
|
||||
size 33567
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:eb56b0070f3811f1b8780e70d4b9410a08f3aac9f8fa3e947194a4d902c9d8ef
|
||||
size 33265
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9764bb3ab6d2895a355466f3c53f735c3500006420bac211bc9a0b7c29a605c6
|
||||
size 2168
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c63de566d2a5a69781a4c1e16958d64d187e057f3447afb4ec9aa47455ef7a5c
|
||||
size 9617
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b81300b59d42b38b7669016cc8920db9adbf07b612f12d520d9480a6de59aa73
|
||||
size 18648
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a79996ad61013920dcccd254f23e05fb4089879d477d8f3ce00ff98ee04d6ec1
|
||||
size 7783
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:548f2cc401046358ef4f4edeb37532f06437b99b2fe5bff70100e66a6ecb281a
|
||||
size 986
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3c110e0891fbe46a10f2fbcf4ffb8f82c0711ffaa943fac5ca92c96f7e63d051
|
||||
size 28796
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9a52e2256a43707dfab74c680e96249d27e7eb38a2984c9d4dcff83ffe7dd15b
|
||||
size 5194
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4155e44e6687796095b5e2401c93a09e527c61a48830e8a35d4ab16d849d8159
|
||||
size 2031
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7acdc1aaa28aea83d9af53547f65c5686b2fc43be988068d8f4f88c87c4359a7
|
||||
size 16847
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4436686d0f3e735973df2dd56523269683c66b3ae01da67fa7f41e5f9e1b1234
|
||||
size 12760
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:13c69186729534dcd2676d1740a530fb5d5a3307d7b713f5c08704220186ba6d
|
||||
size 14169
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f79e6c1e182e86afd295758f0afefc901407e69eb3f93422d8a3089451e49c7d
|
||||
size 5526
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0ca1d710fd2b0937a04ded739ab4dc35ff48e3ff0c07d6a5d4df95f32a1947a4
|
||||
size 5032
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7a7db4ca9b7d87e4c3410df26f3045a18fb96a2535b88ab8afe00dcf1d621943
|
||||
size 4173
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0eb9c63a60a3d2afb78d6e4077ac81322dbd1a0537f5551c638d57c353381e15
|
||||
size 5256
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dd0aecf5b1620c49a9b08c35865ea8de5487098f1eed8374fa4fc85e4a87e886
|
||||
size 52858
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:758aa594628cd94f10d379f08a9a0a63478cc69eb9a093404d57c46e6830150a
|
||||
size 19450
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8b4f6c44e52297c1dfe02040a7e63739aeed73f2c2c4930053f5a83c3c73f816
|
||||
size 8716
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:01f08e32bfb1f8690759da687114e66bf6652b6d17b208ed1b316315f0a66a1b
|
||||
size 6435
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1d183abe91463d2ab90f56c055a44aa8c3cad1d731f51c9f56bd6f9df3d7eba1
|
||||
size 180
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1ceef3fd50e977ba168e2f80803bc0a09542aa3c55721e0e6e27bbab45454607
|
||||
size 1545
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b67b9997024270cfdede2d057220078029db61ab5dff6d522a39c99d08420245
|
||||
size 8657
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:670e9dd98f131fa0375ddcc4df8fe850eeabb43f9771d302b5c8e2fd7022d78d
|
||||
size 8534
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:98f62a7869360e63083eea9a784652ad0fca13a9cd741930940be75c10ca83e7
|
||||
size 40918
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:55bcc8a634262b6001193fabf318cdf2960904dd47e915fa17de3a60c620639d
|
||||
size 4613
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:af77abd5a2d462e4b533e6e5b489bc8e39909527c64a9cd599bbf5312b3aa17a
|
||||
size 6052
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:db6f21607b4ce4e0d0a48ffa0a7db81f29ac0546c76846dd39f1fc584f7d23e5
|
||||
size 1517
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4f8178b44fc27aacde3600b86bc06038aefbac6ca4fbf4fbe29f32ca6e8e0584
|
||||
size 1603
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0c7c5e176c6f0a5f689bc433dd23d5bb998f8f10d4185c30cb9788022ebb38a0
|
||||
size 6464
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7a10320d3b31738cc0154de2c973fcaf912885209a7e729e3f6bd372f7633354
|
||||
size 67647
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ec164683d3fe45a512c0e9a2314c5b450602ee8c8a8281d99d43c1d76a761df3
|
||||
size 60596
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a6d66a0aed7f39e3848ee4763c408c390ec7021205cf2f0f07459b99d84f1d27
|
||||
size 80783
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b73c3ae905c1833cade569500b647dc504e83b34f15a4584f72a372d254d884f
|
||||
size 8502
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:12d61af66003a6ab90e24574925fd94bc03622386da142fcaa655df21b0fd5bd
|
||||
size 2033
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1c4913b73fec9ebdcd5b8e7c86d495b7dc9a135e7f8a77ee90b9e62a78d3cc47
|
||||
size 1819
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4565c5415b0a68ced049335d803fcfdbf899db4ea914b8fbc5ba34620e4c4045
|
||||
size 10709
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3a6eafe0f42be55811eda4ac6b164bd01e22b6cc2b77723a8693549b26939871
|
||||
size 10768
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ddac405a61300a0857cba4ea7dabcb6d5aef5253ada53d09ec4ab591ed3cfbce
|
||||
size 25680
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2aec8020aa2454b8a0cd406198bd2c067f878cb697dad2e2059e88c7cb2e5e87
|
||||
size 32118
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user