Assembly-CSharp.csproj 240 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <LangVersion>latest</LangVersion>
  5. </PropertyGroup>
  6. <PropertyGroup>
  7. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  8. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  9. <ProductVersion>10.0.20506</ProductVersion>
  10. <SchemaVersion>2.0</SchemaVersion>
  11. <RootNamespace></RootNamespace>
  12. <ProjectGuid>{D1B28BD2-7C45-6A71-5A93-E0ADCD7A7776}</ProjectGuid>
  13. <OutputType>Library</OutputType>
  14. <AppDesignerFolder>Properties</AppDesignerFolder>
  15. <AssemblyName>Assembly-CSharp</AssemblyName>
  16. <TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
  17. <FileAlignment>512</FileAlignment>
  18. <BaseDirectory>.</BaseDirectory>
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>Temp\bin\Debug\</OutputPath>
  25. <DefineConstants>DEBUG;TRACE;UNITY_2019_2_3;UNITY_2019_2;UNITY_2019;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_INCLUDE_TESTS;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;ENABLE_VIDEO;PLATFORM_ANDROID;UNITY_ANDROID;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_UNITYWEBREQUEST;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_EVENT_QUEUE;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING;PLATFORM_SUPPORTS_ADS_ID;UNITY_CAN_SHOW_SPLASH_SCREEN;ENABLE_VR;ENABLE_AR;UNITY_HAS_GOOGLEVR;UNITY_HAS_TANGO;ENABLE_SPATIALTRACKING;ENABLE_RUNTIME_PERMISSIONS;ENABLE_ENGINE_CODE_STRIPPING;UNITY_ASTC_ONLY_DECOMPRESS;ANDROID_USE_SWAPPY;ENABLE_ONSCREEN_KEYBOARD;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;NET_4_6;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_VSTU;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER</DefineConstants>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. <NoWarn>0169</NoWarn>
  29. <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
  30. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  32. <DebugType>pdbonly</DebugType>
  33. <Optimize>true</Optimize>
  34. <OutputPath>Temp\bin\Release\</OutputPath>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. <NoWarn>0169</NoWarn>
  38. <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
  39. </PropertyGroup>
  40. <PropertyGroup>
  41. <NoConfig>true</NoConfig>
  42. <NoStdLib>true</NoStdLib>
  43. <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
  44. <ImplicitlyExpandNETStandardFacades>false</ImplicitlyExpandNETStandardFacades>
  45. <ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>
  46. </PropertyGroup>
  47. <PropertyGroup>
  48. <ProjectTypeGuids>{E097FAD1-6243-4DAD-9C02-E9B9EFC3FFC1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  49. <UnityProjectGenerator>Unity/VSTU</UnityProjectGenerator>
  50. <UnityProjectGeneratorVersion>4.11.4.0</UnityProjectGeneratorVersion>
  51. <UnityProjectType>Game:1</UnityProjectType>
  52. <UnityBuildTarget>Android:13</UnityBuildTarget>
  53. <UnityVersion>2019.2.3f1</UnityVersion>
  54. </PropertyGroup>
  55. <ItemGroup>
  56. <Analyzer Include="C:\Program Files (x86)\Microsoft Visual Studio Tools for Unity\16.0\Analyzers\Microsoft.Unity.Analyzers.dll" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <Reference Include="UnityEngine">
  60. <HintPath>E:\Unity\2019.2.3f1\Editor\Data\Managed/UnityEngine/UnityEngine.dll</HintPath>
  61. </Reference>
  62. <Reference Include="UnityEditor">
  63. <HintPath>E:\Unity\2019.2.3f1\Editor\Data\Managed/UnityEditor.dll</HintPath>
  64. </Reference>
  65. </ItemGroup>
  66. <ItemGroup>
  67. <Compile Include="Assets\CompassNavigatorPro\Demo\Sources\Scripts\DiscoverArea.cs" />
  68. <Compile Include="Assets\CompassNavigatorPro\Demo\Sources\Scripts\FreeCameraMove.cs" />
  69. <Compile Include="Assets\CompassNavigatorPro\Demo\Sources\Scripts\LevelManager.cs" />
  70. <Compile Include="Assets\CompassNavigatorPro\Demo\Sources\Scripts\POIHeartbeatAnimator.cs" />
  71. <Compile Include="Assets\CompassNavigatorPro\Scripts\BeaconAnimator.cs" />
  72. <Compile Include="Assets\CompassNavigatorPro\Scripts\CompassIconEventHandler.cs" />
  73. <Compile Include="Assets\CompassNavigatorPro\Scripts\CompassPro.cs" />
  74. <Compile Include="Assets\CompassNavigatorPro\Scripts\CompassProFogOfWar.cs" />
  75. <Compile Include="Assets\CompassNavigatorPro\Scripts\CompassProFogVolume.cs" />
  76. <Compile Include="Assets\CompassNavigatorPro\Scripts\CompassProMiniMap.cs" />
  77. <Compile Include="Assets\CompassNavigatorPro\Scripts\CompassProPOI.cs" />
  78. <Compile Include="Assets\CompassNavigatorPro\Scripts\Private\CompassBarMeshModifier.cs" />
  79. <Compile Include="Assets\CompassNavigatorPro\Scripts\Private\CompassButtonHandler.cs" />
  80. <Compile Include="Assets\CompassNavigatorPro\Scripts\Private\CompassProFogOfWar.cs" />
  81. <Compile Include="Assets\CompassNavigatorPro\Scripts\Private\CompassProPrivate.cs" />
  82. <Compile Include="Assets\CompassNavigatorPro\Scripts\Private\LetterAnimator.cs" />
  83. <Compile Include="Assets\CompassNavigatorPro\Scripts\Private\Misc.cs" />
  84. <Compile Include="Assets\JIMO Test\CameraCalibration\TestLoadLocalXmlDoc.cs" />
  85. <Compile Include="Assets\JIMO Test\GetImage\MyGrayCameraCaptureController.cs" />
  86. <Compile Include="Assets\JIMO Test\Scripts\CameraCalibration.cs" />
  87. <Compile Include="Assets\JIMO Test\Scripts\CameraCalibrationLoader.cs" />
  88. <Compile Include="Assets\logo\effect\Rotator.cs" />
  89. <Compile Include="Assets\logo\effect\ShaderForge\Example Assets\Scripts\EditorLabel.cs" />
  90. <Compile Include="Assets\logo\effect\ShaderForge\Example Assets\Scripts\EnableCameraDepthInForward.cs" />
  91. <Compile Include="Assets\logo\effect\ShaderForge\Example Assets\Scripts\SoftNormalsToVertexColor.cs" />
  92. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Authentication\Credentials.cs" />
  93. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Authentication\Digest.cs" />
  94. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Authentication\DigestStore.cs" />
  95. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Caching\HTTPCacheFileInfo.cs" />
  96. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Caching\HTTPCacheFileLock.cs" />
  97. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Caching\HTTPCacheMaintananceParams.cs" />
  98. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Caching\HTTPCacheService.cs" />
  99. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Connections\ConnectionBase.cs" />
  100. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Connections\FileConnection.cs" />
  101. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Connections\WebGLConnection.cs" />
  102. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Cookies\Cookie.cs" />
  103. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Cookies\CookieJar.cs" />
  104. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Decompression\CRC32.cs" />
  105. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Decompression\Deflate.cs" />
  106. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Decompression\DeflateStream.cs" />
  107. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Decompression\GZipStream.cs" />
  108. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Decompression\Inflate.cs" />
  109. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Decompression\InfTree.cs" />
  110. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Decompression\Zlib.cs" />
  111. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Decompression\ZlibBaseStream.cs" />
  112. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Decompression\ZlibCodec.cs" />
  113. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Decompression\ZlibConstants.cs" />
  114. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Decompression\ZTree.cs" />
  115. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Extensions\CircularBuffer.cs" />
  116. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Extensions\Extensions.cs" />
  117. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Extensions\Future.cs" />
  118. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Extensions\HeaderParser.cs" />
  119. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Extensions\HeaderValue.cs" />
  120. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Extensions\HeartbeatManager.cs" />
  121. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Extensions\KeyValuePairList.cs" />
  122. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Extensions\WriteOnlyBufferedStream.cs" />
  123. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Extensions\WWWAuthenticateHeaderParser.cs" />
  124. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Forms\HTTPFieldData.cs" />
  125. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Forms\HTTPFormBase.cs" />
  126. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Forms\HTTPFormUsage.cs" />
  127. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Forms\Implementations\HTTPMultiPartForm.cs" />
  128. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Forms\Implementations\HTTPUrlEncodedForm.cs" />
  129. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Forms\Implementations\RawJSonForm.cs" />
  130. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Forms\Implementations\UnityForm.cs" />
  131. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\HTTPConnection.cs" />
  132. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\HTTPConnectionStates.cs" />
  133. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\HTTPManager.cs" />
  134. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\HTTPMethods.cs" />
  135. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\HTTPProtocolFactory.cs" />
  136. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\HTTPProxy.cs" />
  137. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\HTTPRange.cs" />
  138. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\HTTPRequest.cs" />
  139. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\HTTPResponse.cs" />
  140. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\HTTPUpdateDelegator.cs" />
  141. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\JSON\JSON.cs" />
  142. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Logger\DefaultLogger.cs" />
  143. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Logger\ILogger.cs" />
  144. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\PlatformSupport\Collections\ObjectModel\ObservableDictionary.cs" />
  145. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\PlatformSupport\Collections\Specialized\NotifyCollectionChangedEventArgs.cs" />
  146. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\PlatformSupport\Cryptography\MD5CryptoServiceProvider.cs" />
  147. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\PlatformSupport\IO\Directory.cs" />
  148. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\PlatformSupport\IO\File.cs" />
  149. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\PlatformSupport\IO\FileEnums.cs" />
  150. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\PlatformSupport\IO\FileHelper.cs" />
  151. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\PlatformSupport\IO\FileStream.cs" />
  152. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\PlatformSupport\IO\Infos.cs" />
  153. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\PlatformSupport\TcpClient\TcpClient.cs" />
  154. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\PlatformSupport\TcpClient\WinRT\DataReaderWriterStream.cs" />
  155. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\PlatformSupport\TcpClient\WinRT\TcpClient.cs" />
  156. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\anssi\ANSSINamedCurves.cs" />
  157. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\anssi\ANSSIObjectIdentifiers.cs" />
  158. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1Encodable.cs" />
  159. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1EncodableVector.cs" />
  160. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1Exception.cs" />
  161. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ASN1Generator.cs" />
  162. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1InputStream.cs" />
  163. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1Null.cs" />
  164. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1Object.cs" />
  165. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1OctetString.cs" />
  166. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ASN1OctetStringParser.cs" />
  167. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1OutputStream.cs" />
  168. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1ParsingException.cs" />
  169. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1Sequence.cs" />
  170. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ASN1SequenceParser.cs" />
  171. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1Set.cs" />
  172. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ASN1SetParser.cs" />
  173. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ASN1StreamParser.cs" />
  174. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1TaggedObject.cs" />
  175. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ASN1TaggedObjectParser.cs" />
  176. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\Asn1Tags.cs" />
  177. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BerApplicationSpecific.cs" />
  178. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BerApplicationSpecificParser.cs" />
  179. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BERBitString.cs" />
  180. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BERGenerator.cs" />
  181. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BerOctetString.cs" />
  182. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BEROctetStringParser.cs" />
  183. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BerOutputStream.cs" />
  184. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BerSequence.cs" />
  185. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BERSequenceGenerator.cs" />
  186. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BERSequenceParser.cs" />
  187. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BerSet.cs" />
  188. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BERSetGenerator.cs" />
  189. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BERSetParser.cs" />
  190. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BerTaggedObject.cs" />
  191. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\BERTaggedObjectParser.cs" />
  192. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ConstructedOctetStream.cs" />
  193. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cryptopro\CryptoProObjectIdentifiers.cs" />
  194. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cryptopro\ECGOST3410NamedCurves.cs" />
  195. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cryptopro\GOST3410NamedParameters.cs" />
  196. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cryptopro\GOST3410ParamSetParameters.cs" />
  197. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\cryptopro\GOST3410PublicKeyAlgParameters.cs" />
  198. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DefiniteLengthInputStream.cs" />
  199. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerApplicationSpecific.cs" />
  200. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerBitString.cs" />
  201. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerBMPString.cs" />
  202. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerBoolean.cs" />
  203. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerEnumerated.cs" />
  204. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DERExternal.cs" />
  205. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DERExternalParser.cs" />
  206. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerGeneralizedTime.cs" />
  207. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerGeneralString.cs" />
  208. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DERGenerator.cs" />
  209. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerGraphicString.cs" />
  210. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerIA5String.cs" />
  211. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerInteger.cs" />
  212. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerNull.cs" />
  213. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerNumericString.cs" />
  214. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerObjectIdentifier.cs" />
  215. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerOctetString.cs" />
  216. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DEROctetStringParser.cs" />
  217. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerOutputStream.cs" />
  218. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerPrintableString.cs" />
  219. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerSequence.cs" />
  220. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DERSequenceParser.cs" />
  221. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerSet.cs" />
  222. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DERSetGenerator.cs" />
  223. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DERSetParser.cs" />
  224. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerStringBase.cs" />
  225. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerT61String.cs" />
  226. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerTaggedObject.cs" />
  227. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerUniversalString.cs" />
  228. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerUTCTime.cs" />
  229. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerUTF8String.cs" />
  230. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerVideotexString.cs" />
  231. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\DerVisibleString.cs" />
  232. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\iana\IANAObjectIdentifiers.cs" />
  233. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\IAsn1ApplicationSpecificParser.cs" />
  234. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\IAsn1Choice.cs" />
  235. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\IAsn1Convertible.cs" />
  236. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\IAsn1String.cs" />
  237. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\IndefiniteLengthInputStream.cs" />
  238. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\LazyASN1InputStream.cs" />
  239. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\LazyDERSequence.cs" />
  240. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\LazyDERSet.cs" />
  241. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\LimitedInputStream.cs" />
  242. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\misc\MiscObjectIdentifiers.cs" />
  243. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\misc\NetscapeCertType.cs" />
  244. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\misc\NetscapeRevocationURL.cs" />
  245. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\misc\VerisignCzagExtension.cs" />
  246. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\nist\NISTNamedCurves.cs" />
  247. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\nist\NISTObjectIdentifiers.cs" />
  248. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\OCSPResponse.cs" />
  249. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\OCSPResponseStatus.cs" />
  250. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\ResponderID.cs" />
  251. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\ocsp\ResponseBytes.cs" />
  252. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\OidTokenizer.cs" />
  253. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\oiw\ElGamalParameter.cs" />
  254. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\oiw\OIWObjectIdentifiers.cs" />
  255. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\ContentInfo.cs" />
  256. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\DHParameter.cs" />
  257. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\PKCSObjectIdentifiers.cs" />
  258. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\RSASSAPSSparams.cs" />
  259. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\pkcs\SignedData.cs" />
  260. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\sec\SECNamedCurves.cs" />
  261. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\sec\SECObjectIdentifiers.cs" />
  262. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\teletrust\TeleTrusTNamedCurves.cs" />
  263. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\teletrust\TeleTrusTObjectIdentifiers.cs" />
  264. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\util\Asn1Dump.cs" />
  265. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\util\FilterStream.cs" />
  266. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\AlgorithmIdentifier.cs" />
  267. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\BasicConstraints.cs" />
  268. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\CertificateList.cs" />
  269. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\CRLDistPoint.cs" />
  270. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\CRLNumber.cs" />
  271. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\CRLReason.cs" />
  272. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\DigestInfo.cs" />
  273. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\DistributionPoint.cs" />
  274. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\DistributionPointName.cs" />
  275. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\DSAParameter.cs" />
  276. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\GeneralName.cs" />
  277. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\GeneralNames.cs" />
  278. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\IssuingDistributionPoint.cs" />
  279. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\KeyUsage.cs" />
  280. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\ReasonFlags.cs" />
  281. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\RSAPublicKeyStructure.cs" />
  282. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\SubjectPublicKeyInfo.cs" />
  283. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\TBSCertificateStructure.cs" />
  284. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\TBSCertList.cs" />
  285. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\Time.cs" />
  286. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\X509CertificateStructure.cs" />
  287. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\X509DefaultEntryConverter.cs" />
  288. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\X509Extension.cs" />
  289. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\X509Extensions.cs" />
  290. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\X509Name.cs" />
  291. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\X509NameEntryConverter.cs" />
  292. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\X509NameTokenizer.cs" />
  293. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x509\X509ObjectIdentifiers.cs" />
  294. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\DHDomainParameters.cs" />
  295. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\DHPublicKey.cs" />
  296. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\DHValidationParms.cs" />
  297. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\ECNamedCurveTable.cs" />
  298. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\X962NamedCurves.cs" />
  299. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\X962Parameters.cs" />
  300. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\X9Curve.cs" />
  301. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\X9ECParameters.cs" />
  302. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\X9ECParametersHolder.cs" />
  303. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\X9ECPoint.cs" />
  304. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\X9FieldElement.cs" />
  305. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\X9FieldID.cs" />
  306. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\X9IntegerConverter.cs" />
  307. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\asn1\x9\X9ObjectIdentifiers.cs" />
  308. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\DHBasicAgreement.cs" />
  309. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\agreement\ECDHBasicAgreement.cs" />
  310. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\AsymmetricCipherKeyPair.cs" />
  311. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\AsymmetricKeyParameter.cs" />
  312. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\BufferedAeadBlockCipher.cs" />
  313. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\BufferedAsymmetricBlockCipher.cs" />
  314. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\BufferedBlockCipher.cs" />
  315. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\BufferedCipherBase.cs" />
  316. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\BufferedIesCipher.cs" />
  317. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\BufferedStreamCipher.cs" />
  318. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\Check.cs" />
  319. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\CipherKeyGenerator.cs" />
  320. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\CryptoException.cs" />
  321. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\DataLengthException.cs" />
  322. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\GeneralDigest.cs" />
  323. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\GOST3411Digest.cs" />
  324. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\KeccakDigest.cs" />
  325. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\LongDigest.cs" />
  326. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\MD2Digest.cs" />
  327. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\MD4Digest.cs" />
  328. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\MD5Digest.cs" />
  329. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\NullDigest.cs" />
  330. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\RipeMD128Digest.cs" />
  331. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\RipeMD160Digest.cs" />
  332. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\RipeMD256Digest.cs" />
  333. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\RipeMD320Digest.cs" />
  334. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\Sha1Digest.cs" />
  335. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\Sha224Digest.cs" />
  336. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\Sha256Digest.cs" />
  337. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\Sha384Digest.cs" />
  338. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\SHA3Digest.cs" />
  339. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\Sha512Digest.cs" />
  340. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\Sha512tDigest.cs" />
  341. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\ShakeDigest.cs" />
  342. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\TigerDigest.cs" />
  343. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\digests\WhirlpoolDigest.cs" />
  344. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\ec\CustomNamedCurves.cs" />
  345. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\encodings\ISO9796d1Encoding.cs" />
  346. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\encodings\OaepEncoding.cs" />
  347. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\encodings\Pkcs1Encoding.cs" />
  348. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\AesEngine.cs" />
  349. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\AesFastEngine.cs" />
  350. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\AesWrapEngine.cs" />
  351. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\BlowfishEngine.cs" />
  352. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\CamelliaEngine.cs" />
  353. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\CamelliaWrapEngine.cs" />
  354. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\Cast5Engine.cs" />
  355. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\Cast6Engine.cs" />
  356. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\ChaCha7539Engine.cs" />
  357. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\ChaChaEngine.cs" />
  358. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\DesEdeEngine.cs" />
  359. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\DesEdeWrapEngine.cs" />
  360. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\DesEngine.cs" />
  361. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\ElGamalEngine.cs" />
  362. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\GOST28147Engine.cs" />
  363. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\HC128Engine.cs" />
  364. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\HC256Engine.cs" />
  365. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\IdeaEngine.cs" />
  366. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\IesEngine.cs" />
  367. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\NoekeonEngine.cs" />
  368. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RC2Engine.cs" />
  369. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RC2WrapEngine.cs" />
  370. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RC4Engine.cs" />
  371. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RC532Engine.cs" />
  372. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RC564Engine.cs" />
  373. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RC6Engine.cs" />
  374. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RFC3211WrapEngine.cs" />
  375. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RFC3394WrapEngine.cs" />
  376. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RijndaelEngine.cs" />
  377. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RSABlindedEngine.cs" />
  378. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\RSACoreEngine.cs" />
  379. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\Salsa20Engine.cs" />
  380. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\SEEDEngine.cs" />
  381. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\SEEDWrapEngine.cs" />
  382. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\SerpentEngine.cs" />
  383. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\SerpentEngineBase.cs" />
  384. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\SkipjackEngine.cs" />
  385. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\TEAEngine.cs" />
  386. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\TwofishEngine.cs" />
  387. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\VMPCEngine.cs" />
  388. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\VMPCKSA3Engine.cs" />
  389. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\engines\XTEAEngine.cs" />
  390. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\DHBasicKeyPairGenerator.cs" />
  391. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\DHKeyGeneratorHelper.cs" />
  392. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\DHKeyPairGenerator.cs" />
  393. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\DHParametersHelper.cs" />
  394. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\DsaKeyPairGenerator.cs" />
  395. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\ECKeyPairGenerator.cs" />
  396. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\ElGamalKeyPairGenerator.cs" />
  397. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\Poly1305KeyGenerator.cs" />
  398. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\generators\RsaKeyPairGenerator.cs" />
  399. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IAsymmetricBlockCipher.cs" />
  400. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IAsymmetricCipherKeyPairGenerator.cs" />
  401. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IBasicAgreement.cs" />
  402. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IBlockCipher.cs" />
  403. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IBlockResult.cs" />
  404. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IBufferedCipher.cs" />
  405. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\ICipherParameters.cs" />
  406. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IDerivationFunction.cs" />
  407. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IDerivationParameters.cs" />
  408. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IDigest.cs" />
  409. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IDSA.cs" />
  410. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IMac.cs" />
  411. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\InvalidCipherTextException.cs" />
  412. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\ISignatureFactory.cs" />
  413. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\ISigner.cs" />
  414. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\ISignerWithRecovery.cs" />
  415. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IStreamCalculator.cs" />
  416. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IStreamCipher.cs" />
  417. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IVerifier.cs" />
  418. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IVerifierFactory.cs" />
  419. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IVerifierFactoryProvider.cs" />
  420. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IWrapper.cs" />
  421. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\IXof.cs" />
  422. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\KeyGenerationParameters.cs" />
  423. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\CbcBlockCipherMac.cs" />
  424. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\CfbBlockCipherMac.cs" />
  425. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\CMac.cs" />
  426. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\GOST28147Mac.cs" />
  427. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\HMac.cs" />
  428. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\ISO9797Alg3Mac.cs" />
  429. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\Poly1305.cs" />
  430. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\SipHash.cs" />
  431. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\macs\VMPCMac.cs" />
  432. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\MaxBytesExceededException.cs" />
  433. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\CbcBlockCipher.cs" />
  434. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\CcmBlockCipher.cs" />
  435. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\CfbBlockCipher.cs" />
  436. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\CtsBlockCipher.cs" />
  437. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\EAXBlockCipher.cs" />
  438. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\gcm\GcmUtilities.cs" />
  439. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\gcm\IGcmExponentiator.cs" />
  440. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\gcm\IGcmMultiplier.cs" />
  441. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\gcm\Tables1kGcmExponentiator.cs" />
  442. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\gcm\Tables8kGcmMultiplier.cs" />
  443. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\GCMBlockCipher.cs" />
  444. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\GOFBBlockCipher.cs" />
  445. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\IAeadBlockCipher.cs" />
  446. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\OCBBlockCipher.cs" />
  447. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\OfbBlockCipher.cs" />
  448. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\OpenPgpCfbBlockCipher.cs" />
  449. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\modes\SicBlockCipher.cs" />
  450. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\operators\Asn1Signature.cs" />
  451. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\OutputLengthException.cs" />
  452. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\paddings\BlockCipherPadding.cs" />
  453. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\paddings\ISO10126d2Padding.cs" />
  454. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\paddings\ISO7816d4Padding.cs" />
  455. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\paddings\PaddedBufferedBlockCipher.cs" />
  456. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\paddings\Pkcs7Padding.cs" />
  457. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\paddings\TbcPadding.cs" />
  458. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\paddings\X923Padding.cs" />
  459. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\paddings\ZeroBytePadding.cs" />
  460. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\AEADParameters.cs" />
  461. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DesEdeParameters.cs" />
  462. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DesParameters.cs" />
  463. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DHKeyGenerationParameters.cs" />
  464. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DHKeyParameters.cs" />
  465. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DHParameters.cs" />
  466. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DHPrivateKeyParameters.cs" />
  467. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DHPublicKeyParameters.cs" />
  468. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DHValidationParameters.cs" />
  469. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DsaKeyGenerationParameters.cs" />
  470. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DsaKeyParameters.cs" />
  471. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DsaParameters.cs" />
  472. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DsaPrivateKeyParameters.cs" />
  473. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DsaPublicKeyParameters.cs" />
  474. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\DsaValidationParameters.cs" />
  475. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ECDomainParameters.cs" />
  476. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ECKeyGenerationParameters.cs" />
  477. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ECKeyParameters.cs" />
  478. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ECPrivateKeyParameters.cs" />
  479. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ECPublicKeyParameters.cs" />
  480. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ElGamalKeyGenerationParameters.cs" />
  481. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ElGamalKeyParameters.cs" />
  482. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ElGamalParameters.cs" />
  483. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ElGamalPrivateKeyParameters.cs" />
  484. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ElGamalPublicKeyParameters.cs" />
  485. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\GOST3410KeyParameters.cs" />
  486. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\GOST3410Parameters.cs" />
  487. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\GOST3410PrivateKeyParameters.cs" />
  488. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\GOST3410PublicKeyParameters.cs" />
  489. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\GOST3410ValidationParameters.cs" />
  490. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\IesParameters.cs" />
  491. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\IesWithCipherParameters.cs" />
  492. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ISO18033KDFParameters.cs" />
  493. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\KdfParameters.cs" />
  494. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\KeyParameter.cs" />
  495. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\MqvPrivateParameters.cs" />
  496. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\MqvPublicParameters.cs" />
  497. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ParametersWithIV.cs" />
  498. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ParametersWithRandom.cs" />
  499. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ParametersWithSalt.cs" />
  500. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\ParametersWithSBox.cs" />
  501. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\RC2Parameters.cs" />
  502. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\RC5Parameters.cs" />
  503. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\RSABlindingParameters.cs" />
  504. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\RsaKeyGenerationParameters.cs" />
  505. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\RsaKeyParameters.cs" />
  506. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\parameters\RsaPrivateCrtKeyParameters.cs" />
  507. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\PbeParametersGenerator.cs" />
  508. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\CryptoApiRandomGenerator.cs" />
  509. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\DigestRandomGenerator.cs" />
  510. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\prng\IRandomGenerator.cs" />
  511. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\DsaDigestSigner.cs" />
  512. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\DsaSigner.cs" />
  513. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\ECDsaSigner.cs" />
  514. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\ECGOST3410Signer.cs" />
  515. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\ECNRSigner.cs" />
  516. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\GenericSigner.cs" />
  517. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\GOST3410DigestSigner.cs" />
  518. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\GOST3410Signer.cs" />
  519. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\HMacDsaKCalculator.cs" />
  520. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\IDsaKCalculator.cs" />
  521. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\Iso9796d2Signer.cs" />
  522. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\IsoTrailers.cs" />
  523. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\PssSigner.cs" />
  524. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\RandomDsaKCalculator.cs" />
  525. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\RsaDigestSigner.cs" />
  526. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\signers\X931Signer.cs" />
  527. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsAgreementCredentials.cs" />
  528. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsCipherFactory.cs" />
  529. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsClient.cs" />
  530. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsContext.cs" />
  531. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsCredentials.cs" />
  532. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsEncryptionCredentials.cs" />
  533. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsKeyExchange.cs" />
  534. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsPeer.cs" />
  535. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsServer.cs" />
  536. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsSigner.cs" />
  537. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AbstractTlsSignerCredentials.cs" />
  538. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AlertDescription.cs" />
  539. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AlertLevel.cs" />
  540. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\AlwaysValidVerifyer.cs" />
  541. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ByteQueue.cs" />
  542. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ByteQueueStream.cs" />
  543. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\CertChainType.cs" />
  544. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\Certificate.cs" />
  545. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\CertificateRequest.cs" />
  546. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\CertificateStatus.cs" />
  547. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\CertificateStatusRequest.cs" />
  548. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\CertificateStatusType.cs" />
  549. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\Chacha20Poly1305.cs" />
  550. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ChangeCipherSpec.cs" />
  551. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\CipherSuite.cs" />
  552. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\CipherType.cs" />
  553. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ClientCertificateType.cs" />
  554. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\CombinedHash.cs" />
  555. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\CompressionMethod.cs" />
  556. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ConnectionEnd.cs" />
  557. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ContentType.cs" />
  558. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DatagramTransport.cs" />
  559. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DefaultTlsCipherFactory.cs" />
  560. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DefaultTlsClient.cs" />
  561. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DeferredHash.cs" />
  562. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DigestInputBuffer.cs" />
  563. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\DigitallySigned.cs" />
  564. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ECBasisType.cs" />
  565. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ECCurveType.cs" />
  566. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ECPointFormat.cs" />
  567. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\EncryptionAlgorithm.cs" />
  568. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ExporterLabel.cs" />
  569. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ExtensionType.cs" />
  570. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\FiniteFieldDheGroup.cs" />
  571. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\HandshakeType.cs" />
  572. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\HashAlgorithm.cs" />
  573. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\HeartbeatExtension.cs" />
  574. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\HeartbeatMessageType.cs" />
  575. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\HeartbeatMode.cs" />
  576. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ICertificateVerifyer.cs" />
  577. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\KeyExchangeAlgorithm.cs" />
  578. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\LegacyTlsAuthentication.cs" />
  579. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\LegacyTlsClient.cs" />
  580. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\MacAlgorithm.cs" />
  581. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\MaxFragmentLength.cs" />
  582. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\NamedCurve.cs" />
  583. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\NameType.cs" />
  584. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\NewSessionTicket.cs" />
  585. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\OcspStatusRequest.cs" />
  586. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\PrfAlgorithm.cs" />
  587. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ProtocolVersion.cs" />
  588. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\RecordStream.cs" />
  589. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\SecurityParameters.cs" />
  590. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ServerDHParams.cs" />
  591. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ServerName.cs" />
  592. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\ServerNameList.cs" />
  593. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\SessionParameters.cs" />
  594. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\SignatureAlgorithm.cs" />
  595. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\SignatureAndHashAlgorithm.cs" />
  596. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\SignerInputBuffer.cs" />
  597. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\Ssl3Mac.cs" />
  598. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\SupplementalDataEntry.cs" />
  599. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsAeadCipher.cs" />
  600. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsAgreementCredentials.cs" />
  601. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsAuthentication.cs" />
  602. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsBlockCipher.cs" />
  603. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsCipher.cs" />
  604. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsCipherFactory.cs" />
  605. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsClient.cs" />
  606. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsClientContext.cs" />
  607. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsClientContextImpl.cs" />
  608. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsClientProtocol.cs" />
  609. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsCompression.cs" />
  610. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsContext.cs" />
  611. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsCredentials.cs" />
  612. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsDeflateCompression.cs" />
  613. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsDheKeyExchange.cs" />
  614. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsDHKeyExchange.cs" />
  615. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsDHUtilities.cs" />
  616. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsDsaSigner.cs" />
  617. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsDssSigner.cs" />
  618. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsEccUtilities.cs" />
  619. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsECDheKeyExchange.cs" />
  620. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsECDHKeyExchange.cs" />
  621. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsECDsaSigner.cs" />
  622. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsEncryptionCredentials.cs" />
  623. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsExtensionsUtilities.cs" />
  624. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsFatalAlert.cs" />
  625. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsHandshakeHash.cs" />
  626. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsKeyExchange.cs" />
  627. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsMac.cs" />
  628. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsNullCipher.cs" />
  629. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsNullCompression.cs" />
  630. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsPeer.cs" />
  631. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsProtocol.cs" />
  632. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsRsaKeyExchange.cs" />
  633. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsRsaSigner.cs" />
  634. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsRsaUtilities.cs" />
  635. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsServer.cs" />
  636. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsServerContext.cs" />
  637. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsServerContextImpl.cs" />
  638. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsSession.cs" />
  639. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsSessionImpl.cs" />
  640. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsSigner.cs" />
  641. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsSignerCredentials.cs" />
  642. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsStream.cs" />
  643. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsStreamCipher.cs" />
  644. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\tls\TlsUtilities.cs" />
  645. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\crypto\util\Pack.cs" />
  646. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\BigInteger.cs" />
  647. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\abc\SimpleBigDecimal.cs" />
  648. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\abc\Tnaf.cs" />
  649. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\abc\ZTauElement.cs" />
  650. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\djb\Curve25519.cs" />
  651. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\djb\Curve25519Field.cs" />
  652. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\djb\Curve25519FieldElement.cs" />
  653. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\djb\Curve25519Point.cs" />
  654. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP128R1Curve.cs" />
  655. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP128R1Field.cs" />
  656. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP128R1FieldElement.cs" />
  657. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP128R1Point.cs" />
  658. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP160K1Curve.cs" />
  659. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP160K1Point.cs" />
  660. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP160R1Curve.cs" />
  661. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP160R1Field.cs" />
  662. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP160R1FieldElement.cs" />
  663. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP160R1Point.cs" />
  664. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP160R2Curve.cs" />
  665. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP160R2Field.cs" />
  666. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP160R2FieldElement.cs" />
  667. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP160R2Point.cs" />
  668. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP192K1Curve.cs" />
  669. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP192K1Field.cs" />
  670. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP192K1FieldElement.cs" />
  671. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP192K1Point.cs" />
  672. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP192R1Curve.cs" />
  673. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP192R1Field.cs" />
  674. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP192R1FieldElement.cs" />
  675. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP192R1Point.cs" />
  676. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP224K1Curve.cs" />
  677. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP224K1Field.cs" />
  678. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP224K1FieldElement.cs" />
  679. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP224K1Point.cs" />
  680. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP224R1Curve.cs" />
  681. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP224R1Field.cs" />
  682. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP224R1FieldElement.cs" />
  683. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP224R1Point.cs" />
  684. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP256K1Curve.cs" />
  685. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP256K1Field.cs" />
  686. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP256K1FieldElement.cs" />
  687. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP256K1Point.cs" />
  688. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP256R1Curve.cs" />
  689. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP256R1Field.cs" />
  690. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP256R1FieldElement.cs" />
  691. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP256R1Point.cs" />
  692. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP384R1Curve.cs" />
  693. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP384R1Field.cs" />
  694. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP384R1FieldElement.cs" />
  695. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP384R1Point.cs" />
  696. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP521R1Curve.cs" />
  697. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP521R1Field.cs" />
  698. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP521R1FieldElement.cs" />
  699. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecP521R1Point.cs" />
  700. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT113Field.cs" />
  701. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT113FieldElement.cs" />
  702. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT113R1Curve.cs" />
  703. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT113R1Point.cs" />
  704. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT113R2Curve.cs" />
  705. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT113R2Point.cs" />
  706. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT131Field.cs" />
  707. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT131FieldElement.cs" />
  708. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT131R1Curve.cs" />
  709. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT131R1Point.cs" />
  710. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT131R2Curve.cs" />
  711. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT131R2Point.cs" />
  712. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT163Field.cs" />
  713. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT163FieldElement.cs" />
  714. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT163K1Curve.cs" />
  715. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT163K1Point.cs" />
  716. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT163R1Curve.cs" />
  717. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT163R1Point.cs" />
  718. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT163R2Curve.cs" />
  719. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT163R2Point.cs" />
  720. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT193Field.cs" />
  721. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT193FieldElement.cs" />
  722. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT193R1Curve.cs" />
  723. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT193R1Point.cs" />
  724. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT193R2Curve.cs" />
  725. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT193R2Point.cs" />
  726. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT233Field.cs" />
  727. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT233FieldElement.cs" />
  728. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT233K1Curve.cs" />
  729. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT233K1Point.cs" />
  730. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT233R1Curve.cs" />
  731. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT233R1Point.cs" />
  732. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT239Field.cs" />
  733. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT239FieldElement.cs" />
  734. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT239K1Curve.cs" />
  735. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT239K1Point.cs" />
  736. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT283Field.cs" />
  737. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT283FieldElement.cs" />
  738. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT283K1Curve.cs" />
  739. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT283K1Point.cs" />
  740. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT283R1Curve.cs" />
  741. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT283R1Point.cs" />
  742. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT409Field.cs" />
  743. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT409FieldElement.cs" />
  744. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT409K1Curve.cs" />
  745. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT409K1Point.cs" />
  746. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT409R1Curve.cs" />
  747. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT409R1Point.cs" />
  748. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT571Field.cs" />
  749. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT571FieldElement.cs" />
  750. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT571K1Curve.cs" />
  751. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT571K1Point.cs" />
  752. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT571R1Curve.cs" />
  753. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\custom\sec\SecT571R1Point.cs" />
  754. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\ECAlgorithms.cs" />
  755. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\ECCurve.cs" />
  756. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\ECFieldElement.cs" />
  757. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\ECPoint.cs" />
  758. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\ECPointMap.cs" />
  759. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\endo\ECEndomorphism.cs" />
  760. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\endo\GlvEndomorphism.cs" />
  761. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\endo\GlvTypeBEndomorphism.cs" />
  762. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\endo\GlvTypeBParameters.cs" />
  763. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\LongArray.cs" />
  764. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\AbstractECMultiplier.cs" />
  765. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\ECMultiplier.cs" />
  766. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\FixedPointCombMultiplier.cs" />
  767. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\FixedPointPreCompInfo.cs" />
  768. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\FixedPointUtilities.cs" />
  769. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\GlvMultiplier.cs" />
  770. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\PreCompInfo.cs" />
  771. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\WNafL2RMultiplier.cs" />
  772. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\WNafPreCompInfo.cs" />
  773. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\WNafUtilities.cs" />
  774. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\WTauNafMultiplier.cs" />
  775. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\multiplier\WTauNafPreCompInfo.cs" />
  776. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\ec\ScaleXPointMap.cs" />
  777. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\field\FiniteFields.cs" />
  778. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\field\GenericPolynomialExtensionField.cs" />
  779. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\field\GF2Polynomial.cs" />
  780. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\field\IExtensionField.cs" />
  781. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\field\IFiniteField.cs" />
  782. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\field\IPolynomial.cs" />
  783. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\field\IPolynomialExtensionField.cs" />
  784. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\field\PrimeField.cs" />
  785. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Interleave.cs" />
  786. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Mod.cs" />
  787. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat.cs" />
  788. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat128.cs" />
  789. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat160.cs" />
  790. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat192.cs" />
  791. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat224.cs" />
  792. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat256.cs" />
  793. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat320.cs" />
  794. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat384.cs" />
  795. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat448.cs" />
  796. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat512.cs" />
  797. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\math\raw\Nat576.cs" />
  798. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\ReflectionHelpers.cs" />
  799. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\cert\CertificateEncodingException.cs" />
  800. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\cert\CertificateException.cs" />
  801. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\cert\CertificateExpiredException.cs" />
  802. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\cert\CertificateNotYetValidException.cs" />
  803. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\cert\CertificateParsingException.cs" />
  804. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\cert\CrlException.cs" />
  805. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\DigestUtilities.cs" />
  806. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\GeneralSecurityException.cs" />
  807. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\InvalidKeyException.cs" />
  808. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\InvalidParameterException.cs" />
  809. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\KeyException.cs" />
  810. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\MacUtilities.cs" />
  811. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\PublicKeyFactory.cs" />
  812. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\SecureRandom.cs" />
  813. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\SecurityUtilityException.cs" />
  814. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\SignatureException.cs" />
  815. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\security\SignerUtilities.cs" />
  816. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\Arrays.cs" />
  817. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\BigIntegers.cs" />
  818. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\collections\CollectionUtilities.cs" />
  819. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\collections\EmptyEnumerable.cs" />
  820. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\collections\EnumerableProxy.cs" />
  821. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\collections\HashSet.cs" />
  822. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\collections\ISet.cs" />
  823. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\date\DateTimeObject.cs" />
  824. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\date\DateTimeUtilities.cs" />
  825. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\encoders\Base64.cs" />
  826. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\encoders\Base64Encoder.cs" />
  827. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\encoders\Hex.cs" />
  828. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\encoders\HexEncoder.cs" />
  829. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\encoders\IEncoder.cs" />
  830. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\Enums.cs" />
  831. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\IMemoable.cs" />
  832. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\Integers.cs" />
  833. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\BaseInputStream.cs" />
  834. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\BaseOutputStream.cs" />
  835. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\FilterStream.cs" />
  836. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\pem\PemGenerationException.cs" />
  837. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\pem\PemHeader.cs" />
  838. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\pem\PemObject.cs" />
  839. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\pem\PemObjectGenerator.cs" />
  840. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\pem\PemReader.cs" />
  841. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\pem\PemWriter.cs" />
  842. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\PushbackStream.cs" />
  843. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\StreamOverflowException.cs" />
  844. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\Streams.cs" />
  845. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\TeeInputStream.cs" />
  846. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\io\TeeOutputStream.cs" />
  847. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\MemoableResetException.cs" />
  848. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\net\IPAddress.cs" />
  849. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\Platform.cs" />
  850. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\Strings.cs" />
  851. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\Times.cs" />
  852. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\Adler32.cs" />
  853. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\Deflate.cs" />
  854. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\InfBlocks.cs" />
  855. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\InfCodes.cs" />
  856. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\Inflate.cs" />
  857. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\InfTree.cs" />
  858. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\JZlib.cs" />
  859. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\StaticTree.cs" />
  860. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\ZOutputStream.cs" />
  861. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\ZStream.cs" />
  862. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\util\zlib\ZTree.cs" />
  863. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\extension\X509ExtensionUtil.cs" />
  864. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\IX509Extension.cs" />
  865. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\PEMParser.cs" />
  866. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509Certificate.cs" />
  867. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509CertificateParser.cs" />
  868. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509Crl.cs" />
  869. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509CrlEntry.cs" />
  870. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509CrlParser.cs" />
  871. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509ExtensionBase.cs" />
  872. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\x509\X509SignatureUtil.cs" />
  873. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\ServerSentEvents\EventSource.cs" />
  874. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\ServerSentEvents\EventSourceResponse.cs" />
  875. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\ServerSentEvents\Message.cs" />
  876. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalR\Authentication\IAuthenticationProvider.cs" />
  877. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalR\Connection.cs" />
  878. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalR\Enums.cs" />
  879. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalR\Hubs\Hub.cs" />
  880. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalR\Hubs\IHub.cs" />
  881. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalR\JsonEncoders\DefaultJsonEncoder.cs" />
  882. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalR\JsonEncoders\IJsonEncoder.cs" />
  883. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalR\Messages\ClientMessage.cs" />
  884. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalR\Messages\IServerMessage.cs" />
  885. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalR\Messages\ServerMessages.cs" />
  886. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalR\NegotiationData.cs" />
  887. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalR\Transports\PollingTransport.cs" />
  888. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalR\Transports\PostSendTransportBase.cs" />
  889. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalR\Transports\ServerSentEventsTransport.cs" />
  890. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalR\Transports\TransportBase.cs" />
  891. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalR\Transports\WebSocketTransport.cs" />
  892. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalRCore\HelperClasses.cs" />
  893. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalRCore\HubConnection.cs" />
  894. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalRCore\IAuthenticationProvider.cs" />
  895. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalRCore\JsonProtocol.cs" />
  896. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalRCore\Messages\Invocation.cs" />
  897. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalRCore\Messages\Message.cs" />
  898. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalRCore\Messages\NegotiationResult.cs" />
  899. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SignalRCore\Transports\WebsocketTransport.cs" />
  900. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SocketIO\Enums.cs" />
  901. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SocketIO\Error.cs" />
  902. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SocketIO\Events\EventDescriptor.cs" />
  903. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SocketIO\Events\EventNames.cs" />
  904. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SocketIO\Events\EventTable.cs" />
  905. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SocketIO\HandshakeData.cs" />
  906. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SocketIO\Interfaces.cs" />
  907. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SocketIO\JsonEncoders\DefaultJSonEncoder.cs" />
  908. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SocketIO\JsonEncoders\IJSonEncoder.cs" />
  909. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SocketIO\Packet.cs" />
  910. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SocketIO\Socket.cs" />
  911. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SocketIO\SocketManager.cs" />
  912. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SocketIO\SocketOptions.cs" />
  913. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SocketIO\Transports\ITransport.cs" />
  914. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SocketIO\Transports\PollingTransport.cs" />
  915. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SocketIO\Transports\WebSocketTransport.cs" />
  916. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\Statistics\Statistics.cs" />
  917. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\WebSocket\Extensions\IExtension.cs" />
  918. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\WebSocket\Extensions\PerMessageCompression.cs" />
  919. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\WebSocket\Frames\WebSocketFrame.cs" />
  920. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\WebSocket\Frames\WebSocketFrameReader.cs" />
  921. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\WebSocket\Frames\WebSocketFrameTypes.cs" />
  922. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\WebSocket\WebSocket.cs" />
  923. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\WebSocket\WebSocketResponse.cs" />
  924. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\WebSocket\WebSocketStatusCodes.cs" />
  925. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\Helpers\CodeBlocks.cs" />
  926. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\Helpers\GUIHelper.cs" />
  927. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\HTTP\AssetBundleSample.cs" />
  928. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\HTTP\LargeFileDownloadSample.cs" />
  929. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\HTTP\TextureDownloadSample.cs" />
  930. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\HTTP\UploadStream.cs" />
  931. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\Plugin\CacheMaintenanceSample.cs" />
  932. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\SampleSelector.cs" />
  933. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\SignalR\Authentication Providers\SampleCookieAuthentication.cs" />
  934. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\SignalR\Authentication Providers\SampleHeaderAuthentication.cs" />
  935. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\SignalR\AuthenticationSample.cs" />
  936. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\SignalR\ConnectionAPISample.cs" />
  937. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\SignalR\ConnectionStatusSample.cs" />
  938. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\SignalR\DemoHubSample.cs" />
  939. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\SignalR\Json Encoders\JSonDotnetEncoder.cs" />
  940. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\SignalR\Json Encoders\LitJsonEncoder.cs" />
  941. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\SignalR\SimpleStreamingSample.cs" />
  942. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\SignalRCore\Encoders\JsonDotNetEncoder.cs" />
  943. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\SignalRCore\Encoders\LitJsonEncoder.cs" />
  944. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\SocketIO\SocketIO Json Encoders\JsonDotNetEncoder.cs" />
  945. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\SocketIO\SocketIO Json Encoders\LitJsonEncoder.cs" />
  946. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\SocketIO\SocketIOChatSample.cs" />
  947. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\SocketIO\SocketIOWePlaySample.cs" />
  948. <Compile Include="Assets\MediaSoup\Best HTTP (Pro)\Examples\Websocket\WebSocketSample.cs" />
  949. <Compile Include="Assets\MediaSoup\Model\UserInfo.cs" />
  950. <Compile Include="Assets\MediaSoup\NetWork\Network.cs" />
  951. <Compile Include="Assets\MediaSoup\NetWork\NetworkConfiguration.cs" />
  952. <Compile Include="Assets\MediaSoup\NetWork\NetWorkManager.cs" />
  953. <Compile Include="Assets\MediaSoup\WebSocket\WebSocketClient.cs" />
  954. <Compile Include="Assets\MediaSoup\WebSocket\WSGlobalHandler.cs" />
  955. <Compile Include="Assets\MediaSoup\WebSocket\WSHandler.cs" />
  956. <Compile Include="Assets\MediaSoup\WebSocket\WSPaintingHandler.cs" />
  957. <Compile Include="Assets\MediaSoup\WebSocket\WSRoomHandler.cs" />
  958. <Compile Include="Assets\MediaSoup\WebSocket\WSRtcHandler.cs" />
  959. <Compile Include="Assets\MediaSoup\WebSocket\WSUserHandler.cs" />
  960. <Compile Include="Assets\Model\Scripts\EffectNeed\SelfRotate.cs" />
  961. <Compile Include="Assets\Model\Scripts\EffectNeed\UVAnimCtrl.cs" />
  962. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Base\BaseConfig.cs" />
  963. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Base\BaseList.cs" />
  964. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Base\BaseView.cs" />
  965. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Base\BaseWindow.cs" />
  966. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Base\Mark.cs" />
  967. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Base\ProjectBaseConfig.cs" />
  968. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Base\Task\ItemList.cs" />
  969. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Base\Task\ItemView.cs" />
  970. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Base\TaskBaseConfig.cs" />
  971. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Demo\AndroidVolume.cs" />
  972. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Demo\BigVideoManager.cs" />
  973. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Demo\CameraPluginWrapper.cs" />
  974. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Demo\CastScreen.cs" />
  975. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Demo\CustomInfo.cs" />
  976. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Demo\CustomMe.cs" />
  977. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Demo\CustomPeer.cs" />
  978. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Demo\CustomPeerList.cs" />
  979. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Demo\CustomRTC.cs" />
  980. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Demo\LocalTexture.cs" />
  981. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Demo\openCamera.cs" />
  982. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Demo\PeerConfig.cs" />
  983. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Demo\PeerView.cs" />
  984. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Demo\PlayCast.cs" />
  985. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\SCRtc\SCRtcAndroidEngine.cs" />
  986. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\SCRtc\SCRtcConfig.cs" />
  987. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\SCRtc\SCRtcEngine.cs" />
  988. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\SCRtc\SCRtcFactory.cs" />
  989. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\SCRtc\SCRtcHandle.cs" />
  990. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\SCRtc\SCRtcIosEngine.cs" />
  991. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\SCRtc\SCRtcManager.cs" />
  992. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\SCRtc\SCRtcMe.cs" />
  993. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\SCRtc\SCRtcPCEngine.cs" />
  994. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\SCRtc\SCRtcPeer.cs" />
  995. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\SCRtc\SCRtcPeers.cs" />
  996. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\SCRtc\SDKCallBackListener.cs" />
  997. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Z_MyScripts\BaseSetting.cs" />
  998. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Z_MyScripts\ChooseManage.cs" />
  999. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Z_MyScripts\ConnectManager.cs" />
  1000. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Scripts\Z_MyScripts\ViewManager.cs" />
  1001. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\test.cs" />
  1002. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen_Phone\Scripts\BtnClick.cs" />
  1003. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen_Phone\Scripts\GetIPAndLogin.cs" />
  1004. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen_Phone\Scripts\Login.cs" />
  1005. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen_Phone\Scripts\MyTouch.cs" />
  1006. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen_Phone\Scripts\RecordScreen.cs" />
  1007. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen_Phone\Scripts\ResetPos.cs" />
  1008. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen_Phone\Scripts\Shot.cs" />
  1009. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen_Phone\Scripts\ShotScreen.cs" />
  1010. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen_Phone\Scripts\Tcp\TClient.cs" />
  1011. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen_Phone\Scripts\Tcp\TServer.cs" />
  1012. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen_Phone\Scripts\Tcp\TServerC.cs" />
  1013. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen_Phone\Scripts\Tcp\UdpClient.cs" />
  1014. <Compile Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen_Phone\Scripts\Tcp\UdpServer.cs" />
  1015. <Compile Include="Assets\Model_ProjectionScreen301\Sharpen\Example\SliderScript.cs" />
  1016. <Compile Include="Assets\Model_ProjectionScreen301\Sharpen\Sharpen.cs" />
  1017. <Compile Include="Assets\Module_Sphere\Scripts\SphereController.cs" />
  1018. <Compile Include="Assets\OpenCVForUnity\org\opencv\calib3d\Calib3d.cs" />
  1019. <Compile Include="Assets\OpenCVForUnity\org\opencv\calib3d\StereoBM.cs" />
  1020. <Compile Include="Assets\OpenCVForUnity\org\opencv\calib3d\StereoMatcher.cs" />
  1021. <Compile Include="Assets\OpenCVForUnity\org\opencv\calib3d\StereoSGBM.cs" />
  1022. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\Algorithm.cs" />
  1023. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\Core.cs" />
  1024. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\CvException.cs" />
  1025. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\CvType.cs" />
  1026. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\DMatch.cs" />
  1027. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\KeyPoint.cs" />
  1028. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\Mat.cs" />
  1029. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\MatOfByte.cs" />
  1030. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\MatOfDMatch.cs" />
  1031. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\MatOfDouble.cs" />
  1032. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\MatOfFloat.cs" />
  1033. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\MatOfFloat4.cs" />
  1034. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\MatOfFloat6.cs" />
  1035. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\MatOfInt.cs" />
  1036. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\MatOfInt4.cs" />
  1037. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\MatOfKeyPoint.cs" />
  1038. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\MatOfPoint.cs" />
  1039. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\MatOfPoint2f.cs" />
  1040. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\MatOfPoint3.cs" />
  1041. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\MatOfPoint3f.cs" />
  1042. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\MatOfRect.cs" />
  1043. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\MatOfRect2d.cs" />
  1044. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\MatOfRotatedRect.cs" />
  1045. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\Point.cs" />
  1046. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\Point3.cs" />
  1047. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\Range.cs" />
  1048. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\Rect.cs" />
  1049. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\Rect2d.cs" />
  1050. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\RotatedRect.cs" />
  1051. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\Scalar.cs" />
  1052. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\Size.cs" />
  1053. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\TermCriteria.cs" />
  1054. <Compile Include="Assets\OpenCVForUnity\org\opencv\core\TickMeter.cs" />
  1055. <Compile Include="Assets\OpenCVForUnity\org\opencv\DisposableObject.cs" />
  1056. <Compile Include="Assets\OpenCVForUnity\org\opencv\DisposableOpenCVObject.cs" />
  1057. <Compile Include="Assets\OpenCVForUnity\org\opencv\dnn\DictValue.cs" />
  1058. <Compile Include="Assets\OpenCVForUnity\org\opencv\dnn\Dnn.cs" />
  1059. <Compile Include="Assets\OpenCVForUnity\org\opencv\dnn\Layer.cs" />
  1060. <Compile Include="Assets\OpenCVForUnity\org\opencv\dnn\Net.cs" />
  1061. <Compile Include="Assets\OpenCVForUnity\org\opencv\features2d\AgastFeatureDetector.cs" />
  1062. <Compile Include="Assets\OpenCVForUnity\org\opencv\features2d\AKAZE.cs" />
  1063. <Compile Include="Assets\OpenCVForUnity\org\opencv\features2d\BFMatcher.cs" />
  1064. <Compile Include="Assets\OpenCVForUnity\org\opencv\features2d\BOWImgDescriptorExtractor.cs" />
  1065. <Compile Include="Assets\OpenCVForUnity\org\opencv\features2d\BOWKMeansTrainer.cs" />
  1066. <Compile Include="Assets\OpenCVForUnity\org\opencv\features2d\BOWTrainer.cs" />
  1067. <Compile Include="Assets\OpenCVForUnity\org\opencv\features2d\BRISK.cs" />
  1068. <Compile Include="Assets\OpenCVForUnity\org\opencv\features2d\DescriptorMatcher.cs" />
  1069. <Compile Include="Assets\OpenCVForUnity\org\opencv\features2d\FastFeatureDetector.cs" />
  1070. <Compile Include="Assets\OpenCVForUnity\org\opencv\features2d\Feature2D.cs" />
  1071. <Compile Include="Assets\OpenCVForUnity\org\opencv\features2d\Features2d.cs" />
  1072. <Compile Include="Assets\OpenCVForUnity\org\opencv\features2d\FlannBasedMatcher.cs" />
  1073. <Compile Include="Assets\OpenCVForUnity\org\opencv\features2d\GFTTDetector.cs" />
  1074. <Compile Include="Assets\OpenCVForUnity\org\opencv\features2d\KAZE.cs" />
  1075. <Compile Include="Assets\OpenCVForUnity\org\opencv\features2d\MSER.cs" />
  1076. <Compile Include="Assets\OpenCVForUnity\org\opencv\features2d\ORB.cs" />
  1077. <Compile Include="Assets\OpenCVForUnity\org\opencv\features2d\Params.cs" />
  1078. <Compile Include="Assets\OpenCVForUnity\org\opencv\imgcodecs\Imgcodecs.cs" />
  1079. <Compile Include="Assets\OpenCVForUnity\org\opencv\imgproc\CLAHE.cs" />
  1080. <Compile Include="Assets\OpenCVForUnity\org\opencv\imgproc\GeneralizedHough.cs" />
  1081. <Compile Include="Assets\OpenCVForUnity\org\opencv\imgproc\GeneralizedHoughBallard.cs" />
  1082. <Compile Include="Assets\OpenCVForUnity\org\opencv\imgproc\GeneralizedHoughGuil.cs" />
  1083. <Compile Include="Assets\OpenCVForUnity\org\opencv\imgproc\Imgproc.cs" />
  1084. <Compile Include="Assets\OpenCVForUnity\org\opencv\imgproc\LineSegmentDetector.cs" />
  1085. <Compile Include="Assets\OpenCVForUnity\org\opencv\imgproc\Moments.cs" />
  1086. <Compile Include="Assets\OpenCVForUnity\org\opencv\imgproc\Subdiv2D.cs" />
  1087. <Compile Include="Assets\OpenCVForUnity\org\opencv\ml\ANN_MLP.cs" />
  1088. <Compile Include="Assets\OpenCVForUnity\org\opencv\ml\Boost.cs" />
  1089. <Compile Include="Assets\OpenCVForUnity\org\opencv\ml\DTrees.cs" />
  1090. <Compile Include="Assets\OpenCVForUnity\org\opencv\ml\EM.cs" />
  1091. <Compile Include="Assets\OpenCVForUnity\org\opencv\ml\KNearest.cs" />
  1092. <Compile Include="Assets\OpenCVForUnity\org\opencv\ml\LogisticRegression.cs" />
  1093. <Compile Include="Assets\OpenCVForUnity\org\opencv\ml\Ml.cs" />
  1094. <Compile Include="Assets\OpenCVForUnity\org\opencv\ml\NormalBayesClassifier.cs" />
  1095. <Compile Include="Assets\OpenCVForUnity\org\opencv\ml\ParamGrid.cs" />
  1096. <Compile Include="Assets\OpenCVForUnity\org\opencv\ml\RTrees.cs" />
  1097. <Compile Include="Assets\OpenCVForUnity\org\opencv\ml\StatModel.cs" />
  1098. <Compile Include="Assets\OpenCVForUnity\org\opencv\ml\SVM.cs" />
  1099. <Compile Include="Assets\OpenCVForUnity\org\opencv\ml\SVMSGD.cs" />
  1100. <Compile Include="Assets\OpenCVForUnity\org\opencv\ml\TrainData.cs" />
  1101. <Compile Include="Assets\OpenCVForUnity\org\opencv\objdetect\BaseCascadeClassifier.cs" />
  1102. <Compile Include="Assets\OpenCVForUnity\org\opencv\objdetect\CascadeClassifier.cs" />
  1103. <Compile Include="Assets\OpenCVForUnity\org\opencv\objdetect\HOGDescriptor.cs" />
  1104. <Compile Include="Assets\OpenCVForUnity\org\opencv\objdetect\Objdetect.cs" />
  1105. <Compile Include="Assets\OpenCVForUnity\org\opencv\objdetect\QRCodeDetector.cs" />
  1106. <Compile Include="Assets\OpenCVForUnity\org\opencv\photo\AlignExposures.cs" />
  1107. <Compile Include="Assets\OpenCVForUnity\org\opencv\photo\AlignMTB.cs" />
  1108. <Compile Include="Assets\OpenCVForUnity\org\opencv\photo\CalibrateCRF.cs" />
  1109. <Compile Include="Assets\OpenCVForUnity\org\opencv\photo\CalibrateDebevec.cs" />
  1110. <Compile Include="Assets\OpenCVForUnity\org\opencv\photo\CalibrateRobertson.cs" />
  1111. <Compile Include="Assets\OpenCVForUnity\org\opencv\photo\MergeDebevec.cs" />
  1112. <Compile Include="Assets\OpenCVForUnity\org\opencv\photo\MergeExposures.cs" />
  1113. <Compile Include="Assets\OpenCVForUnity\org\opencv\photo\MergeMertens.cs" />
  1114. <Compile Include="Assets\OpenCVForUnity\org\opencv\photo\MergeRobertson.cs" />
  1115. <Compile Include="Assets\OpenCVForUnity\org\opencv\photo\Photo.cs" />
  1116. <Compile Include="Assets\OpenCVForUnity\org\opencv\photo\Tonemap.cs" />
  1117. <Compile Include="Assets\OpenCVForUnity\org\opencv\photo\TonemapDrago.cs" />
  1118. <Compile Include="Assets\OpenCVForUnity\org\opencv\photo\TonemapDurand.cs" />
  1119. <Compile Include="Assets\OpenCVForUnity\org\opencv\photo\TonemapMantiuk.cs" />
  1120. <Compile Include="Assets\OpenCVForUnity\org\opencv\photo\TonemapReinhard.cs" />
  1121. <Compile Include="Assets\OpenCVForUnity\org\opencv\unity\ARUtils.cs" />
  1122. <Compile Include="Assets\OpenCVForUnity\org\opencv\unity\helper\ImageOptimizationHelper.cs" />
  1123. <Compile Include="Assets\OpenCVForUnity\org\opencv\unity\helper\WebCamTextureToMatHelper.cs" />
  1124. <Compile Include="Assets\OpenCVForUnity\org\opencv\unity\Utils.cs" />
  1125. <Compile Include="Assets\OpenCVForUnity\org\opencv\utils\Converters.cs" />
  1126. <Compile Include="Assets\OpenCVForUnity\org\opencv\video\BackgroundSubtractor.cs" />
  1127. <Compile Include="Assets\OpenCVForUnity\org\opencv\video\BackgroundSubtractorKNN.cs" />
  1128. <Compile Include="Assets\OpenCVForUnity\org\opencv\video\BackgroundSubtractorMOG2.cs" />
  1129. <Compile Include="Assets\OpenCVForUnity\org\opencv\video\DenseOpticalFlow.cs" />
  1130. <Compile Include="Assets\OpenCVForUnity\org\opencv\video\DISOpticalFlow.cs" />
  1131. <Compile Include="Assets\OpenCVForUnity\org\opencv\video\FarnebackOpticalFlow.cs" />
  1132. <Compile Include="Assets\OpenCVForUnity\org\opencv\video\KalmanFilter.cs" />
  1133. <Compile Include="Assets\OpenCVForUnity\org\opencv\video\SparseOpticalFlow.cs" />
  1134. <Compile Include="Assets\OpenCVForUnity\org\opencv\video\SparsePyrLKOpticalFlow.cs" />
  1135. <Compile Include="Assets\OpenCVForUnity\org\opencv\video\VariationalRefinement.cs" />
  1136. <Compile Include="Assets\OpenCVForUnity\org\opencv\video\Video.cs" />
  1137. <Compile Include="Assets\OpenCVForUnity\org\opencv\videoio\VideoCapture.cs" />
  1138. <Compile Include="Assets\OpenCVForUnity\org\opencv\videoio\Videoio.cs" />
  1139. <Compile Include="Assets\OpenCVForUnity\org\opencv\videoio\VideoWriter.cs" />
  1140. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\aruco\Aruco.cs" />
  1141. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\aruco\Board.cs" />
  1142. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\aruco\CharucoBoard.cs" />
  1143. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\aruco\DetectorParameters.cs" />
  1144. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\aruco\Dictionary.cs" />
  1145. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\aruco\GridBoard.cs" />
  1146. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\bgsegm\BackgroundSubtractorCNT.cs" />
  1147. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\bgsegm\BackgroundSubtractorGMG.cs" />
  1148. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\bgsegm\BackgroundSubtractorGSOC.cs" />
  1149. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\bgsegm\BackgroundSubtractorLSBP.cs" />
  1150. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\bgsegm\BackgroundSubtractorLSBPDesc.cs" />
  1151. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\bgsegm\BackgroundSubtractorMOG.cs" />
  1152. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\bgsegm\Bgsegm.cs" />
  1153. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\bgsegm\SyntheticSequenceGenerator.cs" />
  1154. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\bioinspired\Bioinspired.cs" />
  1155. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\bioinspired\Retina.cs" />
  1156. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\bioinspired\RetinaFastToneMapping.cs" />
  1157. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\bioinspired\TransientAreasSegmentationModule.cs" />
  1158. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ccalib\Ccalib.cs" />
  1159. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\face\BasicFaceRecognizer.cs" />
  1160. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\face\BIF.cs" />
  1161. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\face\EigenFaceRecognizer.cs" />
  1162. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\face\Face.cs" />
  1163. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\face\Facemark.cs" />
  1164. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\face\FacemarkAAM.cs" />
  1165. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\face\FacemarkKazemi.cs" />
  1166. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\face\FacemarkLBF.cs" />
  1167. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\face\FacemarkTrain.cs" />
  1168. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\face\FaceRecognizer.cs" />
  1169. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\face\FisherFaceRecognizer.cs" />
  1170. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\face\LBPHFaceRecognizer.cs" />
  1171. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\face\MACE.cs" />
  1172. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\face\PredictCollector.cs" />
  1173. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\face\StandardCollector.cs" />
  1174. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\fuzzy\Fuzzy.cs" />
  1175. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\img_hash\AverageHash.cs" />
  1176. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\img_hash\BlockMeanHash.cs" />
  1177. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\img_hash\ColorMomentHash.cs" />
  1178. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\img_hash\Img_hash.cs" />
  1179. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\img_hash\ImgHashBase.cs" />
  1180. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\img_hash\MarrHildrethHash.cs" />
  1181. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\img_hash\PHash.cs" />
  1182. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\img_hash\RadialVarianceHash.cs" />
  1183. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\optflow\DualTVL1OpticalFlow.cs" />
  1184. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\optflow\GPCDetails.cs" />
  1185. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\optflow\GPCPatchDescriptor.cs" />
  1186. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\optflow\GPCPatchSample.cs" />
  1187. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\optflow\GPCTrainingSamples.cs" />
  1188. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\optflow\GPCTree.cs" />
  1189. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\optflow\Optflow.cs" />
  1190. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\optflow\OpticalFlowPCAFlow.cs" />
  1191. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\optflow\PCAPrior.cs" />
  1192. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\phase_unwrapping\HistogramPhaseUnwrapping.cs" />
  1193. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\phase_unwrapping\Phase_unwrapping.cs" />
  1194. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\phase_unwrapping\PhaseUnwrapping.cs" />
  1195. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\plot\Plot.cs" />
  1196. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\plot\Plot2d.cs" />
  1197. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\reg\Map.cs" />
  1198. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\reg\MapAffine.cs" />
  1199. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\reg\Mapper.cs" />
  1200. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\reg\MapperGradAffine.cs" />
  1201. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\reg\MapperGradEuclid.cs" />
  1202. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\reg\MapperGradProj.cs" />
  1203. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\reg\MapperGradShift.cs" />
  1204. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\reg\MapperGradSimilar.cs" />
  1205. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\reg\MapperPyramid.cs" />
  1206. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\reg\MapProjec.cs" />
  1207. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\reg\MapShift.cs" />
  1208. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\reg\MapTypeCaster.cs" />
  1209. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\reg\Reg.cs" />
  1210. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\saliency\MotionSaliency.cs" />
  1211. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\saliency\MotionSaliencyBinWangApr2014.cs" />
  1212. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\saliency\Objectness.cs" />
  1213. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\saliency\ObjectnessBING.cs" />
  1214. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\saliency\Saliency.cs" />
  1215. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\saliency\StaticSaliency.cs" />
  1216. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\saliency\StaticSaliencyFineGrained.cs" />
  1217. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\saliency\StaticSaliencySpectralResidual.cs" />
  1218. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\shape\AffineTransformer.cs" />
  1219. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\shape\ChiHistogramCostExtractor.cs" />
  1220. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\shape\EMDHistogramCostExtractor.cs" />
  1221. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\shape\EMDL1HistogramCostExtractor.cs" />
  1222. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\shape\HausdorffDistanceExtractor.cs" />
  1223. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\shape\HistogramCostExtractor.cs" />
  1224. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\shape\NormHistogramCostExtractor.cs" />
  1225. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\shape\Shape.cs" />
  1226. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\shape\ShapeContextDistanceExtractor.cs" />
  1227. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\shape\ShapeDistanceExtractor.cs" />
  1228. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\shape\ShapeTransformer.cs" />
  1229. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\shape\ThinPlateSplineShapeTransformer.cs" />
  1230. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\structured_light\GrayCodePattern.cs" />
  1231. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\structured_light\SinusoidalPattern.cs" />
  1232. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\structured_light\Structured_light.cs" />
  1233. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\structured_light\StructuredLightPattern.cs" />
  1234. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\text\BaseOCR.cs" />
  1235. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\text\Callback.cs" />
  1236. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\text\ClassifierCallback.cs" />
  1237. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\text\ERFilter.cs" />
  1238. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\text\OCRBeamSearchDecoder.cs" />
  1239. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\text\OCRHMMDecoder.cs" />
  1240. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\text\Text.cs" />
  1241. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\text\TextDetector.cs" />
  1242. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\text\TextDetectorCNN.cs" />
  1243. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\tracking\MultiTracker.cs" />
  1244. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\tracking\Tracker.cs" />
  1245. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\tracking\TrackerBoosting.cs" />
  1246. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\tracking\TrackerCSRT.cs" />
  1247. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\tracking\TrackerKCF.cs" />
  1248. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\tracking\TrackerMedianFlow.cs" />
  1249. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\tracking\TrackerMIL.cs" />
  1250. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\tracking\TrackerMOSSE.cs" />
  1251. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\tracking\TrackerTLD.cs" />
  1252. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\tracking\Tracking.cs" />
  1253. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\xfeatures2d\BoostDesc.cs" />
  1254. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\xfeatures2d\BriefDescriptorExtractor.cs" />
  1255. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\xfeatures2d\DAISY.cs" />
  1256. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\xfeatures2d\FREAK.cs" />
  1257. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\xfeatures2d\HarrisLaplaceFeatureDetector.cs" />
  1258. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\xfeatures2d\LATCH.cs" />
  1259. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\xfeatures2d\LUCID.cs" />
  1260. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\xfeatures2d\MSDDetector.cs" />
  1261. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\xfeatures2d\PCTSignatures.cs" />
  1262. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\xfeatures2d\PCTSignaturesSQFD.cs" />
  1263. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\xfeatures2d\StarDetector.cs" />
  1264. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\xfeatures2d\VGG.cs" />
  1265. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\xfeatures2d\Xfeatures2d.cs" />
  1266. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\AdaptiveManifoldFilter.cs" />
  1267. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\ContourFitting.cs" />
  1268. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\DisparityFilter.cs" />
  1269. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\DisparityWLSFilter.cs" />
  1270. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\DTFilter.cs" />
  1271. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\EdgeAwareInterpolator.cs" />
  1272. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\EdgeBoxes.cs" />
  1273. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\FastBilateralSolverFilter.cs" />
  1274. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\FastGlobalSmootherFilter.cs" />
  1275. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\FastLineDetector.cs" />
  1276. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\GraphSegmentation.cs" />
  1277. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\GuidedFilter.cs" />
  1278. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\RFFeatureGetter.cs" />
  1279. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\RidgeDetectionFilter.cs" />
  1280. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\SelectiveSearchSegmentation.cs" />
  1281. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\SelectiveSearchSegmentationStrategy.cs" />
  1282. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\SelectiveSearchSegmentationStrategyColor.cs" />
  1283. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\SelectiveSearchSegmentationStrategyFill.cs" />
  1284. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\SelectiveSearchSegmentationStrategyMultiple.cs" />
  1285. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\SelectiveSearchSegmentationStrategySize.cs" />
  1286. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\SelectiveSearchSegmentationStrategyTexture.cs" />
  1287. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\SparseMatchInterpolator.cs" />
  1288. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\StructuredEdgeDetection.cs" />
  1289. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\SuperpixelLSC.cs" />
  1290. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\SuperpixelSEEDS.cs" />
  1291. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\SuperpixelSLIC.cs" />
  1292. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\ximgproc\Ximgproc.cs" />
  1293. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\xphoto\GrayworldWB.cs" />
  1294. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\xphoto\LearningBasedWB.cs" />
  1295. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\xphoto\SimpleWB.cs" />
  1296. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\xphoto\WhiteBalancer.cs" />
  1297. <Compile Include="Assets\OpenCVForUnity\org\opencv_contrib\xphoto\Xphoto.cs" />
  1298. <Compile Include="Assets\Prefabs\yingyongzhanshi\P1_P5\chajian\PortalFX_Turbulence.cs" />
  1299. <Compile Include="Assets\Prefabs\yingyongzhanshi\Script\BackVillage.cs" />
  1300. <Compile Include="Assets\Prefabs\yingyongzhanshi\UnityChan\Scripts\SpringBone.cs" />
  1301. <Compile Include="Assets\Prefabs\yingyongzhanshi\UnityChan\Scripts\SpringCollider.cs" />
  1302. <Compile Include="Assets\Prefabs\yingyongzhanshi\UnityChan\Scripts\SpringManager.cs" />
  1303. <Compile Include="Assets\Prefabs\yingyongzhanshi\UnityChan\UniteInTheSky\Scripts\LipSyncController.cs" />
  1304. <Compile Include="Assets\Prefabs\yingyongzhanshi\UnityChan\UnityChanStage\Director\PropActivator.cs" />
  1305. <Compile Include="Assets\Prefabs\yingyongzhanshi\UnityChan\UnityChanStage\Effects\Back Screen\ForceAspectRatio.cs" />
  1306. <Compile Include="Assets\rlt\heatControl.cs" />
  1307. <Compile Include="Assets\rlt\HeatMapRead.cs" />
  1308. <Compile Include="Assets\rlt\SphereMesh.cs" />
  1309. <Compile Include="Assets\Script\3DMiniMap\MapCircularSignManager.cs" />
  1310. <Compile Include="Assets\Script\3DMiniMap\MiniMapFit.cs" />
  1311. <Compile Include="Assets\Script\3DMiniMap\ModelMinMap.cs" />
  1312. <Compile Include="Assets\Script\3DMiniMap\ModelMinMapArrow.cs" />
  1313. <Compile Include="Assets\Script\AdminEndShowObj.cs" />
  1314. <Compile Include="Assets\Script\AnnularMap.cs" />
  1315. <Compile Include="Assets\Script\CeShi\CeShi1.cs" />
  1316. <Compile Include="Assets\Script\CeShi\EllipticalOrbit.cs" />
  1317. <Compile Include="Assets\Script\CeShi\MotionOfAnObject.cs" />
  1318. <Compile Include="Assets\Script\CeShi\PlaneManager.cs" />
  1319. <Compile Include="Assets\Script\CeShi\PlayerMove.cs" />
  1320. <Compile Include="Assets\Script\CeShi\Test.cs" />
  1321. <Compile Include="Assets\Script\CeShi\TestAngle.cs" />
  1322. <Compile Include="Assets\Script\CeShi\TestCompass.cs" />
  1323. <Compile Include="Assets\Script\CeShi\TestDelayText.cs" />
  1324. <Compile Include="Assets\Script\CeShi\TestGetVoice.cs" />
  1325. <Compile Include="Assets\Script\CeShi\TestGness.cs" />
  1326. <Compile Include="Assets\Script\CeShi\TestLine.cs" />
  1327. <Compile Include="Assets\Script\CeShi\TestMove.cs" />
  1328. <Compile Include="Assets\Script\CeShi\TestPos.cs" />
  1329. <Compile Include="Assets\Script\CeShi\TestShowLine.cs" />
  1330. <Compile Include="Assets\Script\CeShi\TestVoice.cs" />
  1331. <Compile Include="Assets\Script\CeShi\Tuoyuan.cs" />
  1332. <Compile Include="Assets\Script\CeShi\UnityCallAndroid_Voice.cs" />
  1333. <Compile Include="Assets\Script\CeShi\WorldPosToUIPos.cs" />
  1334. <Compile Include="Assets\Script\CloseDebug.cs" />
  1335. <Compile Include="Assets\Script\CompassPors.cs" />
  1336. <Compile Include="Assets\Script\EnemyMessagerPanelManager.cs" />
  1337. <Compile Include="Assets\Script\FindGameObj.cs" />
  1338. <Compile Include="Assets\Script\followCamera.cs" />
  1339. <Compile Include="Assets\Script\GameManager.cs" />
  1340. <Compile Include="Assets\Script\Json\Data_PlayerAttributes.cs" />
  1341. <Compile Include="Assets\Script\Json\Data_PlayerAttributesOne.cs" />
  1342. <Compile Include="Assets\Script\LodingPanelManager.cs" />
  1343. <Compile Include="Assets\Script\LookAtPlayer.cs" />
  1344. <Compile Include="Assets\Script\MakeEnemyManager.cs" />
  1345. <Compile Include="Assets\Script\MakeEneutraPanel\MakeEneutralButton.cs" />
  1346. <Compile Include="Assets\Script\MakeEneutraPanel\MakeEneutralManager.cs" />
  1347. <Compile Include="Assets\Script\MiniMap.cs" />
  1348. <Compile Include="Assets\Script\Navigations\Manage.cs" />
  1349. <Compile Include="Assets\Script\Navigations\Move.cs" />
  1350. <Compile Include="Assets\Script\Navigations\PlaneBtn.cs" />
  1351. <Compile Include="Assets\Script\Navigations\ShowPos.cs" />
  1352. <Compile Include="Assets\Script\OpenWebCamaer.cs" />
  1353. <Compile Include="Assets\Script\PosCommunication.cs" />
  1354. <Compile Include="Assets\Script\RTK\RtkControl.cs" />
  1355. <Compile Include="Assets\Script\RTK\RtkManage.cs" />
  1356. <Compile Include="Assets\Script\RTK\RtkPos.cs" />
  1357. <Compile Include="Assets\Script\RTK\RtkTest.cs" />
  1358. <Compile Include="Assets\Script\RTK\RtkTrigger.cs" />
  1359. <Compile Include="Assets\Script\Scenes5FollowCamera.cs" />
  1360. <Compile Include="Assets\Script\Tcc\AnimaUI.cs" />
  1361. <Compile Include="Assets\Script\Tcc\Arrowattribute.cs" />
  1362. <Compile Include="Assets\Script\Tcc\MaterialFlooreffect.cs" />
  1363. <Compile Include="Assets\Script\ToolScript.cs" />
  1364. <Compile Include="Assets\Script\TTT\LineRenender.cs" />
  1365. <Compile Include="Assets\Script\TTT\PositionChange.cs" />
  1366. <Compile Include="Assets\Script\UnityCallAndroid.cs" />
  1367. <Compile Include="Assets\ShadowSDK\Common\Base\AndroidPlugin\AndroidPluginBase.cs" />
  1368. <Compile Include="Assets\ShadowSDK\Common\Base\Config\Base\ConfigBase.cs" />
  1369. <Compile Include="Assets\ShadowSDK\Common\Base\Config\Implement\CommonConfig.cs" />
  1370. <Compile Include="Assets\ShadowSDK\Common\Base\DeviceInfo\Scripts\DeviceInfo.cs" />
  1371. <Compile Include="Assets\ShadowSDK\Common\Base\Log\DebugMy.cs" />
  1372. <Compile Include="Assets\ShadowSDK\Common\Base\SCLifeCycle\ISCLifeCycle.cs" />
  1373. <Compile Include="Assets\ShadowSDK\Common\Base\SCLifeCycle\SCLifeCycle.cs" />
  1374. <Compile Include="Assets\ShadowSDK\Common\Base\SCLifeCycle\SCLifeCycleMono.cs" />
  1375. <Compile Include="Assets\ShadowSDK\Common\Base\SCModel\ISCModule.cs" />
  1376. <Compile Include="Assets\ShadowSDK\Common\Base\SCModel\SCModule.cs" />
  1377. <Compile Include="Assets\ShadowSDK\Common\Base\SCModel\SCModuleMono.cs" />
  1378. <Compile Include="Assets\ShadowSDK\Common\Base\Singleton\Singleton.cs" />
  1379. <Compile Include="Assets\ShadowSDK\Common\Base\Singleton\SingletonMono.cs" />
  1380. <Compile Include="Assets\ShadowSDK\Common\Base\SmoothnessVector3\SmoothnessVector3.cs" />
  1381. <Compile Include="Assets\ShadowSDK\Common\Base\WebRquest\Base\WebRequestBase.cs" />
  1382. <Compile Include="Assets\ShadowSDK\Common\Base\WebRquest\Base\WebRequestServerBase.cs" />
  1383. <Compile Include="Assets\ShadowSDK\Examples\HandTracking\Scripts\HandInteractionTouchRotate.cs" />
  1384. <Compile Include="Assets\ShadowSDK\Examples\HandTracking\Scripts\PianoColliderKey.cs" />
  1385. <Compile Include="Assets\ShadowSDK\Examples\HandTracking\Scripts\Replacement.cs" />
  1386. <Compile Include="Assets\ShadowSDK\Examples\HandTracking\Scripts\ShowSliderValue.cs" />
  1387. <Compile Include="Assets\ShadowSDK\Examples\HandTracking\Scripts\SliderChangeColor.cs" />
  1388. <Compile Include="Assets\ShadowSDK\Examples\HandTracking\Scripts\VideoControl.cs" />
  1389. <Compile Include="Assets\ShadowSDK\Examples\HandTracking\Scripts\VideoSlider.cs" />
  1390. <Compile Include="Assets\ShadowSDK\Modules\Module_AndroidPermission\Scripts\AndroidPermission.cs" />
  1391. <Compile Include="Assets\ShadowSDK\Modules\Module_AndroidPermission\Scripts\PermissionRequest.cs" />
  1392. <Compile Include="Assets\ShadowSDK\Modules\Module_AudioSpatial\Scripts\VolumeControl.cs" />
  1393. <Compile Include="Assets\ShadowSDK\Modules\Module_AudioSystem\AudioSystem.cs" />
  1394. <Compile Include="Assets\ShadowSDK\Modules\Module_AudioSystem\SCAudiosConfig.cs" />
  1395. <Compile Include="Assets\ShadowSDK\Modules\Module_AutoClick\Scripts\AutoClick.cs" />
  1396. <Compile Include="Assets\ShadowSDK\Modules\Module_Follower\CameraFollower.cs" />
  1397. <Compile Include="Assets\ShadowSDK\Modules\Module_Follower\FollowerBase.cs" />
  1398. <Compile Include="Assets\ShadowSDK\Modules\Module_Follower\SCKeyboardFollower.cs" />
  1399. <Compile Include="Assets\ShadowSDK\Modules\Module_FPS\Scripts\Fps.cs" />
  1400. <Compile Include="Assets\ShadowSDK\Modules\Module_GridCollection\Scripts\Enums\AlignmentsTypes.cs" />
  1401. <Compile Include="Assets\ShadowSDK\Modules\Module_GridCollection\Scripts\Enums\AnchorRelativeBase.cs" />
  1402. <Compile Include="Assets\ShadowSDK\Modules\Module_GridCollection\Scripts\Enums\GroupArrayTypes.cs" />
  1403. <Compile Include="Assets\ShadowSDK\Modules\Module_GridCollection\Scripts\Enums\LayoutTypes.cs" />
  1404. <Compile Include="Assets\ShadowSDK\Modules\Module_GridCollection\Scripts\Enums\ListSortTypes.cs" />
  1405. <Compile Include="Assets\ShadowSDK\Modules\Module_GridCollection\Scripts\Enums\ObjFacingTypes.cs" />
  1406. <Compile Include="Assets\ShadowSDK\Modules\Module_GridCollection\Scripts\GroupObj.cs" />
  1407. <Compile Include="Assets\ShadowSDK\Modules\Module_GridCollection\Scripts\SCBaseLayoutGroup.cs" />
  1408. <Compile Include="Assets\ShadowSDK\Modules\Module_GridCollection\Scripts\SCGridLayoutGroup.cs" />
  1409. <Compile Include="Assets\ShadowSDK\Modules\Module_InputControl\Scripts\ControlTransform.cs" />
  1410. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\Common\BaseNearInteractionTouchable.cs" />
  1411. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\Common\CanvasCollection.cs" />
  1412. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\Common\HoverLight.cs" />
  1413. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\Common\InputDeviceType.cs" />
  1414. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\Common\InputKeyCode.cs" />
  1415. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\Common\Interaction\InteractionEvent.cs" />
  1416. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\Common\Interaction\InteractionPressableEntry.cs" />
  1417. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\Common\Interaction\InteractionPressableType.cs" />
  1418. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\Common\Interaction\InteractionTouchableEntry.cs" />
  1419. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\Common\Interaction\InteractionTouchableType.cs" />
  1420. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\Common\IPointerHandler.cs" />
  1421. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\Common\IPokeHandler.cs" />
  1422. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\Common\NearInteractionTouchable.cs" />
  1423. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\Common\NearInteractionTouchableUnityUI.cs" />
  1424. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\Common\NearInterationGrabbable.cs" />
  1425. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\Common\ProximityLight.cs" />
  1426. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\Common\SCInputModule.cs" />
  1427. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\Common\SCPointEventData.cs" />
  1428. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\Common\InputDevicePartType.cs" />
  1429. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DataBase\InputDataBase.cs" />
  1430. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DataBase\InputKeys\InputKeys.cs" />
  1431. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DataGetBase\DataGetOneBase\InputDataGetKey.cs" />
  1432. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DataGetBase\DataGetOneBase\InputDataGetOneBase.cs" />
  1433. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DataGetBase\InputDataGetBase.cs" />
  1434. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DeviceDetector\DetectorBase.cs" />
  1435. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DeviceDetector\Pointer\Cursor\CursorBase.cs" />
  1436. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DeviceDetector\Pointer\Cursor\CursorPart\CursorBehavoir.cs" />
  1437. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DeviceDetector\Pointer\Cursor\CursorPart\CursorPartBase.cs" />
  1438. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DeviceDetector\Pointer\Cursor\CursorPart\CursorPartType.cs" />
  1439. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DeviceDetector\Pointer\Cursor\CursorPart\DefaultCursorPart\DefaultCursorPart.cs" />
  1440. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DeviceDetector\Pointer\Cursor\DefaultCursor\DefaultCursor.cs" />
  1441. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DeviceDetector\Pointer\Cursor\Gazeloading.cs" />
  1442. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DeviceDetector\Pointer\INearPointer.cs" />
  1443. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DeviceDetector\Pointer\IPointer.cs" />
  1444. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DeviceDetector\Pointer\Line\BezierLine\Bezier.cs" />
  1445. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DeviceDetector\Pointer\Line\BezierLine\BezierDataProvider.cs" />
  1446. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DeviceDetector\Pointer\Line\BezierLine\BezierLine.cs" />
  1447. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DeviceDetector\Pointer\Line\LineBase.cs" />
  1448. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DeviceDetector\Pointer\PointerBase.cs" />
  1449. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DeviceDetector\Pointer\PointerType.cs" />
  1450. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DeviceDetector\Pointer\RayStep.cs" />
  1451. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DevicePartStatus\InputDevicePartStatusBase.cs" />
  1452. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DevicePartUI\InputDevicePartUIBase.cs" />
  1453. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DevicePartUI\Model\ModelBase.cs" />
  1454. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DispatchEvent\DispatherBase\AnyKeyEventDelegate.cs" />
  1455. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DispatchEvent\DispatherBase\DispatcherBase.cs" />
  1456. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DispatchEvent\EventBase\InputDevicePartEventBase.cs" />
  1457. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DispatchEvent\InputDevicePartDispatchEventBase.cs" />
  1458. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\DispatchEvent\KeyEvent\InputDevicePartKeyEvent.cs" />
  1459. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\DevicePartBase\InputDevicePartBase.cs" />
  1460. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\InputDeviceBase.cs" />
  1461. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\UI\InputDeviceUIBase.cs" />
  1462. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBase\UI\InputDeviceUIType.cs" />
  1463. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\BT3Dof\Data\InputDataBT3Dof.cs" />
  1464. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\BT3Dof\DataGet\DataGetOne\DataGetIMU\InputDataGetBT3DofIMU.cs" />
  1465. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\BT3Dof\DataGet\DataGetOne\DataGetKey\BT3DofKeyListener.cs" />
  1466. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\BT3Dof\DataGet\DataGetOne\DataGetKey\InputDataGetBT3DofKey.cs" />
  1467. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\BT3Dof\DataGet\DataGetOne\DataGetPosture\InputDataGetBT3DofPosture.cs" />
  1468. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\BT3Dof\DataGet\DataGetOne\DataGetTouch\InputDataGetBT3DofTouch.cs" />
  1469. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\BT3Dof\DataGet\InputDataGetBT3Dof.cs" />
  1470. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\BT3Dof\DeviceDetector\BT3DofDetector.cs" />
  1471. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\BT3Dof\DeviceDetector\BT3DofPointer\BT3DofPointer.cs" />
  1472. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\BT3Dof\DevicePartStatus\InputDeviceBT3DofPartStatus.cs" />
  1473. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\BT3Dof\DevicePartUI\InputDeviceBT3DofPartUI.cs" />
  1474. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\BT3Dof\DevicePartUI\Model\ModelBT3DofBase.cs" />
  1475. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\BT3Dof\DevicePartUI\Model\ModelK02.cs" />
  1476. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\BT3Dof\DevicePartUI\Model\ModelK07.cs" />
  1477. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\BT3Dof\DispatchEvent\InputDevicePartDispatchEventBT3Dof.cs" />
  1478. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\BT3Dof\InputDeviceBT3DofPart.cs" />
  1479. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\Common\AndroidPluginBT3Dof.cs" />
  1480. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\Common\BT3DofConnectListener.cs" />
  1481. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\Common\BT3DofKeyCode.cs" />
  1482. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\Common\BT3DofKeyState.cs" />
  1483. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\Common\ConnectState.cs" />
  1484. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\InputDeviceBT3Dof.cs" />
  1485. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\Common\GCIndex.cs" />
  1486. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\Common\GCType.cs" />
  1487. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\GC\Data\InputDataGC.cs" />
  1488. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\GC\DataGet\DataGetOne\DataGetIMU\InputDataGetGCIMU.cs" />
  1489. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\GC\DataGet\DataGetOne\DataGetKey\InputDataGetGCKey.cs" />
  1490. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\GC\DataGet\DataGetOne\DataGetPosture\InputDataGetGCPosture.cs" />
  1491. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\GC\DataGet\DataGetOne\DataGetTouch\InputDataGetGCTouch.cs" />
  1492. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\GC\DataGet\InputDataGetGC.cs" />
  1493. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\GC\DeviceDetector\GCDetector.cs" />
  1494. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\GC\DeviceDetector\GCPointer\GCPointer.cs" />
  1495. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\GC\DevicePartStatus\InputDeviceGCPartStatus.cs" />
  1496. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\GC\DevicePartUI\InputDeviceGCPartUI.cs" />
  1497. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\GC\DevicePartUI\Model\ModelGCBase.cs" />
  1498. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\GC\DevicePartUI\ResetAnimation\ResetLoading.cs" />
  1499. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\GC\DispatchEvent\Common\EventDelegate.cs" />
  1500. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\GC\DispatchEvent\Common\GCEventType.cs" />
  1501. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\GC\DispatchEvent\Common\InputDeviceGCPartEventBase.cs" />
  1502. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\GC\DispatchEvent\EventTouchSliderLeftRight\InputDeviceGCPartEventSliderLeftRight.cs" />
  1503. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\GC\DispatchEvent\EventTouchSliderUpDown\InputDeviceGCPartEventSliderUpDown.cs" />
  1504. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\GC\DispatchEvent\EventTouchTP\InputDeviceGCPartEventTouchTP.cs" />
  1505. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\GC\DispatchEvent\InputDevicePartDispatchEventGC.cs" />
  1506. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\GC\InputDeviceGCPart.cs" />
  1507. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGC\InputDeviceGC.cs" />
  1508. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGGT26Dof\GGT26Dof\Data\GGT26DofHandInfo.cs" />
  1509. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGGT26Dof\GGT26Dof\Data\InputDataGGT26Dof.cs" />
  1510. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGGT26Dof\GGT26Dof\DataGet\DataGetHandData\InputDataGGT26DofGetHandsData.cs" />
  1511. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGGT26Dof\GGT26Dof\DataGet\DataGetPosture\handStruct\HandJoints.cs" />
  1512. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGGT26Dof\GGT26Dof\DataGet\DataGetPosture\handStruct\HandUtils.cs" />
  1513. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGGT26Dof\GGT26Dof\DataGet\DataGetPosture\handStruct\ivHand.cs" />
  1514. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGGT26Dof\GGT26Dof\DataGet\DataGetPosture\handStruct\ivHand_backup.cs" />
  1515. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGGT26Dof\GGT26Dof\DataGet\DataGetPosture\handStruct\IvJointPos.cs" />
  1516. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGGT26Dof\GGT26Dof\DataGet\DataGetPosture\InputDataGetGGT26DofPosture.cs" />
  1517. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGGT26Dof\GGT26Dof\DataGet\InputDataGetGGT26Dof.cs" />
  1518. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGGT26Dof\GGT26Dof\DevicePartStatus\InputDeviceGGT26DofPartStatus.cs" />
  1519. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGGT26Dof\GGT26Dof\DevicePartUI\InputDeviceGGT26DofPartUI.cs" />
  1520. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGGT26Dof\GGT26Dof\DevicePartUI\Model\ModelGGT26Dof.cs" />
  1521. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGGT26Dof\GGT26Dof\InputDeviceGGT26DofPart.cs" />
  1522. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGGT26Dof\InputDeviceGGT26Dof.cs" />
  1523. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceGGT26Dof\UI\HandLowPower.cs" />
  1524. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\Common\FINGER.cs" />
  1525. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\Common\HandIndex.cs" />
  1526. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\Common\HandModelType.cs" />
  1527. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\Common\HandUIType.cs" />
  1528. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\Common\IHandUIType.cs" />
  1529. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\Common\JOINT.cs" />
  1530. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\Data\fingerInfo.cs" />
  1531. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\Data\handInfo.cs" />
  1532. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\Data\InputDataHand.cs" />
  1533. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\Data\jointInfo.cs" />
  1534. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DataGet\DataGetHandData\InputDataGetHandData.cs" />
  1535. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DataGet\DataGetKey\InputDataGetHandKey.cs" />
  1536. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DataGet\DataGetPosture\handStruct\HandJoints.cs" />
  1537. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DataGet\DataGetPosture\handStruct\HandUtils.cs" />
  1538. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DataGet\DataGetPosture\handStruct\ivHand.cs" />
  1539. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DataGet\DataGetPosture\handStruct\ivHand_backup.cs" />
  1540. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DataGet\DataGetPosture\handStruct\IvJointPos.cs" />
  1541. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DataGet\DataGetPosture\InputDataGetHandPosture.cs" />
  1542. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DataGet\InputDataGetHand.cs" />
  1543. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DevicePartStatus\InputDeviceHandPartStatus.cs" />
  1544. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DevicePartUI\InputDeviceHandPartUI.cs" />
  1545. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DevicePartUI\Model\HandMenu.cs" />
  1546. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DevicePartUI\Model\HandModel\AbstractHandModel.cs" />
  1547. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DevicePartUI\Model\HandModel\CubeHandModel.cs" />
  1548. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DevicePartUI\Model\HandModel\EffectHandModel.cs" />
  1549. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DevicePartUI\Model\HandModel\IHandModel.cs" />
  1550. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DevicePartUI\Model\ModelHand.cs" />
  1551. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DevicePointer\FarPointer\FarCursor\FarCursor.cs" />
  1552. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DevicePointer\FarPointer\FarPointer.cs" />
  1553. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DevicePointer\GrabPointer\GrabCursor\GrabCursor.cs" />
  1554. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DevicePointer\GrabPointer\GrabPointer.cs" />
  1555. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DevicePointer\HandDetector.cs" />
  1556. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DevicePointer\TouchPointer\TouchCursor\TouchCursor.cs" />
  1557. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DevicePointer\TouchPointer\TouchPointer.cs" />
  1558. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DispatchEvent\Dispather\GGT26DofEventDelegate.cs" />
  1559. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DispatchEvent\Dispather\HandDispatcher.cs" />
  1560. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DispatchEvent\Dispather\IHandCatchDownHandler.cs" />
  1561. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DispatchEvent\Dispather\IHandCatchDragHandler.cs" />
  1562. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DispatchEvent\Dispather\IHandCatchUpHandler.cs" />
  1563. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DispatchEvent\EventBase\HandEventType.cs" />
  1564. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DispatchEvent\EventBase\InputDeviceHandPartEventBase.cs" />
  1565. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DispatchEvent\EventCatch\InputDeviceHandPartCatchEvent.cs" />
  1566. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DispatchEvent\EventLeftRight\InputDeviceHandPartLeftRightEvent.cs" />
  1567. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DispatchEvent\EventTurnLeftAndRight\InputDeviceHandPartTurnLeftRightEvent.cs" />
  1568. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\DispatchEvent\InputDevicePartDispatchEventHand.cs" />
  1569. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\HandPart\InputDeviceHandPart.cs" />
  1570. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\InputDeviceHand.cs" />
  1571. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHand\UI\InputDeviceHandUI.cs" />
  1572. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHead\Head\Data\InputDataHead.cs" />
  1573. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHead\Head\DataGet\DataGetOne\InputDataGetPosture.cs" />
  1574. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHead\Head\DataGet\InputDataGetHead.cs" />
  1575. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHead\Head\DevicePartStatus\InputDeviceHeadPartStatus.cs" />
  1576. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHead\Head\DispatchEvent\InputDevicePartDispatchEventHead.cs" />
  1577. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHead\Head\HeadDetector\HeadDetector.cs" />
  1578. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHead\Head\HeadDetector\HeadPointer\HeadPointer.cs" />
  1579. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHead\Head\InputDeviceHeadPart.cs" />
  1580. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceHead\InputDeviceHead.cs" />
  1581. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\Common\AndroidPluginKS.cs" />
  1582. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\Common\KSIndex.cs" />
  1583. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\Common\KSKeyCode.cs" />
  1584. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\Common\KSKeyState.cs" />
  1585. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\Common\KSTypeFlag.cs" />
  1586. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\InputDeviceKS.cs" />
  1587. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\KS\Data\InputDataKS.cs" />
  1588. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\KS\DataGet\DataGetOne\DataGetHall\InputDataGetKSHall.cs" />
  1589. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\KS\DataGet\DataGetOne\DataGetIMU\InputDataGetKSIMU.cs" />
  1590. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\KS\DataGet\DataGetOne\DataGetJoystick\InputDataGetKSJoystick.cs" />
  1591. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\KS\DataGet\DataGetOne\DataGetKey\GetK101Key.cs" />
  1592. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\KS\DataGet\DataGetOne\DataGetKey\GetK11Key.cs" />
  1593. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\KS\DataGet\DataGetOne\DataGetKey\InputDataGetKSKey.cs" />
  1594. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\KS\DataGet\DataGetOne\DataGetPosture\InputDataGetKSPosture.cs" />
  1595. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\KS\DataGet\InputDataGetKS.cs" />
  1596. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\KS\DeviceDetector\KSDetector.cs" />
  1597. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\KS\DeviceDetector\Pointer\KSPointer.cs" />
  1598. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\KS\DevicePartStatus\InputDeviceKSPartStatus.cs" />
  1599. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\KS\DevicePartUI\InputDeviceKSPartUI.cs" />
  1600. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\KS\DevicePartUI\Model\ModelK101.cs" />
  1601. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\KS\DevicePartUI\Model\ModelK11.cs" />
  1602. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\KS\DispatchEvent\InputDevicePartDispatchEventKS.cs" />
  1603. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceKS\KS\InputDeviceKSPart.cs" />
  1604. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\Module_InputSystem.cs" />
  1605. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\Scripts\API\API_Module_InputSystem.cs" />
  1606. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\Scripts\API\API_Module_InputSystem_BT3Dof.cs" />
  1607. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\Scripts\API\API_Module_InputSystem_GGT26Dof.cs" />
  1608. <Compile Include="Assets\ShadowSDK\Modules\Module_InputSystem\Scripts\API\API_Module_InputSystem_Head.cs" />
  1609. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\BoundingBox\Scripts\AssetPreAssignAttribute.cs" />
  1610. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\BoundingBox\Scripts\BoundingBox.cs" />
  1611. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\BoundingBox\Scripts\BoundingBoxRoot\BoundingBoxRoot\Base\AbstractBoundingBoxRoot.cs" />
  1612. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\BoundingBox\Scripts\BoundingBoxRoot\BoundingBoxRoot\Base\IBoundingBoxRoot.cs" />
  1613. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\BoundingBox\Scripts\BoundingBoxRoot\BoundingBoxRoot\BoundingBoxRoot.cs" />
  1614. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\BoundingBox\Scripts\BoundingBoxRoot\BoundingBoxRoot\CornerBoundingBoxRoot.cs" />
  1615. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\BoundingBox\Scripts\BoundingBoxRoot\BoundingBoxRoot\FaceBoundingBoxRoot.cs" />
  1616. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\BoundingBox\Scripts\BoundingBoxRoot\BoundingBoxRoot\SideBoundingBoxRoot.cs" />
  1617. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\BoundingBox\Scripts\BoundingBoxRoot\BoundingBoxUtils.cs" />
  1618. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\Button\Scripts\PressableButton.cs" />
  1619. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\Button\Scripts\TouchableButton.cs" />
  1620. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\HandTouch\Scripts\PokeHandler.cs" />
  1621. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\ManipulationHandler\Scripts\DevicePartCountManipulation\AbstractDevicePartCountManipulation.cs" />
  1622. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\ManipulationHandler\Scripts\DevicePartCountManipulation\IDevicePartCountManipulation.cs" />
  1623. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\ManipulationHandler\Scripts\DevicePartCountManipulation\OneDevicePartCountManipulation.cs" />
  1624. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\ManipulationHandler\Scripts\DevicePartCountManipulation\TwoDevicePartCountManipulation.cs" />
  1625. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\ManipulationHandler\Scripts\DevicePartManipulation\AbstractDevicePartManipulation.cs" />
  1626. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\ManipulationHandler\Scripts\DevicePartManipulation\BT3DofDevicePartManipulation.cs" />
  1627. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\ManipulationHandler\Scripts\DevicePartManipulation\HandDevicePartManipulation.cs" />
  1628. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\ManipulationHandler\Scripts\DevicePartManipulation\HeadDevicePartManipulation.cs" />
  1629. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\ManipulationHandler\Scripts\DevicePartManipulation\IDevicePartManipulation.cs" />
  1630. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\ManipulationHandler\Scripts\ManipulationHandler.cs" />
  1631. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\ManipulationHandler\Scripts\MoveLogic.cs" />
  1632. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\ManipulationHandler\Scripts\RotateLogic.cs" />
  1633. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\ManipulationHandler\Scripts\ScaleLogic.cs" />
  1634. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\PointerHandler\Scripts\PointerHandler.cs" />
  1635. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCImage3D\Scripts\SCImage3D.cs" />
  1636. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Archived\OldGUIExamplesCS.cs" />
  1637. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Archived\TestingPunch.cs" />
  1638. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Archived\TestingRigidbodyCS.cs" />
  1639. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\Following.cs" />
  1640. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\GeneralAdvancedTechniques.cs" />
  1641. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\GeneralBasic.cs" />
  1642. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\GeneralBasics2d.cs" />
  1643. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\GeneralCameraShake.cs" />
  1644. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\GeneralEasingTypes.cs" />
  1645. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\GeneralEventsListeners.cs" />
  1646. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\GeneralSequencer.cs" />
  1647. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\GeneralSimpleUI.cs" />
  1648. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\GeneralUISpace.cs" />
  1649. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\LogoCinematic.cs" />
  1650. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\PathBezier.cs" />
  1651. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\PathBezier2d.cs" />
  1652. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\PathSpline.cs" />
  1653. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\PathSpline2d.cs" />
  1654. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\PathSplineEndless.cs" />
  1655. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\PathSplinePerformance.cs" />
  1656. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\PathSplines.cs" />
  1657. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\PathSplineTrack.cs" />
  1658. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\TestingUnitTests.cs" />
  1659. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\TestingZLegacy.cs" />
  1660. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Scripts\TestingZLegacyExt.cs" />
  1661. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Framework\LeanAudio.cs" />
  1662. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Framework\LeanSmooth.cs" />
  1663. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Framework\LeanTest.cs" />
  1664. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Framework\LeanTween.cs" />
  1665. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Framework\LeanTweenExt.cs" />
  1666. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Framework\LTDescr.cs" />
  1667. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Framework\LTDescrOptional.cs" />
  1668. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Framework\LTSeq.cs" />
  1669. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Mono\ChineseWordBtn.cs" />
  1670. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Mono\Game3DButton.cs" />
  1671. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Mono\Game3DInputField.cs" />
  1672. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Mono\GameKey3Dboard.cs" />
  1673. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Mono\KeyboardKeydownBtn.cs" />
  1674. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Mono\KeyboardPrompt.cs" />
  1675. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Mono\PointEffectBase.cs" />
  1676. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Mono\PromptItem.cs" />
  1677. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Mono\PromptTurnBtn.cs" />
  1678. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Mono\SCButton.cs" />
  1679. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Mono\SCKeyboard2DMono.cs" />
  1680. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Mono\SCKeyboard3DMono.cs" />
  1681. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Mono\SCKeyboardKey.cs" />
  1682. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Mono\SCKeyboardMono.cs" />
  1683. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Mono\SCKeyboardSpecialKey.cs" />
  1684. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Mono\SCPinyinKeyboardKey.cs" />
  1685. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Scripts\ChineseIMEManager.cs" />
  1686. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Scripts\KeyboardUtils.cs" />
  1687. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Scripts\SCKeyboard2D.cs" />
  1688. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Scripts\SCKeyboard3D.cs" />
  1689. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Scripts\SCKeyboardBase.cs" />
  1690. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Scripts\SCKeyboardEnum.cs" />
  1691. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Tween\AlphaTween.cs" />
  1692. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Tween\CanvasAlphaTween.cs" />
  1693. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Tween\ColorTween.cs" />
  1694. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Tween\MoveTween.cs" />
  1695. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Tween\RotateTween.cs" />
  1696. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Tween\TweenBase.cs" />
  1697. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\Tween\TweenController.cs" />
  1698. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Scripts\SCInputField.cs" />
  1699. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCSetPropertyUtility.cs" />
  1700. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCSlider3D\Scripts\SCSlider3D.cs" />
  1701. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCSlider3D\Scripts\SCSlider3DSounds.cs" />
  1702. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCSlider3D\Scripts\SCTransformUtility.cs" />
  1703. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCToggle3D\Scripts\SCToggle3DSounds.cs" />
  1704. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCToggle3D\Scripts\SCToggleBase.cs" />
  1705. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCToggle3D\Scripts\SCToggleCheckbox3D.cs" />
  1706. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCToggle3D\Scripts\SCToggleGroup3D.cs" />
  1707. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCToggle3D\Scripts\SCToggleSwitch3D.cs" />
  1708. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCUI3DGlobalConstant.cs" />
  1709. <Compile Include="Assets\ShadowSDK\Modules\Module_Interaction\SCUIBase\SCUI3D.cs" />
  1710. <Compile Include="Assets\ShadowSDK\Modules\Module_ShadowSystem\DeviceParam\DeviceParam.cs" />
  1711. <Compile Include="Assets\ShadowSDK\Modules\Module_ShadowSystem\Scripts\Module_ShadowSystem.cs" />
  1712. <Compile Include="Assets\ShadowSDK\Modules\Module_ShadowSystem\SlamSettings\SlamSettings.cs" />
  1713. <Compile Include="Assets\ShadowSDK\Modules\Module_SVR\Scripts\API\API_SVR.cs" />
  1714. <Compile Include="Assets\ShadowSDK\Modules\Module_SVR\Scripts\SvrConfigOptions.cs" />
  1715. <Compile Include="Assets\ShadowSDK\Modules\Module_SVR\Scripts\SvrConfigSettings.cs" />
  1716. <Compile Include="Assets\ShadowSDK\Modules\Module_SVR\Scripts\SvrController.cs" />
  1717. <Compile Include="Assets\ShadowSDK\Modules\Module_SVR\Scripts\SvrControllerState.cs" />
  1718. <Compile Include="Assets\ShadowSDK\Modules\Module_SVR\Scripts\SvrDebugHud.cs" />
  1719. <Compile Include="Assets\ShadowSDK\Modules\Module_SVR\Scripts\SvrDebugOverrideSettings.cs" />
  1720. <Compile Include="Assets\ShadowSDK\Modules\Module_SVR\Scripts\SvrDebugThermalEvents.cs" />
  1721. <Compile Include="Assets\ShadowSDK\Modules\Module_SVR\Scripts\SvrEye.cs" />
  1722. <Compile Include="Assets\ShadowSDK\Modules\Module_SVR\Scripts\SvrInput.cs" />
  1723. <Compile Include="Assets\ShadowSDK\Modules\Module_SVR\Scripts\SvrManager.cs" />
  1724. <Compile Include="Assets\ShadowSDK\Modules\Module_SVR\Scripts\SvrOverlay.cs" />
  1725. <Compile Include="Assets\ShadowSDK\Modules\Module_SVR\Scripts\SvrOverrideSettings.cs" />
  1726. <Compile Include="Assets\ShadowSDK\Modules\Module_SVR\Scripts\SvrPlugin.cs" />
  1727. <Compile Include="Assets\ShadowSDK\Modules\Module_SVR\Scripts\SvrPluginAndroid.cs" />
  1728. <Compile Include="Assets\ShadowSDK\Modules\Module_SVR\Scripts\SvrPluginWin.cs" />
  1729. <Compile Include="Assets\ShadowSDK\Modules\Module_Vuforia\Scripts\VuforiaLocation.cs" />
  1730. <Compile Include="Assets\TestData.cs" />
  1731. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\Benchmark01.cs" />
  1732. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\Benchmark01_UGUI.cs" />
  1733. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\Benchmark02.cs" />
  1734. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\Benchmark03.cs" />
  1735. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\Benchmark04.cs" />
  1736. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\CameraController.cs" />
  1737. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\ChatController.cs" />
  1738. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\EnvMapAnimator.cs" />
  1739. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\ObjectSpin.cs" />
  1740. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\ShaderPropAnimator.cs" />
  1741. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\SimpleScript.cs" />
  1742. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\SkewTextExample.cs" />
  1743. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\TeleType.cs" />
  1744. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\TextConsoleSimulator.cs" />
  1745. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\TextMeshProFloatingText.cs" />
  1746. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\TextMeshSpawner.cs" />
  1747. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\TMP_DigitValidator.cs" />
  1748. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\TMP_ExampleScript_01.cs" />
  1749. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\TMP_FrameRateCounter.cs" />
  1750. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\TMP_PhoneNumberValidator.cs" />
  1751. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\TMP_TextEventCheck.cs" />
  1752. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\TMP_TextEventHandler.cs" />
  1753. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\TMP_TextInfoDebugTool.cs" />
  1754. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\TMP_TextSelector_A.cs" />
  1755. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\TMP_TextSelector_B.cs" />
  1756. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\TMP_UiFrameRateCounter.cs" />
  1757. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\TMPro_InstructionOverlay.cs" />
  1758. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\VertexColorCycler.cs" />
  1759. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\VertexJitter.cs" />
  1760. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\VertexShakeA.cs" />
  1761. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\VertexShakeB.cs" />
  1762. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\VertexZoom.cs" />
  1763. <Compile Include="Assets\TextMesh Pro\Examples &amp; Extras\Scripts\WarpTextExample.cs" />
  1764. <Compile Include="Assets\VacuumShaders\Terrain To Mesh\Example Scenes\Scripts\Runtime_OBJExporter.cs" />
  1765. <Compile Include="Assets\VacuumShaders\Terrain To Mesh\Example Scenes\Scripts\RunTime_Terrain_Convertion.cs" />
  1766. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Arrow.cs" />
  1767. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\AutoDisable.cs" />
  1768. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\DisableOnAwake.cs" />
  1769. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\FPSView.cs" />
  1770. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\LookAt.cs" />
  1771. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\MapSetter.cs" />
  1772. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\MovieOfFrames.cs" />
  1773. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\MusicPlayer.cs" />
  1774. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\NewBehaviourScript.cs" />
  1775. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\ShowFpsOnGUI.cs" />
  1776. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\TestFly.cs" />
  1777. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\ToggleTextColor.cs" />
  1778. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\TogglEvent.cs" />
  1779. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\PlayTween.cs" />
  1780. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\TweenAlpha.cs" />
  1781. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\TweenAlphaCanvasGroup.cs" />
  1782. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\TweenAlphaRenderer.cs" />
  1783. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\TweenAlphaSpriteRenderer.cs" />
  1784. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\TweenAnchoredPosition.cs" />
  1785. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\TweenAnchorMax.cs" />
  1786. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\TweenAnchorMin.cs" />
  1787. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\TweenAnimator.cs" />
  1788. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\TweenColor.cs" />
  1789. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\Tweener.cs" />
  1790. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\TweenEulerAngles.cs" />
  1791. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\TweenFillAmount.cs" />
  1792. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\TweenFOV.cs" />
  1793. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\TweenOffset.cs" />
  1794. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\TweenOrthoSize.cs" />
  1795. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\TweenPath.cs" />
  1796. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\TweenPivot.cs" />
  1797. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\TweenPosition.cs" />
  1798. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\TweenRotation.cs" />
  1799. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\TweenScale.cs" />
  1800. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\Tween\TweenSize.cs" />
  1801. <Compile Include="Assets\XDKUnityCloudExamples\Common\Scripts\VideoPlayerPlane.cs" />
  1802. <Compile Include="Assets\XDKUnityPluginCloud\Runtime\Scripts\CloudDemoController.cs" />
  1803. <Compile Include="Assets\XDKUnityPluginCloud\Runtime\Scripts\Loom.cs" />
  1804. <Compile Include="Assets\XDKUnityPluginCloud\Runtime\Scripts\MatrixUtility.cs" />
  1805. <Compile Include="Assets\XDKUnityPluginCloud\Runtime\Scripts\XDKCloudInterface.cs" />
  1806. <Compile Include="Assets\XDKUnityPluginCloud\Runtime\Scripts\XDKCloudSession.cs" />
  1807. <Compile Include="Assets\XDKUnityPluginCloud\Runtime\Scripts\XDKConfigs.cs" />
  1808. <Compile Include="Assets\XDKUnityPluginCloud\Runtime\Scripts\XDKDefines.cs" />
  1809. <Compile Include="Assets\XDKUnityPluginCloud\Runtime\Scripts\XDKTools.cs" />
  1810. <Compile Include="Assets\军事素材\sence\UI\BackgroundGenerator\BackgroundMeshGenerator.cs" />
  1811. <Compile Include="Assets\军事素材\sence\UI\DragPreviewItem.cs" />
  1812. <Compile Include="Assets\军事素材\sence\UI\Dropdown\Dropdown.cs" />
  1813. <Compile Include="Assets\军事素材\sence\UI\Dropdown\ListPool.cs" />
  1814. <Compile Include="Assets\军事素材\sence\UI\Dropdown\ObjectPool.cs" />
  1815. <Compile Include="Assets\军事素材\sence\UI\ImageFillInterpolator.cs" />
  1816. <Compile Include="Assets\军事素材\sence\UI\ImageToggler.cs" />
  1817. <Compile Include="Assets\军事素材\sence\UI\LoadProgressImages.cs" />
  1818. <Compile Include="Assets\军事素材\sence\UI\Models\NextWindowUI.cs" />
  1819. <Compile Include="Assets\军事素材\sence\UI\Models\PrevWindowUI.cs" />
  1820. <Compile Include="Assets\军事素材\sence\UI\OnSelectTriggerButtonUse.cs" />
  1821. <Compile Include="Assets\军事素材\sence\UI\PingPong.cs" />
  1822. <Compile Include="Assets\军事素材\sence\UI\PrimitiveShape.cs" />
  1823. <Compile Include="Assets\军事素材\sence\UI\PrimitiveShapeRadar.cs" />
  1824. <Compile Include="Assets\军事素材\sence\UI\Rotate.cs" />
  1825. <Compile Include="Assets\军事素材\sence\UI\RotatePingPong.cs" />
  1826. <Compile Include="Assets\军事素材\sence\UI\SetDateTime.cs" />
  1827. <Compile Include="Assets\军事素材\sence\UI\SliderInterpolator.cs" />
  1828. <Compile Include="Assets\军事素材\sence\UI\TransformRotationFromMousePosition.cs" />
  1829. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Animators\SFX_AnimationModule.cs" />
  1830. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Animators\SFX_DynamicShaderParameter.cs" />
  1831. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Animators\SFX_LightAnimator.cs" />
  1832. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Animators\SFX_ShaderAnimator.cs" />
  1833. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\AreaProtector\SFX_AreaProtectorController.cs" />
  1834. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Beam\SFX_BeamWeapon.cs" />
  1835. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Cloner\SFX_MotionCloner.cs" />
  1836. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Collisions\SFX_ColliderCollisionDetector.cs" />
  1837. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Collisions\SFX_CollisionPoint.cs" />
  1838. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Collisions\SFX_DistanceCollisionDetector.cs" />
  1839. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Collisions\SFX_ICollisionsProvider.cs" />
  1840. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\ControlledObjects\SFX_ComponentsStartupController.cs" />
  1841. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\ControlledObjects\SFX_ControlledObject.cs" />
  1842. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\EnergyShield\SFX_EnergyShieldController.cs" />
  1843. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Engine\SFX_EngineController.cs" />
  1844. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Fx\SFX_FxObject.cs" />
  1845. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Fx\SFX_FxRotationType.cs" />
  1846. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Healing\SFX_HealingAreaController.cs" />
  1847. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Instancer\SFX_CollisionBasedFxInstancer.cs" />
  1848. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Instancer\SFX_FxObjectInstancer.cs" />
  1849. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Instancer\SFX_IEmitterKeeper.cs" />
  1850. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Missile\SFX_PhysicsHomingMissile.cs" />
  1851. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Missile\SFX_PhysicsHomingMissileLauncher.cs" />
  1852. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Motion\SFX_LerpMotion.cs" />
  1853. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Motion\SFX_PhysicsMotion.cs" />
  1854. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Motion\SFX_Rotator.cs" />
  1855. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Mouse\SFX_LookAtMouse.cs" />
  1856. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Mouse\SFX_MouseControlledObjectLauncher.cs" />
  1857. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\ParticleSystem\SFX_ParticleSystemMeshAttacher.cs" />
  1858. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Projectile\SFX_ProjectileLauncher.cs" />
  1859. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Projectile\SFX_SimpleProjectile.cs" />
  1860. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Projectile\SFX_SimpleProjectileWeapon.cs" />
  1861. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Scanner\SFX_BeamScannerController.cs" />
  1862. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Scanner\SFX_TopographicScannable.cs" />
  1863. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Scanner\SFX_TopographicScannerController.cs" />
  1864. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Target\SFX_ObjectFinder.cs" />
  1865. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Target\SFX_TargetAttacher.cs" />
  1866. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Target\SFX_TargetMarker.cs" />
  1867. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Utils\Materials\SFX_MaterialAdder.cs" />
  1868. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Utils\Materials\SFX_MaterialReplacer.cs" />
  1869. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Utils\Materials\SFX_MaterialUtil.cs" />
  1870. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Utils\SFX_ComponentUtil.cs" />
  1871. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Utils\SFX_GroundAttacher.cs" />
  1872. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Utils\SFX_InvokeUtil.cs" />
  1873. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Utils\SFX_ObjectAreaFinder.cs" />
  1874. <Compile Include="Assets\科幻特效\QFX\Sci-Fi VFX\Resources\Scripts\Utils\SFX_SelfDestroyer.cs" />
  1875. <Compile Include="Assets\科幻特效\Sci-Fi VFX\Scripts\BeamWeapon\BeamPositionSetter.cs" />
  1876. <Compile Include="Assets\科幻特效\Sci-Fi VFX\Scripts\BeamWeapon\BeamWeapon.cs" />
  1877. <Compile Include="Assets\科幻特效\Sci-Fi VFX\Scripts\BlasterWeapon\BlasterBullet.cs" />
  1878. <Compile Include="Assets\科幻特效\Sci-Fi VFX\Scripts\BlasterWeapon\BlasterWeapon.cs" />
  1879. <Compile Include="Assets\科幻特效\Sci-Fi VFX\Scripts\Materialization\ShaderParameterSetter.cs" />
  1880. <Compile Include="Assets\科幻特效\Sci-Fi VFX\Scripts\Utils\DemoInputConrtoller.cs" />
  1881. <Compile Include="Assets\科幻特效\Sci-Fi VFX\Scripts\Utils\DemoPrefabController.cs" />
  1882. <Compile Include="Assets\科幻特效\Sci-Fi VFX\Scripts\Utils\Dumper.cs" />
  1883. <Compile Include="Assets\科幻特效\Sci-Fi VFX\Scripts\Utils\ProjectorTextureAnimation.cs" />
  1884. <Compile Include="Assets\科幻特效\Sci-Fi VFX\Scripts\Utils\UvAnimation.cs" />
  1885. <Compile Include="Assets\科幻特效\SSFS_v152D2d特效\Demos\Scripts\AlleyDemoControl.cs" />
  1886. <Compile Include="Assets\科幻特效\SSFS_v152D2d特效\Demos\Scripts\Demo_SignSwitcher.cs" />
  1887. <Compile Include="Assets\科幻特效\SSFS_v152D2d特效\Demos\Scripts\LightColorFromTexture.cs" />
  1888. <Compile Include="Assets\科幻特效\SSFS_v152D2d特效\Demos\Scripts\ParameterFiddler.cs" />
  1889. <Compile Include="Assets\科幻特效\SSFS_v152D2d特效\Demos\Scripts\TextureSwapper.cs" />
  1890. <Compile Include="Assets\科幻特效\SSFS_v152D2d特效\Misc\Scripts\AppCoreControl.cs" />
  1891. <Compile Include="Assets\科幻特效\SSFS_v152D2d特效\Misc\Scripts\CameraOrbit.cs" />
  1892. <Compile Include="Assets\科幻特效\SSFS_v152D2d特效\Misc\Scripts\ConstantTransform.cs" />
  1893. <Compile Include="Assets\科幻特效\SSFS_v152D2d特效\Misc\Scripts\StepRotation.cs" />
  1894. <Compile Include="Assets\科幻特效\SSFS_v152D2d特效\src\Scripts\MaterialExtensions.cs" />
  1895. <Compile Include="Assets\科幻特效\SSFS_v152D2d特效\src\Scripts\SimpleSSFSToggle.cs" />
  1896. <Compile Include="Assets\科幻特效\SSFS_v152D2d特效\src\Scripts\SSFS_GeneratorTester.cs" />
  1897. <Compile Include="Assets\科幻特效\SSFS_v152D2d特效\src\Scripts\SSFS_PostEffect.cs" />
  1898. <Compile Include="Assets\科幻特效\SSFS_v152D2d特效\src\Scripts\SSFSCore.cs" />
  1899. <Compile Include="Assets\科幻特效\SSFS_v152D2d特效\src\Scripts\SSFSGenerator.cs" />
  1900. <Compile Include="Assets\科幻特效\StealthEffect\Example\StealthControllerExample.cs" />
  1901. <None Include="Assets\ShadowSDK\Common\StandardAssets\Shaders\InvisibleShader.shader" />
  1902. <None Include="Assets\Model_ProjectionScreen301\Model_ProjectingScreen\Materials\NewSurfaceShader.shader" />
  1903. <None Include="Assets\CompassNavigatorPro\Resources\CNPro\Shaders\SpriteCurved.shader" />
  1904. <None Include="Assets\ShadowSDK\Common\StandardAssets\Shaders\ShadowShaderUtils.cginc" />
  1905. <None Include="Assets\TextMesh Pro\Resources\Shaders\TMP_SDF-Surface-Mobile.shader" />
  1906. <None Include="Assets\TextMesh Pro\Resources\LineBreaking Leading Characters.txt" />
  1907. <None Include="Assets\Material\Line_2\Pipe.shader" />
  1908. <None Include="Assets\Model_ProjectionScreen301\Sharpen\Sharpen.shader" />
  1909. <None Include="Assets\MediaSoup\Best HTTP (Pro)\BestHTTP\SecureProtocol\License.txt" />
  1910. <None Include="Assets\ShadowSDK\Common\StandardAssets\Shaders\ShadowStandard.shader" />
  1911. <None Include="Assets\ShadowSDK\Common\StandardAssets\Shaders\FingerTipCursor.shader" />
  1912. <None Include="Assets\shader\chuantou.shader" />
  1913. <None Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\Examples\Archived\2dUnlitWithFade.shader" />
  1914. <None Include="Assets\shader\Test.shader" />
  1915. <None Include="Assets\CompassNavigatorPro\Demo\Sources\Shaders\Gradient.shader" />
  1916. <None Include="Assets\军事素材\shader\MixedRealityStandard.shader" />
  1917. <None Include="Assets\CompassNavigatorPro\Resources\CNPro\Shaders\UIDefaultCurved.shader" />
  1918. <None Include="Assets\ShadowSDK\Modules\Module_SVR\Versions.txt" />
  1919. <None Include="Assets\rlt\HeatMap - dxg.txt" />
  1920. <None Include="Assets\Pcx\Shaders\Primitive.shader" />
  1921. <None Include="Assets\MediaSoup\Best HTTP (Pro)\link_android_subset.xml" />
  1922. <None Include="Assets\军事素材\text\Shaders\MixedRealityTextMeshPro.shader" />
  1923. <None Include="Assets\CompassNavigatorPro\README FIRST.txt" />
  1924. <None Include="Assets\studio\material\圆按钮 1\Shader\UI_unit.shader" />
  1925. <None Include="Assets\TextMesh Pro\Resources\Shaders\TMPro_Properties.cginc" />
  1926. <None Include="Assets\ShadowSDK\Versions.txt" />
  1927. <None Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\ReadMe.txt" />
  1928. <None Include="Assets\CompassNavigatorPro\Resources\CNPro\Shaders\SpriteOverlayUnlit.shader" />
  1929. <None Include="Assets\ShadowSDK\Modules\Module_Interaction\SCImage3D\Resources\Material\Shader\SCUI3D.shader" />
  1930. <None Include="Assets\TextMesh Pro\Resources\Shaders\TMP_Bitmap-Custom-Atlas.shader" />
  1931. <None Include="Assets\MediaSoup\Best HTTP (Pro)\ReleaseNotes.txt" />
  1932. <None Include="Assets\JIMO Test\XDK JIMO\DB\scale.txt" />
  1933. <None Include="Assets\ShadowSDK\Modules\Module_InputSystem\Resources\Shader\HandShader.shader" />
  1934. <None Include="Assets\ShadowSDK\Common\StandardAssets\Shaders\TwoUv_ZoGlow.shader" />
  1935. <None Include="Assets\ShadowSDK\Common\StandardAssets\Shaders\3D_font.shader" />
  1936. <None Include="Assets\TextMesh Pro\Examples &amp; Extras\Fonts\Oswald-Bold - OFL.txt" />
  1937. <None Include="Assets\TextMesh Pro\Resources\LineBreaking Following Characters.txt" />
  1938. <None Include="Assets\TextMesh Pro\Sprites\EmojiOne Attribution.txt" />
  1939. <None Include="Assets\TextMesh Pro\Resources\Shaders\TMP_SDF-Mobile Masking.shader" />
  1940. <None Include="Assets\junshi_gai1\军事素材\shader\SFX_Hologram.shader" />
  1941. <None Include="Assets\TextMesh Pro\Examples &amp; Extras\Fonts\Anton OFL.txt" />
  1942. <None Include="Assets\ShadowSDK\Common\StandardAssets\Font\Charactor-3500.txt" />
  1943. <None Include="Assets\ShadowSDK\Common\StandardAssets\Shaders\Text3DShader.shader" />
  1944. <None Include="Assets\StreamingAssets\DB\Demo\scale.txt" />
  1945. <None Include="Assets\CompassNavigatorPro\Resources\CNPro\Shaders\Beacon.shader" />
  1946. <None Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\Plugins\Android\readme.txt" />
  1947. <None Include="Assets\TextMesh Pro\Examples &amp; Extras\Fonts\Bangers - OFL.txt" />
  1948. <None Include="Assets\ShadowSDK\Modules\Module_InputSystem\InputDeviceBT3Dof\Plugins\Android\readme_v1.0.1.txt" />
  1949. <None Include="Assets\TextMesh Pro\Resources\Shaders\TMP_Bitmap-Mobile.shader" />
  1950. <None Include="Assets\ShadowSDK\Common\StandardAssets\Shaders\InstancedColored.shader" />
  1951. <None Include="Assets\MediaSoup\文档.txt" />
  1952. <None Include="Assets\ShadowSDK\Common\StandardAssets\Shaders\HandTriangles.shader" />
  1953. <None Include="Assets\TextMesh Pro\Resources\Shaders\TMP_SDF Overlay.shader" />
  1954. <None Include="Assets\ShadowSDK\Common\StandardAssets\Shaders\ChannelPacker.shader" />
  1955. <None Include="Assets\Model\Materials\SF_VFX_Materialization.shader" />
  1956. <None Include="Assets\TextMesh Pro\Fonts\LiberationSans - OFL.txt" />
  1957. <None Include="Assets\ShadowSDK\Common\StandardAssets\Shaders\Wireframe.shader" />
  1958. <None Include="Assets\Pcx\Shaders\Common-Compute.cginc" />
  1959. <None Include="Assets\TextMesh Pro\Resources\Shaders\TMPro_Surface.cginc" />
  1960. <None Include="Assets\TextMesh Pro\Resources\Shaders\TMP_SDF-Mobile Overlay.shader" />
  1961. <None Include="Assets\Resources\Jsons\cel_Label 1.txt" />
  1962. <None Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\Keyboard\LeanTween\License.txt" />
  1963. <None Include="Assets\CompassNavigatorPro\Resources\CNPro\Shaders\MiniMapOverlayClampedUnlit.shader" />
  1964. <None Include="Assets\ShadowSDK\Modules\Module_InputSystem\Resources\Shader\HandShaderNoAlpha.shader" />
  1965. <None Include="Assets\TextMesh Pro\Resources\Shaders\TMP_Bitmap.shader" />
  1966. <None Include="Assets\TextMesh Pro\Resources\Shaders\TMPro.cginc" />
  1967. <None Include="Assets\ShadowSDK\Modules\Module_Interaction\SCInputField\KeyboardUI\Art Tools.shader" />
  1968. <None Include="Assets\XDKUnityCloudExamples\Common\Shaders\Mask.shader" />
  1969. <None Include="Assets\CompassNavigatorPro\Resources\CNPro\Shaders\MiniMapOverlayUnlit.shader" />
  1970. <None Include="Assets\TextMesh Pro\Resources\Shaders\TMP_SDF.shader" />
  1971. <None Include="Assets\军事素材\shader\SciFiHologramShader.shader" />
  1972. <None Include="Assets\TextMesh Pro\Resources\Shaders\TMP_SDF-Mobile.shader" />
  1973. <None Include="Assets\Resources\Jsons\cel_Label.txt" />
  1974. <None Include="Assets\TextMesh Pro\Resources\Shaders\TMP_Sprite.shader" />
  1975. <None Include="Assets\TextMesh Pro\Resources\Shaders\TMP_SDF-Surface.shader" />
  1976. <None Include="Assets\MediaSoup\Best HTTP (Pro)\license.txt" />
  1977. <None Include="Assets\MediaSoup\Best HTTP (Pro)\link.xml" />
  1978. <Reference Include="Unity.Timeline.Editor">
  1979. <HintPath>E:/Projects/JunShi101ShiNei/Library/ScriptAssemblies/Unity.Timeline.Editor.dll</HintPath>
  1980. </Reference>
  1981. <Reference Include="Unity.VSCode.Editor">
  1982. <HintPath>E:/Projects/JunShi101ShiNei/Library/ScriptAssemblies/Unity.VSCode.Editor.dll</HintPath>
  1983. </Reference>
  1984. <Reference Include="Unity.TextMeshPro.Editor">
  1985. <HintPath>E:/Projects/JunShi101ShiNei/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll</HintPath>
  1986. </Reference>
  1987. <Reference Include="UnityEngine.UI">
  1988. <HintPath>E:/Projects/JunShi101ShiNei/Library/ScriptAssemblies/UnityEngine.UI.dll</HintPath>
  1989. </Reference>
  1990. <Reference Include="Unity.Timeline">
  1991. <HintPath>E:/Projects/JunShi101ShiNei/Library/ScriptAssemblies/Unity.Timeline.dll</HintPath>
  1992. </Reference>
  1993. <Reference Include="Unity.CollabProxy.Editor">
  1994. <HintPath>E:/Projects/JunShi101ShiNei/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll</HintPath>
  1995. </Reference>
  1996. <Reference Include="Unity.Rider.Editor">
  1997. <HintPath>E:/Projects/JunShi101ShiNei/Library/ScriptAssemblies/Unity.Rider.Editor.dll</HintPath>
  1998. </Reference>
  1999. <Reference Include="Unity.TextMeshPro">
  2000. <HintPath>E:/Projects/JunShi101ShiNei/Library/ScriptAssemblies/Unity.TextMeshPro.dll</HintPath>
  2001. </Reference>
  2002. <Reference Include="UnityEditor.UI">
  2003. <HintPath>E:/Projects/JunShi101ShiNei/Library/ScriptAssemblies/UnityEditor.UI.dll</HintPath>
  2004. </Reference>
  2005. <Reference Include="UnityEngine.AIModule">
  2006. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll</HintPath>
  2007. </Reference>
  2008. <Reference Include="UnityEngine.ARModule">
  2009. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll</HintPath>
  2010. </Reference>
  2011. <Reference Include="UnityEngine.AccessibilityModule">
  2012. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll</HintPath>
  2013. </Reference>
  2014. <Reference Include="UnityEngine.AndroidJNIModule">
  2015. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll</HintPath>
  2016. </Reference>
  2017. <Reference Include="UnityEngine.AnimationModule">
  2018. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll</HintPath>
  2019. </Reference>
  2020. <Reference Include="UnityEngine.AssetBundleModule">
  2021. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll</HintPath>
  2022. </Reference>
  2023. <Reference Include="UnityEngine.AudioModule">
  2024. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll</HintPath>
  2025. </Reference>
  2026. <Reference Include="UnityEngine.ClothModule">
  2027. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll</HintPath>
  2028. </Reference>
  2029. <Reference Include="UnityEngine.CoreModule">
  2030. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll</HintPath>
  2031. </Reference>
  2032. <Reference Include="UnityEngine.CrashReportingModule">
  2033. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll</HintPath>
  2034. </Reference>
  2035. <Reference Include="UnityEngine.DSPGraphModule">
  2036. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll</HintPath>
  2037. </Reference>
  2038. <Reference Include="UnityEngine.DirectorModule">
  2039. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll</HintPath>
  2040. </Reference>
  2041. <Reference Include="UnityEngine.FileSystemHttpModule">
  2042. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.FileSystemHttpModule.dll</HintPath>
  2043. </Reference>
  2044. <Reference Include="UnityEngine.GameCenterModule">
  2045. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll</HintPath>
  2046. </Reference>
  2047. <Reference Include="UnityEngine.GridModule">
  2048. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll</HintPath>
  2049. </Reference>
  2050. <Reference Include="UnityEngine.HotReloadModule">
  2051. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll</HintPath>
  2052. </Reference>
  2053. <Reference Include="UnityEngine.IMGUIModule">
  2054. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll</HintPath>
  2055. </Reference>
  2056. <Reference Include="UnityEngine.ImageConversionModule">
  2057. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll</HintPath>
  2058. </Reference>
  2059. <Reference Include="UnityEngine.InputModule">
  2060. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll</HintPath>
  2061. </Reference>
  2062. <Reference Include="UnityEngine.InputLegacyModule">
  2063. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll</HintPath>
  2064. </Reference>
  2065. <Reference Include="UnityEngine.JSONSerializeModule">
  2066. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll</HintPath>
  2067. </Reference>
  2068. <Reference Include="UnityEngine.LocalizationModule">
  2069. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll</HintPath>
  2070. </Reference>
  2071. <Reference Include="UnityEngine.ParticleSystemModule">
  2072. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll</HintPath>
  2073. </Reference>
  2074. <Reference Include="UnityEngine.PerformanceReportingModule">
  2075. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll</HintPath>
  2076. </Reference>
  2077. <Reference Include="UnityEngine.PhysicsModule">
  2078. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll</HintPath>
  2079. </Reference>
  2080. <Reference Include="UnityEngine.Physics2DModule">
  2081. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll</HintPath>
  2082. </Reference>
  2083. <Reference Include="UnityEngine.ProfilerModule">
  2084. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll</HintPath>
  2085. </Reference>
  2086. <Reference Include="UnityEngine.ScreenCaptureModule">
  2087. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll</HintPath>
  2088. </Reference>
  2089. <Reference Include="UnityEngine.SharedInternalsModule">
  2090. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll</HintPath>
  2091. </Reference>
  2092. <Reference Include="UnityEngine.SpriteMaskModule">
  2093. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll</HintPath>
  2094. </Reference>
  2095. <Reference Include="UnityEngine.SpriteShapeModule">
  2096. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll</HintPath>
  2097. </Reference>
  2098. <Reference Include="UnityEngine.StreamingModule">
  2099. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll</HintPath>
  2100. </Reference>
  2101. <Reference Include="UnityEngine.SubstanceModule">
  2102. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll</HintPath>
  2103. </Reference>
  2104. <Reference Include="UnityEngine.TLSModule">
  2105. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll</HintPath>
  2106. </Reference>
  2107. <Reference Include="UnityEngine.TerrainModule">
  2108. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll</HintPath>
  2109. </Reference>
  2110. <Reference Include="UnityEngine.TerrainPhysicsModule">
  2111. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll</HintPath>
  2112. </Reference>
  2113. <Reference Include="UnityEngine.TextCoreModule">
  2114. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreModule.dll</HintPath>
  2115. </Reference>
  2116. <Reference Include="UnityEngine.TextRenderingModule">
  2117. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll</HintPath>
  2118. </Reference>
  2119. <Reference Include="UnityEngine.TilemapModule">
  2120. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll</HintPath>
  2121. </Reference>
  2122. <Reference Include="UnityEngine.UIModule">
  2123. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll</HintPath>
  2124. </Reference>
  2125. <Reference Include="UnityEngine.UIElementsModule">
  2126. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll</HintPath>
  2127. </Reference>
  2128. <Reference Include="UnityEngine.UNETModule">
  2129. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UNETModule.dll</HintPath>
  2130. </Reference>
  2131. <Reference Include="UnityEngine.UmbraModule">
  2132. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll</HintPath>
  2133. </Reference>
  2134. <Reference Include="UnityEngine.UnityAnalyticsModule">
  2135. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll</HintPath>
  2136. </Reference>
  2137. <Reference Include="UnityEngine.UnityConnectModule">
  2138. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll</HintPath>
  2139. </Reference>
  2140. <Reference Include="UnityEngine.UnityTestProtocolModule">
  2141. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll</HintPath>
  2142. </Reference>
  2143. <Reference Include="UnityEngine.UnityWebRequestModule">
  2144. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll</HintPath>
  2145. </Reference>
  2146. <Reference Include="UnityEngine.UnityWebRequestAssetBundleModule">
  2147. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll</HintPath>
  2148. </Reference>
  2149. <Reference Include="UnityEngine.UnityWebRequestAudioModule">
  2150. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll</HintPath>
  2151. </Reference>
  2152. <Reference Include="UnityEngine.UnityWebRequestTextureModule">
  2153. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll</HintPath>
  2154. </Reference>
  2155. <Reference Include="UnityEngine.UnityWebRequestWWWModule">
  2156. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll</HintPath>
  2157. </Reference>
  2158. <Reference Include="UnityEngine.VFXModule">
  2159. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll</HintPath>
  2160. </Reference>
  2161. <Reference Include="UnityEngine.VRModule">
  2162. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll</HintPath>
  2163. </Reference>
  2164. <Reference Include="UnityEngine.VehiclesModule">
  2165. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll</HintPath>
  2166. </Reference>
  2167. <Reference Include="UnityEngine.VideoModule">
  2168. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll</HintPath>
  2169. </Reference>
  2170. <Reference Include="UnityEngine.WindModule">
  2171. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll</HintPath>
  2172. </Reference>
  2173. <Reference Include="UnityEngine.XRModule">
  2174. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll</HintPath>
  2175. </Reference>
  2176. <Reference Include="Newtonsoft.Json">
  2177. <HintPath>E:/Projects/JunShi101ShiNei/Assets/Plugins/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.dll</HintPath>
  2178. </Reference>
  2179. <Reference Include="LitJson">
  2180. <HintPath>E:/Projects/JunShi101ShiNei/Assets/ShadowSDK/Common/Plugins/LitJson.dll</HintPath>
  2181. </Reference>
  2182. <Reference Include="DOTween">
  2183. <HintPath>E:/Projects/JunShi101ShiNei/Assets/ShadowSDK/Common/Plugins/DOTween/DOTween.dll</HintPath>
  2184. </Reference>
  2185. <Reference Include="DOTween43">
  2186. <HintPath>E:/Projects/JunShi101ShiNei/Assets/ShadowSDK/Common/Plugins/DOTween/DOTween43.dll</HintPath>
  2187. </Reference>
  2188. <Reference Include="DOTween46">
  2189. <HintPath>E:/Projects/JunShi101ShiNei/Assets/ShadowSDK/Common/Plugins/DOTween/DOTween46.dll</HintPath>
  2190. </Reference>
  2191. <Reference Include="DOTween50">
  2192. <HintPath>E:/Projects/JunShi101ShiNei/Assets/ShadowSDK/Common/Plugins/DOTween/DOTween50.dll</HintPath>
  2193. </Reference>
  2194. <Reference Include="VacuumShaders.TerrainToMesh">
  2195. <HintPath>E:/Projects/JunShi101ShiNei/Assets/VacuumShaders/Terrain To Mesh/Scripts/VacuumShaders.TerrainToMesh.dll</HintPath>
  2196. </Reference>
  2197. <Reference Include="mscorlib">
  2198. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/mscorlib.dll</HintPath>
  2199. </Reference>
  2200. <Reference Include="System">
  2201. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.dll</HintPath>
  2202. </Reference>
  2203. <Reference Include="System.Core">
  2204. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Core.dll</HintPath>
  2205. </Reference>
  2206. <Reference Include="System.Runtime.Serialization">
  2207. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Runtime.Serialization.dll</HintPath>
  2208. </Reference>
  2209. <Reference Include="System.Xml">
  2210. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.dll</HintPath>
  2211. </Reference>
  2212. <Reference Include="System.Xml.Linq">
  2213. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Xml.Linq.dll</HintPath>
  2214. </Reference>
  2215. <Reference Include="System.Numerics">
  2216. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.dll</HintPath>
  2217. </Reference>
  2218. <Reference Include="System.Numerics.Vectors">
  2219. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Numerics.Vectors.dll</HintPath>
  2220. </Reference>
  2221. <Reference Include="System.Net.Http">
  2222. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Net.Http.dll</HintPath>
  2223. </Reference>
  2224. <Reference Include="Microsoft.CSharp">
  2225. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Microsoft.CSharp.dll</HintPath>
  2226. </Reference>
  2227. <Reference Include="System.Data">
  2228. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/System.Data.dll</HintPath>
  2229. </Reference>
  2230. <Reference Include="Microsoft.Win32.Primitives">
  2231. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/Microsoft.Win32.Primitives.dll</HintPath>
  2232. </Reference>
  2233. <Reference Include="netstandard">
  2234. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/netstandard.dll</HintPath>
  2235. </Reference>
  2236. <Reference Include="System.AppContext">
  2237. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.AppContext.dll</HintPath>
  2238. </Reference>
  2239. <Reference Include="System.Collections.Concurrent">
  2240. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Concurrent.dll</HintPath>
  2241. </Reference>
  2242. <Reference Include="System.Collections">
  2243. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.dll</HintPath>
  2244. </Reference>
  2245. <Reference Include="System.Collections.NonGeneric">
  2246. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.NonGeneric.dll</HintPath>
  2247. </Reference>
  2248. <Reference Include="System.Collections.Specialized">
  2249. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Collections.Specialized.dll</HintPath>
  2250. </Reference>
  2251. <Reference Include="System.ComponentModel.Annotations">
  2252. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Annotations.dll</HintPath>
  2253. </Reference>
  2254. <Reference Include="System.ComponentModel">
  2255. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.dll</HintPath>
  2256. </Reference>
  2257. <Reference Include="System.ComponentModel.EventBasedAsync">
  2258. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.EventBasedAsync.dll</HintPath>
  2259. </Reference>
  2260. <Reference Include="System.ComponentModel.Primitives">
  2261. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.Primitives.dll</HintPath>
  2262. </Reference>
  2263. <Reference Include="System.ComponentModel.TypeConverter">
  2264. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ComponentModel.TypeConverter.dll</HintPath>
  2265. </Reference>
  2266. <Reference Include="System.Console">
  2267. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Console.dll</HintPath>
  2268. </Reference>
  2269. <Reference Include="System.Data.Common">
  2270. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Data.Common.dll</HintPath>
  2271. </Reference>
  2272. <Reference Include="System.Diagnostics.Contracts">
  2273. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Contracts.dll</HintPath>
  2274. </Reference>
  2275. <Reference Include="System.Diagnostics.Debug">
  2276. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Debug.dll</HintPath>
  2277. </Reference>
  2278. <Reference Include="System.Diagnostics.FileVersionInfo">
  2279. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.FileVersionInfo.dll</HintPath>
  2280. </Reference>
  2281. <Reference Include="System.Diagnostics.Process">
  2282. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Process.dll</HintPath>
  2283. </Reference>
  2284. <Reference Include="System.Diagnostics.StackTrace">
  2285. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.StackTrace.dll</HintPath>
  2286. </Reference>
  2287. <Reference Include="System.Diagnostics.TextWriterTraceListener">
  2288. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TextWriterTraceListener.dll</HintPath>
  2289. </Reference>
  2290. <Reference Include="System.Diagnostics.Tools">
  2291. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.Tools.dll</HintPath>
  2292. </Reference>
  2293. <Reference Include="System.Diagnostics.TraceSource">
  2294. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Diagnostics.TraceSource.dll</HintPath>
  2295. </Reference>
  2296. <Reference Include="System.Drawing.Primitives">
  2297. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Drawing.Primitives.dll</HintPath>
  2298. </Reference>
  2299. <Reference Include="System.Dynamic.Runtime">
  2300. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Dynamic.Runtime.dll</HintPath>
  2301. </Reference>
  2302. <Reference Include="System.Globalization.Calendars">
  2303. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Calendars.dll</HintPath>
  2304. </Reference>
  2305. <Reference Include="System.Globalization">
  2306. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.dll</HintPath>
  2307. </Reference>
  2308. <Reference Include="System.Globalization.Extensions">
  2309. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Globalization.Extensions.dll</HintPath>
  2310. </Reference>
  2311. <Reference Include="System.IO.Compression.ZipFile">
  2312. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Compression.ZipFile.dll</HintPath>
  2313. </Reference>
  2314. <Reference Include="System.IO">
  2315. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.dll</HintPath>
  2316. </Reference>
  2317. <Reference Include="System.IO.FileSystem">
  2318. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.dll</HintPath>
  2319. </Reference>
  2320. <Reference Include="System.IO.FileSystem.DriveInfo">
  2321. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.DriveInfo.dll</HintPath>
  2322. </Reference>
  2323. <Reference Include="System.IO.FileSystem.Primitives">
  2324. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Primitives.dll</HintPath>
  2325. </Reference>
  2326. <Reference Include="System.IO.FileSystem.Watcher">
  2327. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.FileSystem.Watcher.dll</HintPath>
  2328. </Reference>
  2329. <Reference Include="System.IO.IsolatedStorage">
  2330. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.IsolatedStorage.dll</HintPath>
  2331. </Reference>
  2332. <Reference Include="System.IO.MemoryMappedFiles">
  2333. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.MemoryMappedFiles.dll</HintPath>
  2334. </Reference>
  2335. <Reference Include="System.IO.Pipes">
  2336. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.Pipes.dll</HintPath>
  2337. </Reference>
  2338. <Reference Include="System.IO.UnmanagedMemoryStream">
  2339. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.IO.UnmanagedMemoryStream.dll</HintPath>
  2340. </Reference>
  2341. <Reference Include="System.Linq">
  2342. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.dll</HintPath>
  2343. </Reference>
  2344. <Reference Include="System.Linq.Expressions">
  2345. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Expressions.dll</HintPath>
  2346. </Reference>
  2347. <Reference Include="System.Linq.Parallel">
  2348. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Parallel.dll</HintPath>
  2349. </Reference>
  2350. <Reference Include="System.Linq.Queryable">
  2351. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Linq.Queryable.dll</HintPath>
  2352. </Reference>
  2353. <Reference Include="System.Net.Http.Rtc">
  2354. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Http.Rtc.dll</HintPath>
  2355. </Reference>
  2356. <Reference Include="System.Net.NameResolution">
  2357. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NameResolution.dll</HintPath>
  2358. </Reference>
  2359. <Reference Include="System.Net.NetworkInformation">
  2360. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.NetworkInformation.dll</HintPath>
  2361. </Reference>
  2362. <Reference Include="System.Net.Ping">
  2363. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Ping.dll</HintPath>
  2364. </Reference>
  2365. <Reference Include="System.Net.Primitives">
  2366. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Primitives.dll</HintPath>
  2367. </Reference>
  2368. <Reference Include="System.Net.Requests">
  2369. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Requests.dll</HintPath>
  2370. </Reference>
  2371. <Reference Include="System.Net.Security">
  2372. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Security.dll</HintPath>
  2373. </Reference>
  2374. <Reference Include="System.Net.Sockets">
  2375. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.Sockets.dll</HintPath>
  2376. </Reference>
  2377. <Reference Include="System.Net.WebHeaderCollection">
  2378. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebHeaderCollection.dll</HintPath>
  2379. </Reference>
  2380. <Reference Include="System.Net.WebSockets.Client">
  2381. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.Client.dll</HintPath>
  2382. </Reference>
  2383. <Reference Include="System.Net.WebSockets">
  2384. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Net.WebSockets.dll</HintPath>
  2385. </Reference>
  2386. <Reference Include="System.ObjectModel">
  2387. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ObjectModel.dll</HintPath>
  2388. </Reference>
  2389. <Reference Include="System.Reflection">
  2390. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.dll</HintPath>
  2391. </Reference>
  2392. <Reference Include="System.Reflection.Emit">
  2393. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.dll</HintPath>
  2394. </Reference>
  2395. <Reference Include="System.Reflection.Emit.ILGeneration">
  2396. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.ILGeneration.dll</HintPath>
  2397. </Reference>
  2398. <Reference Include="System.Reflection.Emit.Lightweight">
  2399. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Emit.Lightweight.dll</HintPath>
  2400. </Reference>
  2401. <Reference Include="System.Reflection.Extensions">
  2402. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Extensions.dll</HintPath>
  2403. </Reference>
  2404. <Reference Include="System.Reflection.Primitives">
  2405. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Reflection.Primitives.dll</HintPath>
  2406. </Reference>
  2407. <Reference Include="System.Resources.Reader">
  2408. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Reader.dll</HintPath>
  2409. </Reference>
  2410. <Reference Include="System.Resources.ResourceManager">
  2411. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.ResourceManager.dll</HintPath>
  2412. </Reference>
  2413. <Reference Include="System.Resources.Writer">
  2414. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Resources.Writer.dll</HintPath>
  2415. </Reference>
  2416. <Reference Include="System.Runtime.CompilerServices.VisualC">
  2417. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.CompilerServices.VisualC.dll</HintPath>
  2418. </Reference>
  2419. <Reference Include="System.Runtime">
  2420. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.dll</HintPath>
  2421. </Reference>
  2422. <Reference Include="System.Runtime.Extensions">
  2423. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Extensions.dll</HintPath>
  2424. </Reference>
  2425. <Reference Include="System.Runtime.Handles">
  2426. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Handles.dll</HintPath>
  2427. </Reference>
  2428. <Reference Include="System.Runtime.InteropServices">
  2429. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.dll</HintPath>
  2430. </Reference>
  2431. <Reference Include="System.Runtime.InteropServices.RuntimeInformation">
  2432. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
  2433. </Reference>
  2434. <Reference Include="System.Runtime.InteropServices.WindowsRuntime">
  2435. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll</HintPath>
  2436. </Reference>
  2437. <Reference Include="System.Runtime.Numerics">
  2438. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Numerics.dll</HintPath>
  2439. </Reference>
  2440. <Reference Include="System.Runtime.Serialization.Formatters">
  2441. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Formatters.dll</HintPath>
  2442. </Reference>
  2443. <Reference Include="System.Runtime.Serialization.Json">
  2444. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Json.dll</HintPath>
  2445. </Reference>
  2446. <Reference Include="System.Runtime.Serialization.Primitives">
  2447. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Primitives.dll</HintPath>
  2448. </Reference>
  2449. <Reference Include="System.Runtime.Serialization.Xml">
  2450. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Runtime.Serialization.Xml.dll</HintPath>
  2451. </Reference>
  2452. <Reference Include="System.Security.Claims">
  2453. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Claims.dll</HintPath>
  2454. </Reference>
  2455. <Reference Include="System.Security.Cryptography.Algorithms">
  2456. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Algorithms.dll</HintPath>
  2457. </Reference>
  2458. <Reference Include="System.Security.Cryptography.Csp">
  2459. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Csp.dll</HintPath>
  2460. </Reference>
  2461. <Reference Include="System.Security.Cryptography.Encoding">
  2462. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Encoding.dll</HintPath>
  2463. </Reference>
  2464. <Reference Include="System.Security.Cryptography.Primitives">
  2465. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.Primitives.dll</HintPath>
  2466. </Reference>
  2467. <Reference Include="System.Security.Cryptography.X509Certificates">
  2468. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Cryptography.X509Certificates.dll</HintPath>
  2469. </Reference>
  2470. <Reference Include="System.Security.Principal">
  2471. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.Principal.dll</HintPath>
  2472. </Reference>
  2473. <Reference Include="System.Security.SecureString">
  2474. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Security.SecureString.dll</HintPath>
  2475. </Reference>
  2476. <Reference Include="System.ServiceModel.Duplex">
  2477. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Duplex.dll</HintPath>
  2478. </Reference>
  2479. <Reference Include="System.ServiceModel.Http">
  2480. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Http.dll</HintPath>
  2481. </Reference>
  2482. <Reference Include="System.ServiceModel.NetTcp">
  2483. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.NetTcp.dll</HintPath>
  2484. </Reference>
  2485. <Reference Include="System.ServiceModel.Primitives">
  2486. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Primitives.dll</HintPath>
  2487. </Reference>
  2488. <Reference Include="System.ServiceModel.Security">
  2489. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ServiceModel.Security.dll</HintPath>
  2490. </Reference>
  2491. <Reference Include="System.Text.Encoding">
  2492. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.dll</HintPath>
  2493. </Reference>
  2494. <Reference Include="System.Text.Encoding.Extensions">
  2495. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.Encoding.Extensions.dll</HintPath>
  2496. </Reference>
  2497. <Reference Include="System.Text.RegularExpressions">
  2498. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Text.RegularExpressions.dll</HintPath>
  2499. </Reference>
  2500. <Reference Include="System.Threading">
  2501. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.dll</HintPath>
  2502. </Reference>
  2503. <Reference Include="System.Threading.Overlapped">
  2504. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Overlapped.dll</HintPath>
  2505. </Reference>
  2506. <Reference Include="System.Threading.Tasks">
  2507. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.dll</HintPath>
  2508. </Reference>
  2509. <Reference Include="System.Threading.Tasks.Parallel">
  2510. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Tasks.Parallel.dll</HintPath>
  2511. </Reference>
  2512. <Reference Include="System.Threading.Thread">
  2513. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Thread.dll</HintPath>
  2514. </Reference>
  2515. <Reference Include="System.Threading.ThreadPool">
  2516. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.ThreadPool.dll</HintPath>
  2517. </Reference>
  2518. <Reference Include="System.Threading.Timer">
  2519. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Threading.Timer.dll</HintPath>
  2520. </Reference>
  2521. <Reference Include="System.ValueTuple">
  2522. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.ValueTuple.dll</HintPath>
  2523. </Reference>
  2524. <Reference Include="System.Xml.ReaderWriter">
  2525. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.ReaderWriter.dll</HintPath>
  2526. </Reference>
  2527. <Reference Include="System.Xml.XDocument">
  2528. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XDocument.dll</HintPath>
  2529. </Reference>
  2530. <Reference Include="System.Xml.XmlDocument">
  2531. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlDocument.dll</HintPath>
  2532. </Reference>
  2533. <Reference Include="System.Xml.XmlSerializer">
  2534. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XmlSerializer.dll</HintPath>
  2535. </Reference>
  2536. <Reference Include="System.Xml.XPath">
  2537. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.dll</HintPath>
  2538. </Reference>
  2539. <Reference Include="System.Xml.XPath.XDocument">
  2540. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/4.7.1-api/Facades/System.Xml.XPath.XDocument.dll</HintPath>
  2541. </Reference>
  2542. <Reference Include="UnityScript">
  2543. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/UnityScript.dll</HintPath>
  2544. </Reference>
  2545. <Reference Include="UnityScript.Lang">
  2546. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/UnityScript.Lang.dll</HintPath>
  2547. </Reference>
  2548. <Reference Include="Boo.Lang">
  2549. <HintPath>E:/Unity/2019.2.3f1/Editor/Data/MonoBleedingEdge/lib/mono/unityscript/Boo.Lang.dll</HintPath>
  2550. </Reference>
  2551. </ItemGroup>
  2552. <ItemGroup>
  2553. <ProjectReference Include="Assembly-CSharp-firstpass.csproj">
  2554. <Project>{CFE7D323-A6CD-64D9-E759-8BFDCAB8C8C4}</Project>
  2555. <Name>Assembly-CSharp-firstpass</Name>
  2556. </ProjectReference>
  2557. <ProjectReference Include="NavMeshComponentsExamplesEditor.csproj">
  2558. <Project>{E3E8595A-7E0C-E17F-1436-904ADF18EF43}</Project>
  2559. <Name>NavMeshComponentsExamplesEditor</Name>
  2560. </ProjectReference>
  2561. <ProjectReference Include="Pcx.Editor.csproj">
  2562. <Project>{26119E51-39A2-A257-B012-EBFBCBDD95F2}</Project>
  2563. <Name>Pcx.Editor</Name>
  2564. </ProjectReference>
  2565. <ProjectReference Include="NavMeshComponentsEditor.csproj">
  2566. <Project>{48884C4F-1811-7E09-ADB3-A29DA9EC588B}</Project>
  2567. <Name>NavMeshComponentsEditor</Name>
  2568. </ProjectReference>
  2569. <ProjectReference Include="NavMeshComponents.csproj">
  2570. <Project>{46856C86-8ED1-73AA-2EF8-273BDDBD03E3}</Project>
  2571. <Name>NavMeshComponents</Name>
  2572. </ProjectReference>
  2573. <ProjectReference Include="NavMeshComponentsExamples.csproj">
  2574. <Project>{F4951169-C67B-DE6B-E7F6-D2E2BBBE5B99}</Project>
  2575. <Name>NavMeshComponentsExamples</Name>
  2576. </ProjectReference>
  2577. <ProjectReference Include="Pcx.csproj">
  2578. <Project>{951C366F-07AE-51BE-E8A0-E19F0C2B7E05}</Project>
  2579. <Name>Pcx</Name>
  2580. </ProjectReference>
  2581. <ProjectReference Include="Demos.StandardShader.Inspectors.csproj">
  2582. <Project>{E249EE28-D27B-C271-95CA-5E0868C0574A}</Project>
  2583. <Name>Demos.StandardShader.Inspectors</Name>
  2584. </ProjectReference>
  2585. </ItemGroup>
  2586. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  2587. <Target Name="GenerateTargetFrameworkMonikerAttribute" />
  2588. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  2589. Other similar extension points exist, see Microsoft.Common.targets.
  2590. <Target Name="BeforeBuild">
  2591. </Target>
  2592. <Target Name="AfterBuild">
  2593. </Target>
  2594. -->
  2595. </Project>