StandaloneWindows64.txt 224 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202
  1. [Info][Process] Loading Editor Platform...
  2. [Info][Process] Found Editor Platform: WindowsEditorPlatform
  3. [Info][Process] Loading for BuildTarget StandaloneWindows64 Build Platform...
  4. [Info][Process] Found Build Platform: DefaultPlatform
  5. [Info][Process] Loading Dependencies...
  6. [Info][Process] Found Dependencies:
  7. E:\Unity\2021.3.22f1c1\Editor\Data\MonoBleedingEdge\lib\mono\unityjit-win32
  8. E:\Unity\2021.3.22f1c1\Editor\Data\Managed\UnityEngine
  9. E:\Unity\2021.3.22f1c1\Editor\Data\Managed
  10. E:\Unity\2021.3.22f1c1\Editor\Data\MonoBleedingEdge\lib\mono\unityjit-win32\Facades
  11. E:\Unity\2021.3.22f1c1\Editor\Data\PlaybackEngines\AndroidPlayer
  12. E:\Unity\2021.3.22f1c1\Editor\Data\PlaybackEngines\iOSSupport
  13. E:\Unity\2021.3.22f1c1\Editor\Data\PlaybackEngines\WindowsStandaloneSupport
  14. E:\000MyProject\InfraredLocate\Library\ScriptAssemblies
  15. E:\000MyProject\InfraredLocate\Library\PackageCache\com.unity.collab-proxy@2.0.1\Lib\Editor\PlasticSCM
  16. E:\000MyProject\InfraredLocate\Assets\Plugins\o0Lib\netstandard2.0
  17. E:\000MyProject\InfraredLocate\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet
  18. E:\000MyProject\InfraredLocate\Assets\OPS\Obfuscator.Pro\Plugins
  19. E:\000MyProject\InfraredLocate\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\EditorAssetResources
  20. E:\000MyProject\InfraredLocate\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip
  21. E:\000MyProject\InfraredLocate\Assets\OPS\Editor\Plugins\Mono.Cecil
  22. E:\000MyProject\InfraredLocate\Assets\OPS\Obfuscator.Pro\Editor\Plugins
  23. E:\000MyProject\InfraredLocate\Library\PackageCache\com.unity.visualscripting@1.8.0\Runtime\VisualScripting.Flow\Dependencies\NCalc
  24. E:\000MyProject\InfraredLocate\Library\PackageCache\com.unity.testtools.codecoverage@1.2.2\lib\ReportGenerator
  25. E:\000MyProject\InfraredLocate\Assets\Plugins
  26. E:\000MyProject\InfraredLocate\Library\PackageCache\com.unity.ext.nunit@1.0.6\net35\unity-custom
  27. E:\Unity\2021.3.22f1c1\Editor\Managed
  28. [Info][Process] Loading Helper Assembly Location...
  29. [Info][Process] For Assemblies:
  30. OPS.Obfuscator.dll
  31. [Info][Process] Found Helper Assemblies Location:
  32. E:\000MyProject\InfraredLocate\Assets\OPS\Obfuscator.Pro\Plugins\OPS.Obfuscator.dll
  33. [Info][Process] Loading Assembly Location...
  34. [Info][Process] For Assemblies:
  35. Assembly-CSharp.dll
  36. Assembly-CSharp-firstpass.dll
  37. [Warning][Process] Could not find Assembly: Assembly-CSharp-firstpass.dll
  38. [Info][Process] Found Assemblies Location:
  39. E:\000MyProject\InfraredLocate\Library\PlayerScriptAssemblies\Assembly-CSharp.dll
  40. [Info][Process] Start Assembly obfuscation
  41. [Info][Process] Lock Assemblies
  42. [Info][Process] Loading Processings Steps...
  43. [Info][Process] Finished Processings Steps loading.
  44. [Info][Process] Processing Step: Init Assemblies
  45. [Info][Preprocess] [Assembly-CSharp] Searching Member References...
  46. [Info][Preprocess] [Assembly-CSharp] Searching Type References...
  47. [Info][Process] Finished Step: Init Assemblies
  48. [Info][Process] Processing Step: Init Methods
  49. [Info][Preprocess] [Assembly-CSharp] Searching Method Semantics...
  50. [Info][Process] Finished Step: Init Methods
  51. [Info][Process] Processing Step: Analyse Strings
  52. [Info][Analyse] [Assembly-CSharp] Analyse Strings...
  53. [Info][Analyse Files] Found Strings: 53
  54. [Info][Process] Finished Step: Analyse Strings
  55. [Info][Process] Processing Step: Analyse Files
  56. [Info][Analyse Files] Searching Gui Methods...
  57. [Info][Analyse Files] Found Gui Methods: 6
  58. [Info][Process] Finished Step: Analyse Files
  59. [Info][Process] Processing Step: Analyse Files
  60. [Info][Analyse Files] Searching Animation Methods...
  61. [Info][Analyse Files] Found Animation Methods: 0
  62. [Info][Process] Finished Step: Analyse Files
  63. [Info][Process] Processing Step: Analyse Files
  64. [Info][Analyse Files] Searching Unity Types...
  65. [Info][Process] Finished Step: Analyse Files
  66. [Info][Process] Processing Step: Analyse Namespaces
  67. [Info][Analyse] [Assembly-CSharp] Analyse Namespaces...
  68. [Info][Skip Namespace] [[Assembly-CSharp]GameCrossHair] Because of some Addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
  69. [Info][Skip Namespace] [[Assembly-CSharp]GameMode] Because of some Addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
  70. [Info][Skip Namespace] [[Assembly-CSharp]ZIM.InfraredLocate/<>c] Because of some Addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
  71. [Info][Skip Namespace] [[Assembly-CSharp]ZIM.Image.ConvEdge/<>c] Because of some Addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
  72. [Info][Skip Namespace] [[Assembly-CSharp]o0.Project.Extension/<>c] Because of some Addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
  73. [Info][Skip Namespace] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c] Because of some Addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
  74. [Info][Skip Namespace] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c] Because of some Addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
  75. [Info][Process] Finished Step: Analyse Namespaces
  76. [Info][Process] Processing Step: Analyse Types
  77. [Info][Analyse] [Assembly-CSharp] Analyse Types...
  78. [Info][Skip Type] [[Assembly-CSharp]GameBootListener] Because of some addon: .Net Framework [Has RuntimeInitializeOnLoadMethodAttribute.]
  79. [Info][Skip Type] [[Assembly-CSharp]GameController] Because of some addon: Reflection and Coroutine [Matchs some String. Have a look at Obfuscator Settings->Advanced->Search matching members.]
  80. [Info][Skip Type] [[Assembly-CSharp]GameCrossHair] Because of some addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
  81. [Info][Skip Type] [[Assembly-CSharp]GameMode] Because of some addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
  82. [Info][Skip Type] [[Assembly-CSharp]ZIM.InfraredLocate/<>c] Because of some addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
  83. [Info][Skip Type] [[Assembly-CSharp]ZIM.Image.ConvEdge/<>c] Because of some addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
  84. [Info][Skip Type] [[Assembly-CSharp]o0.Project.Extension/<>c] Because of some addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
  85. [Info][Skip Type] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c] Because of some addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
  86. [Info][Skip Type] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c] Because of some addon: Obfuscator [Is Serializeable, some base is Serializeable or some field is Serializeable.]
  87. [Info][Process] Finished Step: Analyse Types
  88. [Info][Process] Processing Step: Analyse Members
  89. [Info][Analyse] [Assembly-CSharp] Analyse Members...
  90. [Info][Skip Field] [[Assembly-CSharp]GameController GameCrossHair::gameController] Because of some addon: Obfuscator [Class is Serializeable.]
  91. [Info][Skip Field] [[Assembly-CSharp]ScreenLocate GameCrossHair::screenLocate] Because of some addon: Obfuscator [Is Serializeable.]
  92. [Info][Skip Field] [[Assembly-CSharp]UnityEngine.RectTransform GameCrossHair::myRTF] Because of some addon: Obfuscator [Class is Serializeable.]
  93. [Info][Skip Field] [[Assembly-CSharp]UnityEngine.Vector2 GameCrossHair::targetPos] Because of some addon: Obfuscator [Class is Serializeable.]
  94. [Info][Skip Field] [[Assembly-CSharp]System.Int32 GameCrossHair::infraredSpotsIndex] Because of some addon: Obfuscator [Is Serializeable.]
  95. [Info][Skip Field] [[Assembly-CSharp]System.Nullable`1<UnityEngine.Vector3> GameCrossHair::_lastPosition] Because of some addon: Obfuscator [Class is Serializeable.]
  96. [Info][Skip Field] [[Assembly-CSharp]System.Single GameMode::aBoxWidth] Because of some addon: Obfuscator [Class is Serializeable.]
  97. [Info][Skip Field] [[Assembly-CSharp]System.Int32 GameMode::aDevideCount] Because of some addon: Obfuscator [Class is Serializeable.]
  98. [Info][Skip Field] [[Assembly-CSharp]System.Single GameMode::bBoxWidth] Because of some addon: Obfuscator [Class is Serializeable.]
  99. [Info][Skip Field] [[Assembly-CSharp]System.Int32 GameMode::bDevideCount] Because of some addon: Obfuscator [Class is Serializeable.]
  100. [Info][Skip Field] [[Assembly-CSharp]System.Single GameMode::cBoxWidth] Because of some addon: Obfuscator [Class is Serializeable.]
  101. [Info][Skip Field] [[Assembly-CSharp]System.Int32 GameMode::cDevideCount] Because of some addon: Obfuscator [Class is Serializeable.]
  102. [Info][Skip Field] [[Assembly-CSharp]System.Single GameMode::boxDownSpeed] Because of some addon: Obfuscator [Class is Serializeable.]
  103. [Info][Skip Field] [[Assembly-CSharp]System.Single GameMode::createBoxInterval] Because of some addon: Obfuscator [Class is Serializeable.]
  104. [Info][Skip Field] [[Assembly-CSharp]UnityEngine.RectTransform GameMode::container] Because of some addon: Obfuscator [Is Serializeable.]
  105. [Info][Skip Field] [[Assembly-CSharp]UnityEngine.GameObject GameMode::boxPrefab] Because of some addon: Obfuscator [Is Serializeable.]
  106. [Info][Skip Field] [[Assembly-CSharp]System.Collections.Generic.Queue`1<System.Single> GameMode::useStartYQueue] Because of some addon: Obfuscator [Class is Serializeable.]
  107. [Info][Skip Field] [[Assembly-CSharp]System.Single GameMode::timeCount] Because of some addon: Obfuscator [Class is Serializeable.]
  108. [Info][Skip Field] [[Assembly-CSharp]System.Int32 ScreenLocate/Mode::value__] Because of some addon: .Net Framework [Is value__.]
  109. [Info][Skip Field] [[Assembly-CSharp]System.Int32 ZIM.InfraredMatch::value__] Because of some addon: .Net Framework [Is value__.]
  110. [Info][Skip Field] [[Assembly-CSharp]ZIM.InfraredLocate/<>c ZIM.InfraredLocate/<>c::<>9] Because of some addon: Obfuscator [Class is Serializeable.]
  111. [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<ZIM.PixelSpotArea> ZIM.InfraredLocate/<>c::<>9__13_0] Because of some addon: Obfuscator [Class is Serializeable.]
  112. [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<ZIM.PixelSpotArea> ZIM.InfraredLocate/<>c::<>9__13_1] Because of some addon: Obfuscator [Class is Serializeable.]
  113. [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<ZIM.PixelCircleArea> ZIM.InfraredLocate/<>c::<>9__16_1] Because of some addon: Obfuscator [Class is Serializeable.]
  114. [Info][Skip Property] [[Assembly-CSharp]System.Single ZIM.Image.ImgProcessGray::Item] Because of some Addon: .Net Framework [Is 'Item']
  115. [Info][Skip Property] [[Assembly-CSharp]System.Single ZIM.Image.ImgProcessGray::Item] Because of some Addon: .Net Framework [Is 'Item']
  116. [Info][Skip Field] [[Assembly-CSharp]ZIM.Image.ConvEdge/<>c ZIM.Image.ConvEdge/<>c::<>9] Because of some addon: Obfuscator [Class is Serializeable.]
  117. [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.ValueTuple`2<System.Single,o0.Geometry2D.Vector`1<System.Single>>> ZIM.Image.ConvEdge/<>c::<>9__4_0] Because of some addon: Obfuscator [Class is Serializeable.]
  118. [Info][Skip Property] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.Unity.UnityQuadrilateral::Item] Because of some Addon: .Net Framework [Is 'Item']
  119. [Info][Skip Field] [[Assembly-CSharp]System.Int32 o0.Project.ColorChannel::value__] Because of some addon: .Net Framework [Is value__.]
  120. [Info][Skip Field] [[Assembly-CSharp]o0.Project.Extension/<>c o0.Project.Extension/<>c::<>9] Because of some addon: Obfuscator [Class is Serializeable.]
  121. [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.ValueTuple`2<System.Int32,System.Int32>> o0.Project.Extension/<>c::<>9__11_2] Because of some addon: Obfuscator [Class is Serializeable.]
  122. [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.ValueTuple`2<System.Int32,System.Int32>> o0.Project.Extension/<>c::<>9__11_3] Because of some addon: Obfuscator [Class is Serializeable.]
  123. [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.ValueTuple`2<System.Int32,System.Int32>> o0.Project.Extension/<>c::<>9__11_4] Because of some addon: Obfuscator [Class is Serializeable.]
  124. [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.ValueTuple`2<System.Int32,System.Int32>> o0.Project.Extension/<>c::<>9__11_5] Because of some addon: Obfuscator [Class is Serializeable.]
  125. [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.ValueTuple`4<o0.Geometry2D.Float.Line,System.Single,System.Single,System.Single>> o0.Project.Extension/<>c::<>9__15_3] Because of some addon: Obfuscator [Class is Serializeable.]
  126. [Info][Skip Field] [[Assembly-CSharp]System.Func`3<System.Int32,System.Int32,System.Single> o0.Project.Extension/<>c::<>9__15_2] Because of some addon: Obfuscator [Class is Serializeable.]
  127. [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.ValueTuple`3<o0.Geometry2D.Float.Line,System.Single,System.Single>> o0.Project.Extension/<>c::<>9__15_0] Because of some addon: Obfuscator [Class is Serializeable.]
  128. [Info][Skip Field] [[Assembly-CSharp]System.Func`4<System.Single,System.Single,System.Single,System.Single> o0.Project.Extension/<>c::<>9__18_0] Because of some addon: Obfuscator [Class is Serializeable.]
  129. [Info][Skip Field] [[Assembly-CSharp]System.Func`4<System.Single,System.Single,System.Single,System.Single> o0.Project.Extension/<>c::<>9__19_0] Because of some addon: Obfuscator [Class is Serializeable.]
  130. [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.ValueTuple`2<System.Single,o0.Geometry2D.Float.Vector>> o0.Project.Extension/<>c::<>9__23_1] Because of some addon: Obfuscator [Class is Serializeable.]
  131. [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.ValueTuple`2<System.Single,o0.Geometry2D.Float.Line>> o0.Project.Extension/<>c::<>9__25_1] Because of some addon: Obfuscator [Class is Serializeable.]
  132. [Info][Skip Field] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c o0.Project.InfraredIdentification/<>c::<>9] Because of some addon: Obfuscator [Class is Serializeable.]
  133. [Info][Skip Field] [[Assembly-CSharp]System.Func`3<System.Int32,System.Int32,System.Single> o0.Project.InfraredIdentification/<>c::<>9__9_4] Because of some addon: Obfuscator [Class is Serializeable.]
  134. [Info][Skip Field] [[Assembly-CSharp]System.Func`3<System.Int32,System.Int32,System.Single> o0.Project.InfraredIdentification/<>c::<>9__9_5] Because of some addon: Obfuscator [Class is Serializeable.]
  135. [Info][Skip Field] [[Assembly-CSharp]System.Func`3<System.Int32,System.Int32,System.Single> o0.Project.InfraredIdentification/<>c::<>9__9_6] Because of some addon: Obfuscator [Class is Serializeable.]
  136. [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.Single> o0.Project.InfraredIdentification/<>c::<>9__14_0] Because of some addon: Obfuscator [Class is Serializeable.]
  137. [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.Single> o0.Project.InfraredIdentification/<>c::<>9__14_1] Because of some addon: Obfuscator [Class is Serializeable.]
  138. [Info][Skip Field] [[Assembly-CSharp]System.Comparison`1<System.Single> o0.Project.InfraredIdentification/<>c::<>9__14_2] Because of some addon: Obfuscator [Class is Serializeable.]
  139. [Info][Skip Field] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c o0.Project.ScreenIdentification/<>c::<>9] Because of some addon: Obfuscator [Class is Serializeable.]
  140. [Info][Skip Field] [[Assembly-CSharp]System.Func`3<System.Int32,System.Int32,System.Single> o0.Project.ScreenIdentification/<>c::<>9__33_1] Because of some addon: Obfuscator [Class is Serializeable.]
  141. [Info][Process] Finished Step: Analyse Members
  142. [Info][Process] Processing Step: Analyse Methods
  143. [Info][Analyse] [Assembly-CSharp] Analyse Types...
  144. [Info][Skip Method] [[Assembly-CSharp]BombChild::Update()] Because of some Addon: Unity [Is Editor Method.]
  145. [Info][Skip Method] [[Assembly-CSharp]BombChild::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  146. [Info][Skip Method] [[Assembly-CSharp]Box::Start()] Because of some Addon: Unity [Is Unity Method.]
  147. [Info][Skip Method] [[Assembly-CSharp]Box::Update()] Because of some Addon: Unity [Is Editor Method.]
  148. [Info][Skip Method] [[Assembly-CSharp]Box::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  149. [Info][Skip Method] [[Assembly-CSharp]FPSTester::Update()] Because of some Addon: Unity [Is Editor Method.]
  150. [Info][Skip Method] [[Assembly-CSharp]FPSTester::OnGUI()] Because of some Addon: Unity [Is Editor Method.]
  151. [Info][Skip Method] [[Assembly-CSharp]FPSTester::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  152. [Info][Skip Method] [[Assembly-CSharp]GameBootListener::OnRuntimeMethodLoad()] Because of some Addon: .Net Framework [Has RuntimeInitializeOnLoadMethodAttribute.]
  153. [Info][Skip Method] [[Assembly-CSharp]GameBootListener::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  154. [Info][Skip Method] [[Assembly-CSharp]GameController::Start()] Because of some Addon: Unity [Is Unity Method.]
  155. [Info][Skip Method] [[Assembly-CSharp]GameController::Update()] Because of some Addon: Unity [Is Editor Method.]
  156. [Info][Skip Method] [[Assembly-CSharp]GameController::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  157. [Info][Skip Method] [[Assembly-CSharp]GameCrossHair::Start()] Because of some Addon: Unity [Is Unity Method.]
  158. [Info][Skip Method] [[Assembly-CSharp]GameCrossHair::Update()] Because of some Addon: Unity [Is Editor Method.]
  159. [Info][Skip Method] [[Assembly-CSharp]GameCrossHair::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  160. [Info][Skip Method] [[Assembly-CSharp]GameMode::Start()] Because of some Addon: Unity [Is Unity Method.]
  161. [Info][Skip Method] [[Assembly-CSharp]GameMode::Update()] Because of some Addon: Unity [Is Editor Method.]
  162. [Info][Skip Method] [[Assembly-CSharp]GameMode::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  163. [Info][Skip Method] [[Assembly-CSharp]o0WebCamera::Start()] Because of some Addon: Unity [Is Unity Method.]
  164. [Info][Skip Method] [[Assembly-CSharp]o0WebCamera::Update()] Because of some Addon: Unity [Is Editor Method.]
  165. [Info][Skip Method] [[Assembly-CSharp]o0WebCamera::OnClick_Open()] Because of some Addon: Gui or Animation method
  166. [Info][Skip Method] [[Assembly-CSharp]o0WebCamera::OnClick_Close()] Because of some Addon: Gui or Animation method
  167. [Info][Skip Method] [[Assembly-CSharp]o0WebCamera::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  168. [Info][Skip Method] [[Assembly-CSharp]o0WebCamera::.cctor()] Because of some Addon: .Net Framework [Is Special.]
  169. [Info][Skip Method] [[Assembly-CSharp]InfraredLocateTest::Update()] Because of some Addon: Unity [Is Editor Method.]
  170. [Info][Skip Method] [[Assembly-CSharp]InfraredLocateTest::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  171. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass14_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  172. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass18_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  173. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine>d__18::.ctor([netstandard]System.Int32)] Because of some Addon: .Net Framework [Is Special.]
  174. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine>d__18::MoveNext()] Because of some Addon: .Net Framework [Is Special.]
  175. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass19_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  176. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::.ctor([netstandard]System.Int32)] Because of some Addon: .Net Framework [Is Special.]
  177. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::MoveNext()] Because of some Addon: .Net Framework [Is Special.]
  178. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass20_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  179. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::.ctor([netstandard]System.Int32)] Because of some Addon: .Net Framework [Is Special.]
  180. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::MoveNext()] Because of some Addon: .Net Framework [Is Special.]
  181. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass21_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  182. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass21_1::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  183. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld::Start()] Because of some Addon: Unity [Is Unity Method.]
  184. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld::Update()] Because of some Addon: Unity [Is Editor Method.]
  185. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld::DoScreenLocate()] Because of some Addon: Gui or Animation method
  186. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  187. [Info][Skip Method] [[Assembly-CSharp]TestLineRegression::Start()] Because of some Addon: Unity [Is Unity Method.]
  188. [Info][Skip Method] [[Assembly-CSharp]TestLineRegression::Update()] Because of some Addon: Unity [Is Editor Method.]
  189. [Info][Skip Method] [[Assembly-CSharp]TestLineRegression::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  190. [Info][Skip Method] [[Assembly-CSharp]InfraredSpotSettings::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  191. [Info][Skip Method] [[Assembly-CSharp]ScreenLocate::Awake()] Because of some Addon: Unity [Is Editor Method.]
  192. [Info][Skip Method] [[Assembly-CSharp]ScreenLocate::Start()] Because of some Addon: Unity [Is Unity Method.]
  193. [Info][Skip Method] [[Assembly-CSharp]ScreenLocate::Update()] Because of some Addon: Unity [Is Editor Method.]
  194. [Info][Skip Method] [[Assembly-CSharp]ScreenLocate::BtnScreenLocate()] Because of some Addon: Gui or Animation method
  195. [Info][Skip Method] [[Assembly-CSharp]ScreenLocate::BtnScreenMap()] Because of some Addon: Gui or Animation method
  196. [Info][Skip Method] [[Assembly-CSharp]ScreenLocate::BtnScreenLocateManual()] Because of some Addon: Gui or Animation method
  197. [Info][Skip Method] [[Assembly-CSharp]ScreenLocate::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  198. [Info][Skip Method] [[Assembly-CSharp]ScreenLocate::.cctor()] Because of some Addon: .Net Framework [Is Special.]
  199. [Info][Skip Method] [[Assembly-CSharp]ZIMWebCamera::Start()] Because of some Addon: Unity [Is Unity Method.]
  200. [Info][Skip Method] [[Assembly-CSharp]ZIMWebCamera::Update()] Because of some Addon: Unity [Is Editor Method.]
  201. [Info][Skip Method] [[Assembly-CSharp]ZIMWebCamera::OnClick_Open()] Because of some Addon: Gui or Animation method
  202. [Info][Skip Method] [[Assembly-CSharp]ZIMWebCamera::OnClick_Close()] Because of some Addon: Gui or Animation method
  203. [Info][Skip Method] [[Assembly-CSharp]ZIMWebCamera::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  204. [Info][Skip Method] [[Assembly-CSharp]UnscentedKalmanFilter.UKF::.ctor([netstandard]System.Int32)] Because of some Addon: .Net Framework [Is Special.]
  205. [Info][Skip Method] [[Assembly-CSharp]UnscentedKalmanFilter.UKF::Update([netstandard]System.Double[])] Because of some Addon: Unity [Is Editor Method.]
  206. [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredLocate/<>c::.cctor()] Because of some Addon: .Net Framework [Is Special.]
  207. [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredLocate/<>c::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  208. [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredLocate/<>c__DisplayClass14_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  209. [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredLocate/<>c__DisplayClass16_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  210. [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredLocate::.ctor([Assembly-CSharp]ZIMWebCamera [Assembly-CSharp]o0.Project.ScreenIdentification [Assembly-CSharp]InfraredSpotSettings)] Because of some Addon: .Net Framework [Is Special.]
  211. [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredLocate::Update([UnityEngine.CoreModule]UnityEngine.Color[])] Because of some Addon: Unity [Is Editor Method.]
  212. [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredLocate::.cctor()] Because of some Addon: .Net Framework [Is Special.]
  213. [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredSpot::.ctor([Assembly-CSharp]ZIM.Unity.ScreenMap [Assembly-CSharp]ZIM.InfraredMatch)] Because of some Addon: .Net Framework [Is Special.]
  214. [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredSpot::Reset()] Because of some Addon: Unity [Is Unity Method.]
  215. [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredSpot::Update([Assembly-CSharp]ZIM.PixelSpotArea)] Because of some Addon: Unity [Is Editor Method.]
  216. [Info][Skip Method] [[Assembly-CSharp]ZIM.InfraredSpot::.cctor()] Because of some Addon: .Net Framework [Is Special.]
  217. [Info][Skip Method] [[Assembly-CSharp]ZIM.PixelArea/<>c__DisplayClass15_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  218. [Info][Skip Method] [[Assembly-CSharp]ZIM.PixelArea::.ctor([UnityEngine.CoreModule]UnityEngine.Vector2)] Because of some Addon: .Net Framework [Is Special.]
  219. [Info][Skip Method] [[Assembly-CSharp]ZIM.PixelArea::.ctor([netstandard]System.Collections.Generic.IList`1<[Assembly-CSharp]ZIM.PixelArea>)] Because of some Addon: .Net Framework [Is Special.]
  220. [Info][Skip Method] [[Assembly-CSharp]ZIM.PixelArea::.cctor()] Because of some Addon: .Net Framework [Is Special.]
  221. [Info][Skip Method] [[Assembly-CSharp]ZIM.PixelCircleArea::.ctor([UnityEngine.CoreModule]UnityEngine.Vector2)] Because of some Addon: .Net Framework [Is Special.]
  222. [Info][Skip Method] [[Assembly-CSharp]ZIM.PixelCircleArea::.ctor([netstandard]System.Collections.Generic.IList`1<[Assembly-CSharp]ZIM.PixelCircleArea>)] Because of some Addon: .Net Framework [Is Special.]
  223. [Info][Skip Method] [[Assembly-CSharp]ZIM.PixelSpotArea/<>c__DisplayClass23_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  224. [Info][Skip Method] [[Assembly-CSharp]ZIM.PixelSpotArea::.ctor([UnityEngine.CoreModule]UnityEngine.Vector2 [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] Because of some Addon: .Net Framework [Is Special.]
  225. [Info][Skip Method] [[Assembly-CSharp]ZIM.PixelSpotArea::.ctor([netstandard]System.Collections.Generic.IList`1<[Assembly-CSharp]ZIM.PixelSpotArea>)] Because of some Addon: .Net Framework [Is Special.]
  226. [Info][Skip Method] [[Assembly-CSharp]ZIM.PixelSpotArea::.cctor()] Because of some Addon: .Net Framework [Is Special.]
  227. [Info][Skip Method] [[Assembly-CSharp]ZIM.SimpleLocationEstimation::.ctor([netstandard]System.Single)] Because of some Addon: .Net Framework [Is Special.]
  228. [Info][Skip Method] [[Assembly-CSharp]ZIM.SimpleLocationEstimation::Update([UnityEngine.CoreModule]UnityEngine.Vector2)] Because of some Addon: Unity [Is Editor Method.]
  229. [Info][Skip Method] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass10_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  230. [Info][Skip Method] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass12_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  231. [Info][Skip Method] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass13_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  232. [Info][Skip Method] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  233. [Info][Skip Method] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass9_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  234. [Info][Skip Method] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass10_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  235. [Info][Skip Method] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  236. [Info][Skip Method] [[Assembly-CSharp]ZIM.Image.ImgProcessGray::.ctor([netstandard]System.Single[] [netstandard]System.Int32 [netstandard]System.Int32)] Because of some Addon: .Net Framework [Is Special.]
  237. [Info][Skip Method] [[Assembly-CSharp]ZIM.Image.ConvEdge/<>c::.cctor()] Because of some Addon: .Net Framework [Is Special.]
  238. [Info][Skip Method] [[Assembly-CSharp]ZIM.Image.ConvEdge/<>c::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  239. [Info][Skip Method] [[Assembly-CSharp]ZIM.Image.ConvEdge::.ctor([Assembly-CSharp]ZIM.Image.ImgProcessGray [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.Int32 [netstandard]System.Int32)] Because of some Addon: .Net Framework [Is Special.]
  240. [Info][Skip Method] [[Assembly-CSharp]ZIM.Unity.ScreenMap::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  241. [Info][Skip Method] [[Assembly-CSharp]ZIM.Unity.ScreenMap::.ctor([o0NetLib]o0.Geometry2D.Float.Quadrilateral)] Because of some Addon: .Net Framework [Is Special.]
  242. [Info][Skip Method] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM::.ctor([netstandard]System.Int32 [netstandard]System.Int32 [UnityEngine.CoreModule]UnityEngine.TextureFormat [netstandard]System.Boolean)] Because of some Addon: .Net Framework [Is Special.]
  243. [Info][Skip Method] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM::.ctor([UnityEngine.CoreModule]UnityEngine.Texture2D)] Because of some Addon: .Net Framework [Is Special.]
  244. [Info][Skip Method] [[Assembly-CSharp]ZIM.Unity.UnityQuadrilateral::.ctor([UnityEngine.CoreModule]UnityEngine.Vector2 [UnityEngine.CoreModule]UnityEngine.Vector2 [UnityEngine.CoreModule]UnityEngine.Vector2 [UnityEngine.CoreModule]UnityEngine.Vector2)] Because of some Addon: .Net Framework [Is Special.]
  245. [Info][Skip Method] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::.ctor([o0NetLib]o0.Geometry2D.Float.Quadrilateral [o0NetLib]o0.Geometry2D.Float.Quadrilateral)] Because of some Addon: .Net Framework [Is Special.]
  246. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass0_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  247. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass1_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  248. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass2_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  249. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass3_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  250. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass4_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  251. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass5_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  252. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass6_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  253. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass7_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  254. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass8_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  255. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass9_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  256. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass10_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  257. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::.ctor([netstandard]System.Int32)] Because of some Addon: .Net Framework [Is Special.]
  258. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::MoveNext()] Because of some Addon: .Net Framework [Is Special.]
  259. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass11_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  260. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c::.cctor()] Because of some Addon: .Net Framework [Is Special.]
  261. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  262. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass12_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  263. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass15_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  264. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass15_1::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  265. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass19_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  266. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass20_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  267. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass21_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  268. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass22_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  269. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass23_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  270. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass24_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  271. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass25_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  272. [Info][Skip Method] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  273. [Info][Skip Method] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_1::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  274. [Info][Skip Method] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_2::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  275. [Info][Skip Method] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c::.cctor()] Because of some Addon: .Net Framework [Is Special.]
  276. [Info][Skip Method] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  277. [Info][Skip Method] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass14_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  278. [Info][Skip Method] [[Assembly-CSharp]o0.Project.InfraredIdentification::.ctor([o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Int32>)] Because of some Addon: .Net Framework [Is Special.]
  279. [Info][Skip Method] [[Assembly-CSharp]o0.Project.InfraredIdentification::Update([UnityEngine.AudioModule]UnityEngine.WebCamTexture)] Because of some Addon: Unity [Is Editor Method.]
  280. [Info][Skip Method] [[Assembly-CSharp]o0.Project.WebCam::.ctor([UnityEngine.AudioModule]UnityEngine.WebCamTexture)] Because of some Addon: .Net Framework [Is Special.]
  281. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Hough/Line::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  282. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass1_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  283. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass2_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  284. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass3_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  285. [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass24_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  286. [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass27_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  287. [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass28_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  288. [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass32_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  289. [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass33_0::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  290. [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c::.cctor()] Because of some Addon: .Net Framework [Is Special.]
  291. [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c::.ctor()] Because of some Addon: .Net Framework [Is Special.]
  292. [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification::.ctor([UnityEngine.AudioModule]UnityEngine.WebCamTexture)] Because of some Addon: .Net Framework [Is Special.]
  293. [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification::.ctor([o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Int32>)] Because of some Addon: .Net Framework [Is Special.]
  294. [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification::Reset()] Because of some Addon: Unity [Is Unity Method.]
  295. [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification::Update([UnityEngine.AudioModule]UnityEngine.WebCamTexture)] Because of some Addon: Unity [Is Editor Method.]
  296. [Info][Skip Method] [[Assembly-CSharp]o0.Project.ScreenIdentification::.cctor()] Because of some Addon: .Net Framework [Is Special.]
  297. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine>d__18::System.IDisposable.Dispose()] Method group is defined extern (in some assembly that gets not obfuscated).
  298. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine>d__18::MoveNext()] Method group is defined extern (in some assembly that gets not obfuscated).
  299. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine>d__18::MoveNext()] Some other method in method group getting skipped.
  300. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine>d__18::System.Collections.IEnumerator.Reset()] Method group is defined extern (in some assembly that gets not obfuscated).
  301. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine>d__18::System.Collections.IEnumerator.get_Current()] Method group is defined extern (in some assembly that gets not obfuscated).
  302. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.IDisposable.Dispose()] Method group is defined extern (in some assembly that gets not obfuscated).
  303. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.IDisposable.Dispose()] Some other method in method group getting skipped.
  304. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::MoveNext()] Method group is defined extern (in some assembly that gets not obfuscated).
  305. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::MoveNext()] Some other method in method group getting skipped.
  306. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.Collections.IEnumerator.Reset()] Method group is defined extern (in some assembly that gets not obfuscated).
  307. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.Collections.IEnumerator.Reset()] Some other method in method group getting skipped.
  308. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.Collections.IEnumerator.get_Current()] Method group is defined extern (in some assembly that gets not obfuscated).
  309. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.Collections.IEnumerator.get_Current()] Some other method in method group getting skipped.
  310. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.IDisposable.Dispose()] Method group is defined extern (in some assembly that gets not obfuscated).
  311. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.IDisposable.Dispose()] Some other method in method group getting skipped.
  312. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::MoveNext()] Method group is defined extern (in some assembly that gets not obfuscated).
  313. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::MoveNext()] Some other method in method group getting skipped.
  314. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.Collections.IEnumerator.Reset()] Method group is defined extern (in some assembly that gets not obfuscated).
  315. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.Collections.IEnumerator.Reset()] Some other method in method group getting skipped.
  316. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.Collections.IEnumerator.get_Current()] Method group is defined extern (in some assembly that gets not obfuscated).
  317. [Info][Skip Method] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.Collections.IEnumerator.get_Current()] Some other method in method group getting skipped.
  318. [Info][Skip Method] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM::Finalize()] Method group is defined extern (in some assembly that gets not obfuscated).
  319. [Info][Skip Method] [[Assembly-CSharp]ZIM.Unity.UnityQuadrilateral::ToString()] Method group is defined extern (in some assembly that gets not obfuscated).
  320. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::System.IDisposable.Dispose()] Method group is defined extern (in some assembly that gets not obfuscated).
  321. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::System.IDisposable.Dispose()] Some other method in method group getting skipped.
  322. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::MoveNext()] Method group is defined extern (in some assembly that gets not obfuscated).
  323. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::MoveNext()] Some other method in method group getting skipped.
  324. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::System.Collections.IEnumerator.Reset()] Method group is defined extern (in some assembly that gets not obfuscated).
  325. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::System.Collections.IEnumerator.Reset()] Some other method in method group getting skipped.
  326. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::System.Collections.IEnumerator.get_Current()] Method group is defined extern (in some assembly that gets not obfuscated).
  327. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::System.Collections.IEnumerator.get_Current()] Some other method in method group getting skipped.
  328. [Info][Skip Method] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::System.Collections.IEnumerable.GetEnumerator()] Method group is defined extern (in some assembly that gets not obfuscated).
  329. [Info][Skip Method] [[Assembly-CSharp]o0.Project.WebCam::Dispose()] Method group is defined extern (in some assembly that gets not obfuscated).
  330. [Info][Skip Method] [[Assembly-CSharp]o0.Project.WebCam::Dispose()] Some other method in method group getting skipped.
  331. [Info][Process] Finished Step: Analyse Methods
  332. [Info][Process] Processing Step: Analyse Unity Types
  333. [Info][Analyse] [Assembly-CSharp] Analyse Unity Types...
  334. [Info][Process] Finished Step: Analyse Unity Types
  335. [Info][Process] Processing Step: Find obfuscated name for Members
  336. [Info][FindName] [Assembly-CSharp] Find Member Names...
  337. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector3 BombChild::velocity] : a
  338. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 Box::bombDivideCount] : b
  339. [Info][Found new Field Name] [[Assembly-CSharp]System.Single Box::boxWidth] : c
  340. [Info][Found new Field Name] [[Assembly-CSharp]System.Single Box::parentHeight] : d
  341. [Info][Found new Field Name] [[Assembly-CSharp]System.Boolean Box::hasBomb] : e
  342. [Info][Found new Field Name] [[Assembly-CSharp]System.Single FPSTester::fpsOutputTime] : f
  343. [Info][Found new Field Name] [[Assembly-CSharp]System.Single FPSTester::frameCount] : g
  344. [Info][Found new Field Name] [[Assembly-CSharp]System.Single FPSTester::fps] : h
  345. [Info][Found new Field Name] [[Assembly-CSharp]System.Single FPSTester::tempDT] : i
  346. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Rect FPSTester::fpsGuiRect] : j
  347. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.GameObject GameController::gameNode] : k
  348. [Info][Found new Field Name] [[Assembly-CSharp]System.Boolean GameController::crossHairIsOn] : l
  349. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0WebCamera::width] : m
  350. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0WebCamera::height] : n
  351. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0WebCamera::fps] : h
  352. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage o0WebCamera::rawImage] : o
  353. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage o0WebCamera::rawImage2] : p
  354. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage o0WebCamera::rawImage3] : q
  355. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage o0WebCamera::rawImage4] : r
  356. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage o0WebCamera::rawImage5] : s
  357. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage o0WebCamera::rawImage6] : t
  358. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.WebCamTexture o0WebCamera::_webCamTexture] : u
  359. [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.InfraredIdentification o0WebCamera::o0InfraredIdentification] : v
  360. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.UI.RawImage> o0WebCamera::DebugImage] : w
  361. [Info][Found new Property Name] [[Assembly-CSharp]UnityEngine.WebCamTexture o0WebCamera::webCamTexture] : a
  362. [Info][Found new Field Name] [[Assembly-CSharp]ZIMWebCamera InfraredLocateTest::webCamera] : x
  363. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.UI.RawImage> InfraredLocateTest::crosshairInCamera] : y
  364. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.Vector2> InfraredLocateTest::<InfraredLocation>k__BackingField] : z
  365. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] InfraredLocateTest::<pixels>k__BackingField] : ba
  366. [Info][Found new Field Name] [[Assembly-CSharp]ZIM.InfraredLocate InfraredLocateTest::infraredLocate] : bb
  367. [Info][Found new Property Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.Vector2> InfraredLocateTest::InfraredLocation] : b
  368. [Info][Found new Property Name] [[Assembly-CSharp]UnityEngine.Color[] InfraredLocateTest::pixels] : c
  369. [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld ScreenLocateTestOld/<>c__DisplayClass14_0::<>4__this] : bc
  370. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] ScreenLocateTestOld/<>c__DisplayClass14_0::pixels] : c
  371. [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld ScreenLocateTestOld/<>c__DisplayClass18_0::<>4__this] : bc
  372. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ScreenLocateTestOld/<>c__DisplayClass18_0::brightness0] : bd
  373. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ScreenLocateTestOld/<>c__DisplayClass18_0::brightness1] : be
  374. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ScreenLocateTestOld/<>c__DisplayClass18_0::brightness2] : bf
  375. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ScreenLocateTestOld/<>c__DisplayClass18_0::brightness3] : bg
  376. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] ScreenLocateTestOld/<>c__DisplayClass18_0::pixelsInScreen] : bh
  377. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ScreenLocateTestOld/<ScreenLocateCorutine>d__18::<>1__state] : bi
  378. [Info][Found new Field Name] [[Assembly-CSharp]System.Object ScreenLocateTestOld/<ScreenLocateCorutine>d__18::<>2__current] : bj
  379. [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld ScreenLocateTestOld/<ScreenLocateCorutine>d__18::<>4__this] : bc
  380. [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass18_0 ScreenLocateTestOld/<ScreenLocateCorutine>d__18::<>8__1] : bk
  381. [Info][Found new Property Name] [[Assembly-CSharp]System.Object ScreenLocateTestOld/<ScreenLocateCorutine>d__18::System.Collections.Generic.IEnumerator<System.Object>.Current] : d
  382. [Info][Found new Property Name] [[Assembly-CSharp]System.Object ScreenLocateTestOld/<ScreenLocateCorutine>d__18::System.Collections.IEnumerator.Current] : e
  383. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] ScreenLocateTestOld/<>c__DisplayClass19_0::BrightnessValue] : bl
  384. [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld ScreenLocateTestOld/<>c__DisplayClass19_0::<>4__this] : bc
  385. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ScreenLocateTestOld/<>c__DisplayClass19_0::brightness0] : bd
  386. [Info][Found new Field Name] [[Assembly-CSharp]System.Nullable`1<System.Int32> ScreenLocateTestOld/<>c__DisplayClass19_0::threshold] : bm
  387. [Info][Found new Field Name] [[Assembly-CSharp]System.Action`1<System.Int32> ScreenLocateTestOld/<>c__DisplayClass19_0::<>9__0] : bn
  388. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<>1__state] : bi
  389. [Info][Found new Field Name] [[Assembly-CSharp]System.Object ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<>2__current] : bj
  390. [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<>4__this] : bc
  391. [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass19_0 ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<>8__1] : bk
  392. [Info][Found new Field Name] [[Assembly-CSharp]System.Single ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<mean0>5__2] : bo
  393. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Texture2D ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<testTexture>5__3] : bp
  394. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<i>5__4] : bq
  395. [Info][Found new Property Name] [[Assembly-CSharp]System.Object ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.Collections.Generic.IEnumerator<System.Object>.Current] : d
  396. [Info][Found new Property Name] [[Assembly-CSharp]System.Object ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.Collections.IEnumerator.Current] : e
  397. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ScreenLocateTestOld/<>c__DisplayClass20_0::sub] : br
  398. [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld ScreenLocateTestOld/<>c__DisplayClass20_0::<>4__this] : bc
  399. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ScreenLocateTestOld/<>c__DisplayClass20_0::brightness0] : bd
  400. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ScreenLocateTestOld/<ScreenTestCoruine>d__20::<>1__state] : bi
  401. [Info][Found new Field Name] [[Assembly-CSharp]System.Object ScreenLocateTestOld/<ScreenTestCoruine>d__20::<>2__current] : bj
  402. [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld ScreenLocateTestOld/<ScreenTestCoruine>d__20::<>4__this] : bc
  403. [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass20_0 ScreenLocateTestOld/<ScreenTestCoruine>d__20::<>8__1] : bk
  404. [Info][Found new Property Name] [[Assembly-CSharp]System.Object ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.Collections.Generic.IEnumerator<System.Object>.Current] : d
  405. [Info][Found new Property Name] [[Assembly-CSharp]System.Object ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.Collections.IEnumerator.Current] : e
  406. [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld ScreenLocateTestOld/<>c__DisplayClass21_0::<>4__this] : bc
  407. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] ScreenLocateTestOld/<>c__DisplayClass21_0::pixelsLast] : bs
  408. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] ScreenLocateTestOld/<>c__DisplayClass21_0::pixelsInScreen] : bh
  409. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.HashSet`1<UnityEngine.Vector2> ScreenLocateTestOld/<>c__DisplayClass21_0::Edge] : bt
  410. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] ScreenLocateTestOld/<>c__DisplayClass21_1::pixelsOut] : bu
  411. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] ScreenLocateTestOld/<>c__DisplayClass21_1::pixelsIn] : bv
  412. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ScreenLocateTestOld/<>c__DisplayClass21_1::n] : bw
  413. [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass21_0 ScreenLocateTestOld/<>c__DisplayClass21_1::CS$<>8__locals1] : bx
  414. [Info][Found new Field Name] [[Assembly-CSharp]System.Action`1<System.Int32> ScreenLocateTestOld/<>c__DisplayClass21_1::<>9__1] : by
  415. [Info][Found new Field Name] [[Assembly-CSharp]ZIMWebCamera ScreenLocateTestOld::webCamera] : x
  416. [Info][Found new Field Name] [[Assembly-CSharp]TMPro.TextMeshProUGUI ScreenLocateTestOld::info] : bz
  417. [Info][Found new Field Name] [[Assembly-CSharp]TMPro.TextMeshProUGUI ScreenLocateTestOld::location] : ca
  418. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocateTestOld::crosshairInScreen] : cb
  419. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocateTestOld::background] : cc
  420. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Transform ScreenLocateTestOld::Screen] : cd
  421. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocateTestOld::testImage] : ce
  422. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocateTestOld::testImage2] : cf
  423. [Info][Found new Field Name] [[Assembly-CSharp]InfraredLocateTest ScreenLocateTestOld::infraredLocateTest] : cg
  424. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Rect ScreenLocateTestOld::canvasRect] : ch
  425. [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Float.Quadrilateral ScreenLocateTestOld::screenQuad] : ci
  426. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ScreenLocateTestOld::record] : cj
  427. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ScreenLocateTestOld::brightnessRecord] : ck
  428. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.Vector2> TestLineRegression::coordsCS] : cl
  429. [Info][Found new Field Name] [[Assembly-CSharp]System.Single InfraredSpotSettings::RadiusThreshold] : cm
  430. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<System.Single> InfraredSpotSettings::data] : cn
  431. [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocate/Mode ScreenLocate/Mode::InfraredLocate] : co
  432. [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocate/Mode ScreenLocate/Mode::ScreenMap] : cp
  433. [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocate/Mode ScreenLocate/Mode::ScreenLocateManual] : cq
  434. [Info][Found new Field Name] [[Assembly-CSharp]ZIM.InfraredSpot[] ScreenLocate::<InfraredSpots>k__BackingField] : cr
  435. [Info][Found new Field Name] [[Assembly-CSharp]ZIMWebCamera ScreenLocate::WebCamera] : cs
  436. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.Text ScreenLocate::Info] : ct
  437. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.RectTransform> ScreenLocate::CrosshairInCamera] : cu
  438. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.RectTransform> ScreenLocate::CrosshairInScreen] : cv
  439. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.RectTransform ScreenLocate::ScreenQuad] : cw
  440. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.Toggle ScreenLocate::SaveToggle] : cx
  441. [Info][Found new Field Name] [[Assembly-CSharp]System.Boolean ScreenLocate::ShowScreenQuad] : cy
  442. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocate::rawImage] : o
  443. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocate::rawImage1] : cz
  444. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocate::rawImage2] : p
  445. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocate::rawImage3] : q
  446. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocate::rawImage4] : r
  447. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocate::rawImage5] : s
  448. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ScreenLocate::FullScreenImage] : da
  449. [Info][Found new Field Name] [[Assembly-CSharp]InfraredSpotSettings ScreenLocate::InfraredSpotSettings] : db
  450. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Texture2D ScreenLocate::DebugScreenImage] : dc
  451. [Info][Found new Field Name] [[Assembly-CSharp]ZIM.InfraredLocate ScreenLocate::infraredLocate] : bb
  452. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.RectTransform ScreenLocate::canvas] : dd
  453. [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocate/Mode ScreenLocate::mode] : de
  454. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.Vector2> ScreenLocate::pointManual] : df
  455. [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.ScreenIdentification ScreenLocate::screenIdentification] : dg
  456. [Info][Found new Field Name] [[Assembly-CSharp]ScreenLocate ScreenLocate::Main] : dh
  457. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.UI.RawImage> ScreenLocate::DebugImage] : w
  458. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.RectTransform ScreenLocate::BackQuad] : di
  459. [Info][Found new Property Name] [[Assembly-CSharp]ZIM.InfraredSpot[] ScreenLocate::InfraredSpots] : f
  460. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIMWebCamera::cameraIndex] : dj
  461. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIMWebCamera::width] : m
  462. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIMWebCamera::height] : n
  463. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIMWebCamera::fps] : h
  464. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.UI.RawImage ZIMWebCamera::rawImage] : o
  465. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.WebCamTexture ZIMWebCamera::_webCamTexture] : u
  466. [Info][Found new Property Name] [[Assembly-CSharp]UnityEngine.WebCamTexture ZIMWebCamera::webCamTexture] : a
  467. [Info][Found new Property Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIMWebCamera::Size] : g
  468. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 UnscentedKalmanFilter.UKF::L] : dk
  469. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 UnscentedKalmanFilter.UKF::m] : dl
  470. [Info][Found new Field Name] [[Assembly-CSharp]System.Double UnscentedKalmanFilter.UKF::alpha] : dm
  471. [Info][Found new Field Name] [[Assembly-CSharp]System.Double UnscentedKalmanFilter.UKF::ki] : dn
  472. [Info][Found new Field Name] [[Assembly-CSharp]System.Double UnscentedKalmanFilter.UKF::beta] : do
  473. [Info][Found new Field Name] [[Assembly-CSharp]System.Double UnscentedKalmanFilter.UKF::lambda] : dp
  474. [Info][Found new Field Name] [[Assembly-CSharp]System.Double UnscentedKalmanFilter.UKF::c] : dq
  475. [Info][Found new Field Name] [[Assembly-CSharp]MathNet.Numerics.LinearAlgebra.Matrix`1<System.Double> UnscentedKalmanFilter.UKF::Wm] : dr
  476. [Info][Found new Field Name] [[Assembly-CSharp]MathNet.Numerics.LinearAlgebra.Matrix`1<System.Double> UnscentedKalmanFilter.UKF::Wc] : ds
  477. [Info][Found new Field Name] [[Assembly-CSharp]MathNet.Numerics.LinearAlgebra.Matrix`1<System.Double> UnscentedKalmanFilter.UKF::x] : dt
  478. [Info][Found new Field Name] [[Assembly-CSharp]MathNet.Numerics.LinearAlgebra.Matrix`1<System.Double> UnscentedKalmanFilter.UKF::P] : du
  479. [Info][Found new Field Name] [[Assembly-CSharp]System.Double UnscentedKalmanFilter.UKF::q] : dv
  480. [Info][Found new Field Name] [[Assembly-CSharp]System.Double UnscentedKalmanFilter.UKF::r] : dw
  481. [Info][Found new Field Name] [[Assembly-CSharp]MathNet.Numerics.LinearAlgebra.Matrix`1<System.Double> UnscentedKalmanFilter.UKF::Q] : dx
  482. [Info][Found new Field Name] [[Assembly-CSharp]MathNet.Numerics.LinearAlgebra.Matrix`1<System.Double> UnscentedKalmanFilter.UKF::R] : dy
  483. [Info][Found new Field Name] [[Assembly-CSharp]ZIM.InfraredMatch ZIM.InfraredMatch::Nomatch] : dz
  484. [Info][Found new Field Name] [[Assembly-CSharp]ZIM.InfraredMatch ZIM.InfraredMatch::Match0] : ea
  485. [Info][Found new Field Name] [[Assembly-CSharp]ZIM.InfraredMatch ZIM.InfraredMatch::Match1] : eb
  486. [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> ZIM.InfraredLocate/<>c__DisplayClass14_0::rectMax] : ec
  487. [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> ZIM.InfraredLocate/<>c__DisplayClass14_0::rectMin] : ed
  488. [Info][Found new Field Name] [[Assembly-CSharp]ZIM.InfraredLocate ZIM.InfraredLocate/<>c__DisplayClass14_0::<>4__this] : bc
  489. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] ZIM.InfraredLocate/<>c__DisplayClass14_0::pixels] : c
  490. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.Vector2> ZIM.InfraredLocate/<>c__DisplayClass14_0::spotPoint] : ee
  491. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.Vector2> ZIM.InfraredLocate/<>c__DisplayClass14_0::brightPoint] : ef
  492. [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> ZIM.InfraredLocate/<>c__DisplayClass16_0::origin] : eg
  493. [Info][Found new Field Name] [[Assembly-CSharp]ZIM.InfraredLocate ZIM.InfraredLocate/<>c__DisplayClass16_0::<>4__this] : bc
  494. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] ZIM.InfraredLocate/<>c__DisplayClass16_0::brightness] : eh
  495. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.Dictionary`2<System.Single,System.Collections.Generic.List`1<UnityEngine.Vector2>> ZIM.InfraredLocate/<>c__DisplayClass16_0::brightPixelDic] : ei
  496. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Rect ZIM.InfraredLocate/<>c__DisplayClass16_0::rect] : ej
  497. [Info][Found new Field Name] [[Assembly-CSharp]System.Object ZIM.InfraredLocate::locker] : ek
  498. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.InfraredLocate::samplingScale] : el
  499. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ZIM.InfraredLocate::spotBrightness] : em
  500. [Info][Found new Field Name] [[Assembly-CSharp]ZIMWebCamera ZIM.InfraredLocate::camera] : en
  501. [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.ScreenIdentification ZIM.InfraredLocate::screenIdentification] : dg
  502. [Info][Found new Field Name] [[Assembly-CSharp]InfraredSpotSettings ZIM.InfraredLocate::infraredSpotSettings] : eo
  503. [Info][Found new Field Name] [[Assembly-CSharp]ZIM.InfraredSpot[] ZIM.InfraredLocate::InfraredSpots] : f
  504. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.InfraredLocate::CheakFrame] : ep
  505. [Info][Found new Field Name] [[Assembly-CSharp]System.Boolean ZIM.InfraredLocate::Infrared12Overlap] : eq
  506. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.InfraredLocate::cheakCounter] : er
  507. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.InfraredSpot::MaxVerifyFailLimit] : es
  508. [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.InfraredSpot::MinVerifyLength] : et
  509. [Info][Found new Field Name] [[Assembly-CSharp]System.Nullable`1<UnityEngine.Vector2> ZIM.InfraredSpot::<Predict>k__BackingField] : eu
  510. [Info][Found new Field Name] [[Assembly-CSharp]ZIM.InfraredMatch ZIM.InfraredSpot::<Match>k__BackingField] : ev
  511. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.InfraredSpot::verifyFailLimit] : ew
  512. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<ZIM.PixelSpotArea> ZIM.InfraredSpot::spots] : ex
  513. [Info][Found new Field Name] [[Assembly-CSharp]ZIM.SimpleLocationEstimation ZIM.InfraredSpot::estimation] : ey
  514. [Info][Found new Field Name] [[Assembly-CSharp]System.Nullable`1<UnityEngine.Vector2> ZIM.InfraredSpot::ScreenLocation] : ez
  515. [Info][Found new Field Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap ZIM.InfraredSpot::screenMap] : fa
  516. [Info][Found new Property Name] [[Assembly-CSharp]System.Nullable`1<UnityEngine.Vector2> ZIM.InfraredSpot::ScreenUV] : h
  517. [Info][Found new Property Name] [[Assembly-CSharp]System.Nullable`1<UnityEngine.Vector2> ZIM.InfraredSpot::CameraLocation] : i
  518. [Info][Found new Property Name] [[Assembly-CSharp]System.Nullable`1<UnityEngine.Vector2> ZIM.InfraredSpot::Predict] : j
  519. [Info][Found new Property Name] [[Assembly-CSharp]ZIM.InfraredMatch ZIM.InfraredSpot::Match] : k
  520. [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> ZIM.PixelArea/<>c__DisplayClass15_0::rectMin] : ed
  521. [Info][Found new Field Name] [[Assembly-CSharp]System.Func`3<System.Int32,System.Int32,System.Int32> ZIM.PixelArea/<>c__DisplayClass15_0::Vector2ToIndex] : fb
  522. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] ZIM.PixelArea/<>c__DisplayClass15_0::pixels] : c
  523. [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> ZIM.PixelArea/<>c__DisplayClass15_0::rectMax] : ec
  524. [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.PixelArea/<>c__DisplayClass15_0::total] : fc
  525. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.PixelArea::gridLength] : fd
  526. [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.PixelArea::angleStep] : fe
  527. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<System.ValueTuple`2<System.Double,System.Double>> ZIM.PixelArea::angleMathList] : ff
  528. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.PixelArea::Center] : fg
  529. [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.PixelArea::MaxRadius] : fh
  530. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.HashSet`1<UnityEngine.Vector2> ZIM.PixelArea::Pixels] : fi
  531. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.HashSet`1<System.ValueTuple`2<System.Int32,System.Int32>> ZIM.PixelArea::grids] : fj
  532. [Info][Found new Property Name] [[Assembly-CSharp]System.Collections.Generic.List`1<System.ValueTuple`2<System.Double,System.Double>> ZIM.PixelArea::AngleMathList] : l
  533. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.PixelCircleArea::Center] : fg
  534. [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.PixelCircleArea::MaxRadius] : fh
  535. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.HashSet`1<UnityEngine.Vector2> ZIM.PixelCircleArea::Pixels] : fi
  536. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.HashSet`1<System.ValueTuple`2<System.Int32,System.Int32>> ZIM.PixelCircleArea::grids] : fj
  537. [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> ZIM.PixelSpotArea/<>c__DisplayClass23_0::rectMin] : ed
  538. [Info][Found new Field Name] [[Assembly-CSharp]System.Func`3<System.Int32,System.Int32,System.Int32> ZIM.PixelSpotArea/<>c__DisplayClass23_0::Vector2ToIndex] : fb
  539. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] ZIM.PixelSpotArea/<>c__DisplayClass23_0::pixels] : c
  540. [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> ZIM.PixelSpotArea/<>c__DisplayClass23_0::rectMax] : ec
  541. [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.PixelSpotArea/<>c__DisplayClass23_0::total] : fc
  542. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.PixelSpotArea::gridLength0] : fk
  543. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.PixelSpotArea::gridLength1] : fl
  544. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.PixelSpotArea::center] : fm
  545. [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.PixelSpotArea::radius] : fn
  546. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.Vector2> ZIM.PixelSpotArea::Pixels0] : fo
  547. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.Vector2> ZIM.PixelSpotArea::Pixels1] : fp
  548. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.HashSet`1<System.ValueTuple`2<System.Int32,System.Int32>> ZIM.PixelSpotArea::grids0] : fq
  549. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.HashSet`1<System.ValueTuple`2<System.Int32,System.Int32>> ZIM.PixelSpotArea::grids1] : fr
  550. [Info][Found new Property Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.PixelSpotArea::Center] : fg
  551. [Info][Found new Property Name] [[Assembly-CSharp]System.Single ZIM.PixelSpotArea::Radius] : m
  552. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.SimpleLocationEstimation::Predict] : j
  553. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.SimpleLocationEstimation::LastLocation] : fs
  554. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.SimpleLocationEstimation::LastSpeed] : ft
  555. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.SimpleLocationEstimation::LastAcc] : fu
  556. [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.SimpleLocationEstimation::AccChangeScale] : fv
  557. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.Vector2> ZIM.SimpleLocationEstimation::Locations] : fw
  558. [Info][Found new Field Name] [[Assembly-CSharp]UnscentedKalmanFilter.UKF ZIM.SimpleLocationEstimation::filterx] : fx
  559. [Info][Found new Field Name] [[Assembly-CSharp]UnscentedKalmanFilter.UKF ZIM.SimpleLocationEstimation::filtery] : fy
  560. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] ZIM.Extension/<>c__DisplayClass10_0::p] : fz
  561. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] ZIM.Extension/<>c__DisplayClass10_0::pixel] : ga
  562. [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.Extension/<>c__DisplayClass10_0::scale] : gb
  563. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ZIM.Extension/<>c__DisplayClass12_0::p] : fz
  564. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] ZIM.Extension/<>c__DisplayClass12_0::pixel] : ga
  565. [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.Extension/<>c__DisplayClass12_0::scale] : gb
  566. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ZIM.Extension/<>c__DisplayClass13_0::p] : fz
  567. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] ZIM.Extension/<>c__DisplayClass13_0::pixel] : ga
  568. [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.Extension/<>c__DisplayClass13_0::scale] : gb
  569. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] ZIM.Extension/<>c__DisplayClass13_0::pint] : gc
  570. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Extension/<>c__DisplayClass13_0::bit] : gd
  571. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ZIM.Extension/<>c__DisplayClass13_0::D] : ge
  572. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] ZIM.Extension/<>c__DisplayClass13_0::pixelLighted] : gf
  573. [Info][Found new Field Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::<>4__this] : bc
  574. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::half_size] : gg
  575. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::kernel_size] : gh
  576. [Info][Found new Field Name] [[Assembly-CSharp]ZIM.Image.ConvEdge[] ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::edgeArray] : gi
  577. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::conv_width] : gj
  578. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::result] : gk
  579. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::conv_height] : gl
  580. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ZIM.Image.ImgProcessGray/<>c__DisplayClass9_0::p] : fz
  581. [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.Image.ImgProcessGray/<>c__DisplayClass9_0::mean] : gm
  582. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ZIM.Image.ImgProcessGray/<>c__DisplayClass10_0::p] : fz
  583. [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.Image.ImgProcessGray/<>c__DisplayClass10_0::scale] : gb
  584. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::p] : fz
  585. [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::scale] : gb
  586. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::pint] : gc
  587. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::bit] : gd
  588. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::D] : ge
  589. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Image.ImgProcessGray::width] : m
  590. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Image.ImgProcessGray::height] : n
  591. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] ZIM.Image.ImgProcessGray::pixels] : c
  592. [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Vector`1<System.Single> ZIM.Image.ConvEdge::EdgePoint] : gn
  593. [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Vector`1<System.Single> ZIM.Image.ConvEdge::EdgeDirection] : go
  594. [Info][Found new Field Name] [[Assembly-CSharp]System.Single ZIM.Image.ConvEdge::Variance] : gp
  595. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Image.ConvEdge::noiseCount] : gq
  596. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Rect ZIM.Unity.ScreenMap::<QuadRect>k__BackingField] : gr
  597. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.Unity.ScreenMap::<UVSize>k__BackingField] : gs
  598. [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Float.Quadrilateral ZIM.Unity.ScreenMap::quad] : gt
  599. [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform ZIM.Unity.ScreenMap::perspective] : gu
  600. [Info][Found new Property Name] [[Assembly-CSharp]UnityEngine.Rect ZIM.Unity.ScreenMap::QuadRect] : n
  601. [Info][Found new Property Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.Unity.ScreenMap::UVSize] : o
  602. [Info][Found new Property Name] [[Assembly-CSharp]System.Boolean ZIM.Unity.ScreenMap::Active] : p
  603. [Info][Found new Property Name] [[Assembly-CSharp]o0.Geometry2D.Float.Quadrilateral ZIM.Unity.ScreenMap::Quad] : q
  604. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Texture2D ZIM.Unity.Texture2DZIM::Texture] : gv
  605. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Unity.Texture2DZIM::Width] : gw
  606. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 ZIM.Unity.Texture2DZIM::Height] : gx
  607. [Info][Found new Property Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.Unity.Texture2DZIM::Size] : g
  608. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.Unity.UnityQuadrilateral::a] : gy
  609. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.Unity.UnityQuadrilateral::b] : gz
  610. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.Unity.UnityQuadrilateral::c] : dq
  611. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Vector2 ZIM.Unity.UnityQuadrilateral::d] : ha
  612. [Info][Found new Field Name] [[Assembly-CSharp]System.Double[0...,0...] o0.Geometry2D.Float.PerspectiveTransform::H] : hb
  613. [Info][Found new Field Name] [[Assembly-CSharp]System.Double[0...,0...] o0.Geometry2D.Float.PerspectiveTransform::InverseH] : hc
  614. [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.ColorChannel o0.Project.ColorChannel::Red] : hd
  615. [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.ColorChannel o0.Project.ColorChannel::Green] : he
  616. [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.ColorChannel o0.Project.ColorChannel::Blue] : hf
  617. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass0_0::mat] : hg
  618. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.Extension/<>c__DisplayClass0_0::pixel] : ga
  619. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass1_0::mat] : hg
  620. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.Extension/<>c__DisplayClass1_0::pixel] : ga
  621. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.Extension/<>c__DisplayClass2_0::pixel] : ga
  622. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass2_0::ele] : hh
  623. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.Extension/<>c__DisplayClass3_0::pixel] : ga
  624. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.Extension/<>c__DisplayClass3_0::ele] : hh
  625. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass4_0::convolutionWidth] : hi
  626. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass4_0::mat] : hg
  627. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass4_0::conSize] : hj
  628. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass4_0::conArea] : hk
  629. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass4_0::pixelC] : hl
  630. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass5_0::convolutionWidth] : hi
  631. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass5_0::pixelC] : hl
  632. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass5_0::mat] : hg
  633. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass6_0::convolutionWidth] : hi
  634. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass6_0::pixelC] : hl
  635. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass6_0::mat] : hg
  636. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass7_0::convolutionWidth] : hi
  637. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass7_0::mat] : hg
  638. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass7_0::pixelC] : hl
  639. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass8_0::convolutionWidth] : hi
  640. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass8_0::mat] : hg
  641. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass8_0::conSize] : hj
  642. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass8_0::pixelC] : hl
  643. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass8_0::pixelDir] : hm
  644. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass9_0::convolutionWidth] : hi
  645. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass9_0::mat] : hg
  646. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass9_0::conSize] : hj
  647. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass9_0::pixelC] : hl
  648. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass9_0::pixelDir] : hm
  649. [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> o0.Project.Extension/<>c__DisplayClass10_0::start] : hn
  650. [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<>c__DisplayClass10_0::xToYRate] : ho
  651. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<lineSeg>d__10::<>1__state] : bi
  652. [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`4<System.ValueTuple`2<System.Single,System.Single>,System.ValueTuple`2<System.Single,System.Single>,System.Single,System.Single> o0.Project.Extension/<lineSeg>d__10::<>2__current] : bj
  653. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<lineSeg>d__10::<>l__initialThreadId] : hp
  654. [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> o0.Project.Extension/<lineSeg>d__10::start] : hn
  655. [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> o0.Project.Extension/<lineSeg>d__10::<>3__start] : hq
  656. [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<lineSeg>d__10::angle] : hr
  657. [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<lineSeg>d__10::<>3__angle] : hs
  658. [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> o0.Project.Extension/<lineSeg>d__10::end] : ht
  659. [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Int32,System.Int32> o0.Project.Extension/<lineSeg>d__10::<>3__end] : hu
  660. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<lineSeg>d__10::mat] : hg
  661. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<lineSeg>d__10::<>3__mat] : hv
  662. [Info][Found new Field Name] [[Assembly-CSharp]System.Boolean o0.Project.Extension/<lineSeg>d__10::reverseXY] : hw
  663. [Info][Found new Field Name] [[Assembly-CSharp]System.Boolean o0.Project.Extension/<lineSeg>d__10::<>3__reverseXY] : hx
  664. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<lineSeg>d__10::dir] : hy
  665. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<lineSeg>d__10::<>3__dir] : hz
  666. [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<lineSeg>d__10::<graA>5__2] : ia
  667. [Info][Found new Field Name] [[Assembly-CSharp]System.Func`2<System.Single,System.Single> o0.Project.Extension/<lineSeg>d__10::<xToYFunc>5__3] : ib
  668. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<lineSeg>d__10::<A1>5__4] : ic
  669. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<lineSeg>d__10::<B1>5__5] : id
  670. [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<lineSeg>d__10::<Sum1>5__6] : ie
  671. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<lineSeg>d__10::<A2>5__7] : if
  672. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<lineSeg>d__10::<B2>5__8] : ig
  673. [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<lineSeg>d__10::<Sum2>5__9] : ih
  674. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<lineSeg>d__10::<x>5__10] : ii
  675. [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<lineSeg>d__10::<C0A>5__11] : ij
  676. [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<lineSeg>d__10::<C1A>5__12] : ik
  677. [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<lineSeg>d__10::<C2A>5__13] : il
  678. [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<lineSeg>d__10::<C3A>5__14] : im
  679. [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<lineSeg>d__10::<CV>5__15] : in
  680. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<lineSeg>d__10::<avaAngle2>5__16] : io
  681. [Info][Found new Property Name] [[Assembly-CSharp]System.ValueTuple`4<System.ValueTuple`2<System.Single,System.Single>,System.ValueTuple`2<System.Single,System.Single>,System.Single,System.Single> o0.Project.Extension/<lineSeg>d__10::System.Collections.Generic.IEnumerator<((System.Single,System.Single),(System.Single,System.Single),System.Single,System.Single)>.Current] : r
  682. [Info][Found new Property Name] [[Assembly-CSharp]System.Object o0.Project.Extension/<lineSeg>d__10::System.Collections.IEnumerator.Current] : e
  683. [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Vector`1<System.Single> o0.Project.Extension/<>c__DisplayClass11_0::polarSpaceStep] : ip
  684. [Info][Found new Field Name] [[Assembly-CSharp]o0.SortedList`1<System.ValueTuple`2<System.Int32,System.Single>> o0.Project.Extension/<>c__DisplayClass11_0::maxGraIndex] : iq
  685. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass11_0::dir] : hy
  686. [Info][Found new Field Name] [[Assembly-CSharp]System.Double o0.Project.Extension/<>c__DisplayClass11_0::avaAngle] : ir
  687. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass11_0::mat] : hg
  688. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass11_0::polarSpace] : is
  689. [Info][Found new Field Name] [[Assembly-CSharp]o0.Matrix2D`1<System.Collections.Generic.List`1<System.ValueTuple`2<System.Int32,System.Int32>>> o0.Project.Extension/<>c__DisplayClass11_0::sourcePos] : it
  690. [Info][Found new Field Name] [[Assembly-CSharp]o0.SortedList`1<System.ValueTuple`2<System.Int32,System.Single>> o0.Project.Extension/<>c__DisplayClass11_0::maxPolarIndex] : iu
  691. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass11_0::minLineSegLength] : iv
  692. [Info][Found new Field Name] [[Assembly-CSharp]o0.Matrix2D`1<System.ValueTuple`2<o0.Geometry2D.Line`1<System.Single>,System.Single>> o0.Project.Extension/<>c__DisplayClass11_0::lineSegMat] : iw
  693. [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Float.Vector o0.Project.Extension/<>c__DisplayClass12_0::start] : hn
  694. [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<>c__DisplayClass12_0::xToYRate] : ho
  695. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass15_0::gradientValueMat] : ix
  696. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass15_0::gradientDirMat] : iy
  697. [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Float.Vector o0.Project.Extension/<>c__DisplayClass15_0::maxVector] : iz
  698. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass15_0::matBuffer] : ja
  699. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<System.ValueTuple`4<o0.Geometry2D.Float.Line,System.Single,System.Single,System.Single>> o0.Project.Extension/<>c__DisplayClass15_1::lines] : jb
  700. [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass15_0 o0.Project.Extension/<>c__DisplayClass15_1::CS$<>8__locals1] : bx
  701. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass19_0::newMatElement] : jc
  702. [Info][Found new Field Name] [[Assembly-CSharp]System.Func`4<System.Single,System.Single,System.Single,System.Single> o0.Project.Extension/<>c__DisplayClass19_0::map] : jd
  703. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass19_0::pixel] : ga
  704. [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<>c__DisplayClass19_0::minC] : je
  705. [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<>c__DisplayClass19_0::maxC] : jf
  706. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass20_0::convolutionWidth] : hi
  707. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass20_0::mat] : hg
  708. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass20_0::conSize] : hj
  709. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass20_0::pixelC] : hl
  710. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass20_0::pixelDir] : hm
  711. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass21_0::convolutionWidth] : hi
  712. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass21_0::mat] : hg
  713. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass21_0::conSize] : hj
  714. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass21_0::conSizeLevel] : jg
  715. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass21_0::pixelC] : hl
  716. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass21_0::pixelDir] : hm
  717. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass22_0::convolutionWidth] : hi
  718. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass22_0::mat] : hg
  719. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass22_0::conSize] : hj
  720. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass22_0::sampleCount] : jh
  721. [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<o0.Geometry2D.Float.Vector,o0.Geometry2D.Float.Vector>[] o0.Project.Extension/<>c__DisplayClass22_0::samples] : ji
  722. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass22_0::scales] : jj
  723. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass22_0::pixelC] : hl
  724. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass22_0::pixelDir] : hm
  725. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] o0.Project.Extension/<>c__DisplayClass22_0::angles] : jk
  726. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass23_0::convolutionWidth] : hi
  727. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass23_0::mat] : hg
  728. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Extension/<>c__DisplayClass23_0::conSize] : hj
  729. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass23_0::pixelC] : hl
  730. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass23_0::pixelDir] : hm
  731. [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Float.Vector o0.Project.Extension/<>c__DisplayClass24_0::start] : hn
  732. [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Extension/<>c__DisplayClass24_0::xToYRate] : ho
  733. [Info][Found new Field Name] [[Assembly-CSharp]o0.MatrixF2D o0.Project.Extension/<>c__DisplayClass25_0::screenLocateMat] : jl
  734. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Extension/<>c__DisplayClass25_0::valueSumsColumn] : jm
  735. [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Float.Vector[] o0.Project.Extension/<>c__DisplayClass25_0::avgPointsColumn] : jn
  736. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.InfraredIdentification/<>c__DisplayClass9_0::pixel] : ga
  737. [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.InfraredIdentification o0.Project.InfraredIdentification/<>c__DisplayClass9_0::<>4__this] : bc
  738. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.InfraredIdentification/<>c__DisplayClass9_1::pixel] : ga
  739. [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.InfraredIdentification o0.Project.InfraredIdentification/<>c__DisplayClass9_1::<>4__this] : bc
  740. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.InfraredIdentification/<>c__DisplayClass9_2::newPixel] : jo
  741. [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_1 o0.Project.InfraredIdentification/<>c__DisplayClass9_2::CS$<>8__locals1] : bx
  742. [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.InfraredIdentification/<>c__DisplayClass14_0::mapToMin] : jp
  743. [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.InfraredIdentification/<>c__DisplayClass14_0::mapToMax] : jq
  744. [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Vector`1<System.Int32> o0.Project.InfraredIdentification::Size] : g
  745. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.InfraredIdentification::DelayWhite] : jr
  746. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.InfraredIdentification::CaptureWhite] : js
  747. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.InfraredIdentification::DelayBlack] : jt
  748. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.InfraredIdentification::CaptureBlack] : ju
  749. [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry.Vector`1<System.Single>[] o0.Project.InfraredIdentification::ScreenLocateTexture] : jv
  750. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.InfraredIdentification::ScreenCaptureCount] : jw
  751. [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry.Vector`1<System.Single> o0.Project.InfraredIdentification::LastMin] : jx
  752. [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry.Vector`1<System.Single> o0.Project.InfraredIdentification::LastMax] : jy
  753. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.WebCamTexture o0.Project.WebCam::webCam] : jz
  754. [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Vector`1<System.Single> o0.Project.Hough/Line::<A>k__BackingField] : ka
  755. [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Vector`1<System.Single> o0.Project.Hough/Line::<B>k__BackingField] : kb
  756. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<o0.Geometry2D.Vector`1<System.Single>> o0.Project.Hough/Line::Points] : kc
  757. [Info][Found new Property Name] [[Assembly-CSharp]System.Int32 o0.Project.Hough/Line::PointsCount] : s
  758. [Info][Found new Property Name] [[Assembly-CSharp]System.Single o0.Project.Hough/Line::Length] : t
  759. [Info][Found new Property Name] [[Assembly-CSharp]o0.Geometry2D.Vector`1<System.Single> o0.Project.Hough/Line::A] : u
  760. [Info][Found new Property Name] [[Assembly-CSharp]o0.Geometry2D.Vector`1<System.Single> o0.Project.Hough/Line::B] : v
  761. [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.Hough/Line[0...,0...] o0.Project.Hough/<>c__DisplayClass1_0::Acumulator] : kd
  762. [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Single,System.Single>[] o0.Project.Hough/<>c__DisplayClass1_0::TrigValues] : ke
  763. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<System.ValueTuple`2<System.Int32,System.Int32>> o0.Project.Hough/<>c__DisplayClass1_0::Bright] : kf
  764. [Info][Found new Field Name] [[Assembly-CSharp]System.Double o0.Project.Hough/<>c__DisplayClass1_0::rho] : kg
  765. [Info][Found new Field Name] [[Assembly-CSharp]System.ValueTuple`2<System.Single,System.Single>[] o0.Project.Hough/<>c__DisplayClass2_0::result] : gk
  766. [Info][Found new Field Name] [[Assembly-CSharp]System.Double o0.Project.Hough/<>c__DisplayClass2_0::theta] : kh
  767. [Info][Found new Field Name] [[Assembly-CSharp]System.Single[] o0.Project.Hough/<>c__DisplayClass3_0::p] : fz
  768. [Info][Found new Field Name] [[Assembly-CSharp]System.Single o0.Project.Hough/<>c__DisplayClass3_0::scale] : gb
  769. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32[] o0.Project.Hough/<>c__DisplayClass3_0::pint] : gc
  770. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.Hough/<>c__DisplayClass3_0::bit] : gd
  771. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.ScreenIdentification/<>c__DisplayClass24_0::transformWidth] : ki
  772. [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform o0.Project.ScreenIdentification/<>c__DisplayClass24_0::pt] : kj
  773. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.ScreenIdentification/<>c__DisplayClass24_0::dstPixel] : kk
  774. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.ScreenIdentification/<>c__DisplayClass24_0::srcPixel] : kl
  775. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.ScreenIdentification/<>c__DisplayClass24_0::srcWidth] : km
  776. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.ScreenIdentification/<>c__DisplayClass24_0::transformHeight] : kn
  777. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.ScreenIdentification/<>c__DisplayClass27_0::pixel] : ga
  778. [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.ScreenIdentification o0.Project.ScreenIdentification/<>c__DisplayClass27_0::<>4__this] : bc
  779. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.ScreenIdentification/<>c__DisplayClass28_0::pixel] : ga
  780. [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.ScreenIdentification o0.Project.ScreenIdentification/<>c__DisplayClass28_0::<>4__this] : bc
  781. [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.ScreenIdentification o0.Project.ScreenIdentification/<>c__DisplayClass32_0::<>4__this] : bc
  782. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.ScreenIdentification/<>c__DisplayClass32_0::differPixel] : ko
  783. [Info][Found new Field Name] [[Assembly-CSharp]o0.Project.ScreenIdentification o0.Project.ScreenIdentification/<>c__DisplayClass33_0::<>4__this] : bc
  784. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Color[] o0.Project.ScreenIdentification/<>c__DisplayClass33_0::differPixel] : ko
  785. [Info][Found new Field Name] [[Assembly-CSharp]UnityEngine.Rect[][] o0.Project.ScreenIdentification::LocateAreaData] : kp
  786. [Info][Found new Field Name] [[Assembly-CSharp]System.Boolean o0.Project.ScreenIdentification::LocateDebug] : kq
  787. [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry2D.Vector`1<System.Int32> o0.Project.ScreenIdentification::<Size>k__BackingField] : kr
  788. [Info][Found new Field Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap o0.Project.ScreenIdentification::Screen] : cd
  789. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.ScreenIdentification::capture] : ks
  790. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.ScreenIdentification::delay] : kt
  791. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.ScreenIdentification::maxCapture] : ku
  792. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.ScreenIdentification::maxDelay] : kv
  793. [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry.Vector`1<System.Single>[] o0.Project.ScreenIdentification::ScreenBlackTexture] : kw
  794. [Info][Found new Field Name] [[Assembly-CSharp]o0.Geometry.Vector`1<System.Single>[] o0.Project.ScreenIdentification::ScreenWhiteTexture] : kx
  795. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.ScreenIdentification::locateIndex] : ky
  796. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<UnityEngine.Rect> o0.Project.ScreenIdentification::locateArea] : kz
  797. [Info][Found new Field Name] [[Assembly-CSharp]System.Int32 o0.Project.ScreenIdentification::areaSelected] : la
  798. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<System.Single> o0.Project.ScreenIdentification::sumTemp] : lb
  799. [Info][Found new Field Name] [[Assembly-CSharp]System.Collections.Generic.List`1<o0.Geometry2D.Float.Quadrilateral> o0.Project.ScreenIdentification::quadTemp] : lc
  800. [Info][Found new Property Name] [[Assembly-CSharp]o0.Geometry2D.Vector`1<System.Int32> o0.Project.ScreenIdentification::Size] : g
  801. [Info][Found new Property Name] [[Assembly-CSharp]System.Single o0.Project.ScreenIdentification::areaPercent] : w
  802. [Info][Found new Field Name] [[Assembly-CSharp]<PrivateImplementationDetails>/__StaticArrayInitTypeSize=12 <PrivateImplementationDetails>::88EF9688D5D01ED45017CCAE288BB412F1F7A5AEA07137F1FD32BBF2881C1E8D] : ld
  803. [Info][Found new Field Name] [[Assembly-CSharp]<PrivateImplementationDetails>/__StaticArrayInitTypeSize=12 <PrivateImplementationDetails>::C23888948D5D7B6E79F08608B60ADABEB993DB51B3DC234DF30B048900281DA6] : le
  804. [Info][Found new Field Name] [[Assembly-CSharp]<PrivateImplementationDetails>/__StaticArrayInitTypeSize=12 <PrivateImplementationDetails>::E0B0515FD8FCCF5A5AE5989BCA39F0D176479B9F19F4FAC1BCA94E2748E4FF5A] : lf
  805. [Info][Process] Finished Step: Find obfuscated name for Members
  806. [Info][Process] Processing Step: Find obfuscated name for Methods
  807. [Info][FindName] [Assembly-CSharp] Find Method Names...
  808. [Info][Found new Method Name] [[Assembly-CSharp]Box::Bomb()] : a
  809. [Info][Found new Method Name] [[Assembly-CSharp]o0WebCamera::get_webCamTexture()] : b
  810. [Info][Found new Method Name] [[Assembly-CSharp]o0WebCamera::DebugTexture([netstandard]System.Int32 [UnityEngine.CoreModule]UnityEngine.Texture)] : c
  811. [Info][Found new Method Name] [[Assembly-CSharp]o0WebCamera::SetScreen([netstandard]System.Nullable`1<[UnityEngine.CoreModule]UnityEngine.Color>)] : d
  812. [Info][Found new Method Name] [[Assembly-CSharp]InfraredLocateTest::get_InfraredLocation()] : e
  813. [Info][Found new Method Name] [[Assembly-CSharp]InfraredLocateTest::set_InfraredLocation([netstandard]System.Collections.Generic.List`1<[UnityEngine.CoreModule]UnityEngine.Vector2>)] : f
  814. [Info][Found new Method Name] [[Assembly-CSharp]InfraredLocateTest::get_pixels()] : g
  815. [Info][Found new Method Name] [[Assembly-CSharp]InfraredLocateTest::set_pixels([UnityEngine.CoreModule]UnityEngine.Color[])] : h
  816. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass14_0::<Update>b__0([netstandard]System.Int32)] : i
  817. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass18_0::<ScreenLocateCorutine>b__0([netstandard]System.Int32)] : j
  818. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine>d__18::System.Collections.Generic.IEnumerator<System.Object>.get_Current()] : k
  819. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass19_0::<ScreenLocateCorutine2>b__0([netstandard]System.Int32)] : l
  820. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.Collections.Generic.IEnumerator<System.Object>.get_Current()] : m
  821. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass20_0::<ScreenTestCoruine>b__0([netstandard]System.Int32)] : n
  822. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.Collections.Generic.IEnumerator<System.Object>.get_Current()] : o
  823. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass21_0::<PixlesProcessToEdge>b__0([netstandard]System.Int32)] : p
  824. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass21_1::<PixlesProcessToEdge>b__1([netstandard]System.Int32)] : q
  825. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld::SavePng([netstandard]System.String [UnityEngine.CoreModule]UnityEngine.Color[])] : r
  826. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld::SavePngFloat([netstandard]System.String [netstandard]System.Single[] [netstandard]System.Int32)] : s
  827. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld::ScreenLocateCorutine()] : t
  828. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld::ScreenLocateCorutine2()] : u
  829. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld::ScreenTestCoruine()] : v
  830. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld::PixlesProcessToEdge([netstandard]System.Int32[])] : w
  831. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld::Conv2DAverageInt([netstandard]System.Int32[] [UnityEngine.CoreModule]UnityEngine.Vector2Int [netstandard]System.Int32 [netstandard]System.Int32)] : x
  832. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocateTestOld::EdgeCalculation([netstandard]System.Int32[] [UnityEngine.CoreModule]UnityEngine.Vector2Int [netstandard]System.Int32)] : y
  833. [Info][Found new Method Name] [[Assembly-CSharp]InfraredSpotSettings::UpdateThreshold([netstandard]System.Single)] : z
  834. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocate::get_InfraredSpots()] : ba
  835. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocate::set_InfraredSpots([Assembly-CSharp]ZIM.InfraredSpot[])] : bb
  836. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocate::DebugTexture([netstandard]System.Int32 [UnityEngine.CoreModule]UnityEngine.Texture)] : bc
  837. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocate::SetScreen([netstandard]System.Nullable`1<[UnityEngine.CoreModule]UnityEngine.Color>)] : bd
  838. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocate::SetScreen([UnityEngine.CoreModule]UnityEngine.Rect [netstandard]System.Nullable`1<[UnityEngine.CoreModule]UnityEngine.Color>)] : be
  839. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocate::DebugBackQuad([netstandard]System.Nullable`1<[UnityEngine.CoreModule]UnityEngine.Rect>)] : bf
  840. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocate::ShowScreen([o0NetLib]o0.Geometry2D.Float.Quadrilateral)] : bg
  841. [Info][Found new Method Name] [[Assembly-CSharp]ScreenLocate::ToMode([Assembly-CSharp]ScreenLocate/Mode)] : bh
  842. [Info][Found new Method Name] [[Assembly-CSharp]ZIMWebCamera::get_webCamTexture()] : bi
  843. [Info][Found new Method Name] [[Assembly-CSharp]ZIMWebCamera::get_Size()] : bj
  844. [Info][Found new Method Name] [[Assembly-CSharp]ZIMWebCamera::IndexToCoord([netstandard]System.Int32)] : bk
  845. [Info][Found new Method Name] [[Assembly-CSharp]ZIMWebCamera::CoordToIndex([netstandard]System.Int32 [netstandard]System.Int32)] : bl
  846. [Info][Found new Method Name] [[Assembly-CSharp]UnscentedKalmanFilter.UKF::init()] : bm
  847. [Info][Found new Method Name] [[Assembly-CSharp]UnscentedKalmanFilter.UKF::getState()] : bn
  848. [Info][Found new Method Name] [[Assembly-CSharp]UnscentedKalmanFilter.UKF::getCovariance()] : bo
  849. [Info][Found new Method Name] [[Assembly-CSharp]UnscentedKalmanFilter.UKF::UnscentedTransform([MathNet.Numerics]MathNet.Numerics.LinearAlgebra.Matrix`1<[netstandard]System.Double> [MathNet.Numerics]MathNet.Numerics.LinearAlgebra.Matrix`1<[netstandard]System.Double> [MathNet.Numerics]MathNet.Numerics.LinearAlgebra.Matrix`1<[netstandard]System.Double> [netstandard]System.Int32 [MathNet.Numerics]MathNet.Numerics.LinearAlgebra.Matrix`1<[netstandard]System.Double>)] : bp
  850. [Info][Found new Method Name] [[Assembly-CSharp]UnscentedKalmanFilter.UKF::GetSigmaPoints([MathNet.Numerics]MathNet.Numerics.LinearAlgebra.Matrix`1<[netstandard]System.Double> [MathNet.Numerics]MathNet.Numerics.LinearAlgebra.Matrix`1<[netstandard]System.Double> [netstandard]System.Double)] : bq
  851. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate/<>c::<Update>b__13_0([Assembly-CSharp]ZIM.PixelSpotArea [Assembly-CSharp]ZIM.PixelSpotArea)] : br
  852. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate/<>c::<Update>b__13_1([Assembly-CSharp]ZIM.PixelSpotArea [Assembly-CSharp]ZIM.PixelSpotArea)] : bs
  853. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate/<>c::<LocateOld>b__16_1([Assembly-CSharp]ZIM.PixelCircleArea [Assembly-CSharp]ZIM.PixelCircleArea)] : bt
  854. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate/<>c__DisplayClass14_0::<LocateToScreen>b__0([netstandard]System.Int32)] : bu
  855. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate/<>c__DisplayClass14_0::<LocateToScreen>b__1([netstandard]System.Int32)] : bv
  856. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate/<>c__DisplayClass14_0::<LocateToScreen>b__2([netstandard]System.Int32)] : bw
  857. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate/<>c__DisplayClass16_0::<LocateOld>b__0([netstandard]System.Int32)] : bx
  858. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate::GetMatches([Assembly-CSharp]ZIM.InfraredMatch)] : by
  859. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate::GetSpot([Assembly-CSharp]ZIM.InfraredMatch)] : bz
  860. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate::LocateToScreen([UnityEngine.CoreModule]UnityEngine.Color[] [UnityEngine.CoreModule]UnityEngine.Rect)] : ca
  861. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate::Get([netstandard]System.Int32[])] : cb
  862. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate::LocateOld([netstandard]System.Int32[] [UnityEngine.CoreModule]UnityEngine.Rect)] : cc
  863. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredLocate::ConvBrightness([netstandard]System.Int32[] [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.Int32)] : cd
  864. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredSpot::get_ScreenUV()] : ce
  865. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredSpot::get_CameraLocation()] : cf
  866. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredSpot::get_Predict()] : cg
  867. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredSpot::set_Predict([netstandard]System.Nullable`1<[UnityEngine.CoreModule]UnityEngine.Vector2>)] : ch
  868. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredSpot::get_Match()] : ci
  869. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredSpot::set_Match([Assembly-CSharp]ZIM.InfraredMatch)] : cj
  870. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredSpot::Verify([netstandard]System.Collections.Generic.List`1<[Assembly-CSharp]ZIM.PixelSpotArea> [netstandard]System.Collections.Generic.Dictionary`2<[Assembly-CSharp]ZIM.InfraredMatch,[Assembly-CSharp]ZIM.PixelSpotArea>)] : ck
  871. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.InfraredSpot::UpdateByPredict()] : cl
  872. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelArea/<>c__DisplayClass15_0::<TotalBrightness>b__0([netstandard]System.Int32)] : cm
  873. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelArea::GetGrid([UnityEngine.CoreModule]UnityEngine.Vector2)] : cn
  874. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelArea::get_AngleMathList()] : co
  875. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelArea::Include([netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : cp
  876. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelArea::Add([UnityEngine.CoreModule]UnityEngine.Vector2)] : cq
  877. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelArea::Add([UnityEngine.CoreModule]UnityEngine.Vector2 [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : cr
  878. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelArea::TotalBrightness([UnityEngine.CoreModule]UnityEngine.Color[] [netstandard]System.Func`3<[netstandard]System.Int32,[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.Int32)] : cs
  879. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelCircleArea::Include([netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : ct
  880. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelCircleArea::Add([UnityEngine.CoreModule]UnityEngine.Vector2)] : cu
  881. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelCircleArea::Add([UnityEngine.CoreModule]UnityEngine.Vector2 [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : cv
  882. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelCircleArea::CircleBrightness([netstandard]System.Single& [netstandard]System.Int32[] [netstandard]System.Func`4<[netstandard]System.Int32[],[netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>,[netstandard]System.Int32,[netstandard]System.Single> [netstandard]System.Int32)] : cw
  883. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea/<>c__DisplayClass23_0::<TotalBrightness>b__0([netstandard]System.Int32)] : cx
  884. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::GetGrid0([UnityEngine.CoreModule]UnityEngine.Vector2)] : cy
  885. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::GetGrid1([UnityEngine.CoreModule]UnityEngine.Vector2)] : cz
  886. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::Cluster([netstandard]System.Collections.Generic.List`1<[UnityEngine.CoreModule]UnityEngine.Vector2> [netstandard]System.Collections.Generic.List`1<[UnityEngine.CoreModule]UnityEngine.Vector2> [netstandard]System.Func`2<[UnityEngine.CoreModule]UnityEngine.Vector2,[netstandard]System.Boolean>)] : da
  887. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::get_Center()] : db
  888. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::set_Radius([netstandard]System.Single)] : dc
  889. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::get_Radius()] : dd
  890. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::Include0([netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : de
  891. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::Include1([netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : df
  892. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::Join([UnityEngine.CoreModule]UnityEngine.Vector2)] : dg
  893. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::Join([UnityEngine.CoreModule]UnityEngine.Vector2 [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : dh
  894. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::Add([UnityEngine.CoreModule]UnityEngine.Vector2)] : di
  895. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.PixelSpotArea::TotalBrightness([UnityEngine.CoreModule]UnityEngine.Color[] [netstandard]System.Func`3<[netstandard]System.Int32,[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.Int32)] : dj
  896. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.ZIMMath::DegreeToXAxis([o0NetLib]o0.Geometry2D.Float.Vector)] : dk
  897. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass10_0::<zimAutoLightSimple>b__0([netstandard]System.Int32)] : dl
  898. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass12_0::<zimAutoLight>b__0([netstandard]System.Int32)] : dm
  899. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass12_0::<zimAutoLight>b__1([netstandard]System.Int32)] : dn
  900. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass13_0::<zimAutoLevelEqualization>b__0([netstandard]System.Int32)] : do
  901. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass13_0::<zimAutoLevelEqualization>b__1([netstandard]System.Int32)] : dp
  902. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass13_0::<zimAutoLevelEqualization>b__2([netstandard]System.Int32)] : dq
  903. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass13_0::<zimAutoLevelEqualization>b__3([netstandard]System.Int32)] : dr
  904. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass13_0::<zimAutoLevelEqualization>b__4([netstandard]System.Int32)] : ds
  905. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::UnityVector([o0NetLib]o0.Geometry2D.Float.Vector)] : dt
  906. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::o0Vector([UnityEngine.CoreModule]UnityEngine.Vector2)] : du
  907. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::LengthManhattan([UnityEngine.CoreModule]UnityEngine.Vector2)] : dv
  908. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::Brightness([UnityEngine.CoreModule]UnityEngine.Color)] : dw
  909. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::Brightness([UnityEngine.CoreModule]UnityEngine.Color [netstandard]System.Int32)] : dx
  910. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::pixelToLocalPosition_AnchorCenter([UnityEngine.CoreModule]UnityEngine.Vector2 [UnityEngine.CoreModule]UnityEngine.Vector2 [UnityEngine.CoreModule]UnityEngine.Rect)] : dy
  911. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::pixelToLocalPosition_AnchorCenter([UnityEngine.CoreModule]UnityEngine.Vector2 [o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Int32> [UnityEngine.CoreModule]UnityEngine.Rect)] : dz
  912. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::IsInScreen([o0NetLib]o0.Geometry2D.Float.Quadrilateral [UnityEngine.CoreModule]UnityEngine.Vector2)] : ea
  913. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::DegreeToXAxis([UnityEngine.CoreModule]UnityEngine.Vector2)] : eb
  914. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::zimAutoLightSimple([UnityEngine.AudioModule]UnityEngine.WebCamTexture)] : ec
  915. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::zimAutoLightSimple([UnityEngine.CoreModule]UnityEngine.Color[] [netstandard]System.Int32 [netstandard]System.Int32)] : ed
  916. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::zimAutoLight([UnityEngine.AudioModule]UnityEngine.WebCamTexture)] : ee
  917. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::zimAutoLight([UnityEngine.CoreModule]UnityEngine.Color[] [netstandard]System.Int32 [netstandard]System.Int32)] : ef
  918. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Extension::zimAutoLevelEqualization([UnityEngine.AudioModule]UnityEngine.WebCamTexture [netstandard]System.Int32)] : eg
  919. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::<FindLines>b__0([netstandard]System.Int32)] : eh
  920. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass9_0::<SigmodAdjust>b__0([netstandard]System.Int32)] : ei
  921. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass10_0::<LevelAdjust>b__0([netstandard]System.Int32)] : ej
  922. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::<LevelEqualization>b__0([netstandard]System.Int32)] : ek
  923. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::<LevelEqualization>b__1([netstandard]System.Int32)] : el
  924. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::<LevelEqualization>b__2([netstandard]System.Int32)] : em
  925. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray::FindLines()] : en
  926. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray::SigmodAdjust([netstandard]System.Single[])] : eo
  927. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray::LevelAdjust([netstandard]System.Single[])] : ep
  928. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray::LevelEqualization([netstandard]System.Single[] [netstandard]System.Int32)] : eq
  929. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ConvEdge/<>c::<.ctor>b__4_0([netstandard]System.ValueTuple`2<[netstandard]System.Single,[o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Single>> [netstandard]System.ValueTuple`2<[netstandard]System.Single,[o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Single>>)] : er
  930. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ConvEdge::AreaOfPoint([o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Single>)] : es
  931. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Image.ConvEdge::GetEdgeDirection([o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Single> [o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Single>)] : et
  932. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::get_QuadRect()] : eu
  933. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::set_QuadRect([UnityEngine.CoreModule]UnityEngine.Rect)] : ev
  934. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::get_UVSize()] : ew
  935. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::set_UVSize([UnityEngine.CoreModule]UnityEngine.Vector2)] : ex
  936. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::get_Active()] : ey
  937. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::get_Quad()] : ez
  938. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::set_Quad([o0NetLib]o0.Geometry2D.Float.Quadrilateral)] : fa
  939. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::UVInScreen([UnityEngine.CoreModule]UnityEngine.Vector2)] : fb
  940. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::UVNormalize([UnityEngine.CoreModule]UnityEngine.Vector2)] : fc
  941. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::TransformToScreen([UnityEngine.CoreModule]UnityEngine.Vector2)] : fd
  942. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap::TransformToCamera([UnityEngine.CoreModule]UnityEngine.Vector2)] : fe
  943. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM::get_Size()] : ff
  944. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM::ReadPixels([UnityEngine.CoreModule]UnityEngine.RenderTexture)] : fg
  945. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM::GetPixels()] : fh
  946. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM::IndexToCoord([netstandard]System.Int32)] : fi
  947. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM::CoordToIndex([netstandard]System.Int32 [netstandard]System.Int32)] : fj
  948. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM::op_Implicit([Assembly-CSharp]ZIM.Unity.Texture2DZIM)] : fk
  949. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM::op_Implicit([Assembly-CSharp]ZIM.Unity.Texture2DZIM)] : fl
  950. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.UnityQuadrilateral::IsInScreen([UnityEngine.CoreModule]UnityEngine.Vector2)] : fm
  951. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.UnityQuadrilateral::InterpolationFactors([UnityEngine.CoreModule]UnityEngine.Vector2)] : fn
  952. [Info][Found new Method Name] [[Assembly-CSharp]ZIM.Unity.UnityQuadrilateral::Fit([netstandard]System.Collections.Generic.IEnumerable`1<[UnityEngine.CoreModule]UnityEngine.Vector2> [UnityEngine.CoreModule]UnityEngine.Vector2)] : fo
  953. [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::TransformRound([netstandard]System.Int32 [netstandard]System.Int32)] : fp
  954. [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::Transform([netstandard]System.Single [netstandard]System.Single)] : fq
  955. [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::Transform([netstandard]System.Double [netstandard]System.Double)] : fr
  956. [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::TransformInverse([netstandard]System.Single [netstandard]System.Single)] : fs
  957. [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::TransformInverse([netstandard]System.Double [netstandard]System.Double)] : ft
  958. [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::TransformEstimate([netstandard]System.Double[] [netstandard]System.Double[] [netstandard]System.Double[] [netstandard]System.Double[])] : fu
  959. [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::TransposeMatrix([netstandard]System.Double[])] : fv
  960. [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::ReshapeMatrix([netstandard]System.Double[] [netstandard]System.Int32 [netstandard]System.Int32)] : fw
  961. [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::ReshapeMatrix([netstandard]System.Double[] [netstandard]System.Int32 [netstandard]System.Int32)] : fx
  962. [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::MatrixMultiply([netstandard]System.Double[] [netstandard]System.Double[])] : fy
  963. [Info][Found new Method Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform::MatrixInverse([netstandard]System.Double[])] : fz
  964. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass0_0::<Too0Mat>b__0([netstandard]System.Int32)] : ga
  965. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass0_0::<Too0Mat>b__1([netstandard]System.Int32)] : gb
  966. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass0_0::<Too0Mat>b__2([netstandard]System.Int32)] : gc
  967. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass1_0::<Too0Mat>b__0([netstandard]System.Int32)] : gd
  968. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass1_0::<Too0Mat>b__1([netstandard]System.Int32)] : ge
  969. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass1_0::<Too0Mat>b__2([netstandard]System.Int32)] : gf
  970. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass2_0::<ToTex>b__0([netstandard]System.Int32)] : gg
  971. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass2_0::<ToTex>b__1([netstandard]System.Int32)] : gh
  972. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass2_0::<ToTex>b__2([netstandard]System.Int32)] : gi
  973. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass3_0::<ToRGB>b__0([netstandard]System.Int32)] : gj
  974. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass3_0::<ToRGB>b__1([netstandard]System.Int32)] : gk
  975. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass3_0::<ToRGB>b__2([netstandard]System.Int32)] : gl
  976. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass4_0::<IdentifyEdgeVariance>b__0([netstandard]System.Int32)] : gm
  977. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass5_0::<IdentifyEdgeGradientX>b__0([netstandard]System.Int32)] : gn
  978. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass6_0::<IdentifyEdgeGradientY>b__0([netstandard]System.Int32)] : go
  979. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass7_0::<IdentifyEdgeGradient>b__0([netstandard]System.Int32)] : gp
  980. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass8_0::<IdentifyEdge>b__0([netstandard]System.Int32)] : gq
  981. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass9_0::<IdentifyEdge55GradientFull>b__0([netstandard]System.Int32)] : gr
  982. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass10_0::<lineSeg>b__0([netstandard]System.Single)] : gs
  983. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::System.Collections.Generic.IEnumerator<((System.Single,System.Single),(System.Single,System.Single),System.Single,System.Single)>.get_Current()] : gt
  984. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10::System.Collections.Generic.IEnumerable<((System.Single,System.Single),(System.Single,System.Single),System.Single,System.Single)>.GetEnumerator()] : gu
  985. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass11_0::<IdentifyLine>b__0([netstandard]System.Int32)] : gv
  986. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass11_0::<IdentifyLine>b__1([netstandard]System.Int32)] : gw
  987. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<IdentifyLine>b__11_2([netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : gx
  988. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<IdentifyLine>b__11_3([netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : gy
  989. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<IdentifyLine>b__11_4([netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : gz
  990. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<IdentifyLine>b__11_5([netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32>)] : ha
  991. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<IdentifyLineLSD>b__15_3([netstandard]System.ValueTuple`4<[o0NetLib]o0.Geometry2D.Float.Line,[netstandard]System.Single,[netstandard]System.Single,[netstandard]System.Single> [netstandard]System.ValueTuple`4<[o0NetLib]o0.Geometry2D.Float.Line,[netstandard]System.Single,[netstandard]System.Single,[netstandard]System.Single>)] : hb
  992. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<IdentifyLineLSD>b__15_2([netstandard]System.Int32 [netstandard]System.Int32)] : hc
  993. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<IdentifyLineLSD>b__15_0([netstandard]System.ValueTuple`3<[o0NetLib]o0.Geometry2D.Float.Line,[netstandard]System.Single,[netstandard]System.Single> [netstandard]System.ValueTuple`3<[o0NetLib]o0.Geometry2D.Float.Line,[netstandard]System.Single,[netstandard]System.Single>)] : hd
  994. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<AutoLight>b__18_0([netstandard]System.Single [netstandard]System.Single [netstandard]System.Single)] : he
  995. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<AutoLight>b__19_0([netstandard]System.Single [netstandard]System.Single [netstandard]System.Single)] : hf
  996. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<zimIdentifyEdgeGradientGroup>b__23_1([netstandard]System.ValueTuple`2<[netstandard]System.Single,[o0NetLib]o0.Geometry2D.Float.Vector> [netstandard]System.ValueTuple`2<[netstandard]System.Single,[o0NetLib]o0.Geometry2D.Float.Vector>)] : hg
  997. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c::<IdentifyQuadLSD>b__25_1([netstandard]System.ValueTuple`2<[netstandard]System.Single,[o0NetLib]o0.Geometry2D.Float.Line> [netstandard]System.ValueTuple`2<[netstandard]System.Single,[o0NetLib]o0.Geometry2D.Float.Line>)] : hh
  998. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass12_0::<lineSegGradient>b__0([netstandard]System.Single)] : hi
  999. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass15_1::<IdentifyLineLSD>b__1([netstandard]System.Int32)] : hj
  1000. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass19_0::<AutoLight>b__1([netstandard]System.Int32)] : hk
  1001. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass20_0::<zimIdentifyEdge55GradientFull>b__0([netstandard]System.Int32)] : hl
  1002. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass21_0::<zimIdentifyEdgeGradient45>b__0([netstandard]System.Int32)] : hm
  1003. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass22_0::<zimIdentifyEdgeGradientAny>b__0([netstandard]System.Int32)] : hn
  1004. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass23_0::<zimIdentifyEdgeGradientGroup>b__0([netstandard]System.Int32)] : ho
  1005. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass24_0::<zimLineSegGradient>b__0([netstandard]System.Single)] : hp
  1006. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass25_0::<IdentifyQuadLSD>b__0([netstandard]System.Int32)] : hq
  1007. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::Too0Mat([UnityEngine.AudioModule]UnityEngine.WebCamTexture [Assembly-CSharp]o0.Project.ColorChannel)] : hr
  1008. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::Too0Mat([UnityEngine.CoreModule]UnityEngine.Texture2D [Assembly-CSharp]o0.Project.ColorChannel)] : hs
  1009. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::ToTex([o0NetLib]o0.MatrixF2D [Assembly-CSharp]o0.Project.ColorChannel)] : ht
  1010. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::ToRGB([UnityEngine.CoreModule]UnityEngine.Texture2D [Assembly-CSharp]o0.Project.ColorChannel)] : hu
  1011. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::IdentifyEdgeVariance([o0NetLib]o0.MatrixF2D)] : hv
  1012. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::IdentifyEdgeGradientX([o0NetLib]o0.MatrixF2D)] : hw
  1013. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::IdentifyEdgeGradientY([o0NetLib]o0.MatrixF2D)] : hx
  1014. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::IdentifyEdgeGradient([o0NetLib]o0.MatrixF2D)] : hy
  1015. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::IdentifyEdge([o0NetLib]o0.MatrixF2D)] : hz
  1016. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::IdentifyEdge55GradientFull([o0NetLib]o0.MatrixF2D)] : ia
  1017. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::lineSeg([o0NetLib]o0.MatrixF2D [o0NetLib]o0.MatrixF2D [netstandard]System.Single [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.Boolean)] : ib
  1018. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::IdentifyLine([o0NetLib]o0.MatrixF2D [o0NetLib]o0.MatrixF2D [o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Int32>)] : ic
  1019. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::lineSegGradient([o0NetLib]o0.MatrixF2D [o0NetLib]o0.MatrixF2D [netstandard]System.Single [o0NetLib]o0.Geometry2D.Float.Vector [o0NetLib]o0.Geometry2D.Float.Vector [netstandard]System.Boolean)] : id
  1020. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::lineSegGradient([o0NetLib]o0.MatrixF2D [o0NetLib]o0.MatrixF2D [netstandard]System.Single [o0NetLib]o0.Geometry2D.Float.Vector)] : ie
  1021. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::IdentifyLineLSD([o0NetLib]o0.MatrixF2D [netstandard]System.Single)] : if
  1022. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::IdentifyLineLSD([o0NetLib]o0.MatrixF2D [o0NetLib]o0.MatrixF2D [netstandard]System.Single [netstandard]System.Int32)] : ig
  1023. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::AutoLight([UnityEngine.CoreModule]UnityEngine.Texture2D [netstandard]System.Int32 [netstandard]System.Int32)] : ih
  1024. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::AutoLight([UnityEngine.AudioModule]UnityEngine.WebCamTexture [netstandard]System.Int32 [netstandard]System.Int32)] : ii
  1025. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::AutoLight([UnityEngine.CoreModule]UnityEngine.Color[] [o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Int32> [netstandard]System.Int32 [netstandard]System.Int32)] : ij
  1026. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::AutoLight([o0NetLib]o0.MatrixF2D [netstandard]System.Int32)] : ik
  1027. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::zimIdentifyEdge55GradientFull([o0NetLib]o0.MatrixF2D)] : il
  1028. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::zimIdentifyEdgeGradient45([o0NetLib]o0.MatrixF2D [netstandard]System.Int32)] : im
  1029. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::zimIdentifyEdgeGradientAny([o0NetLib]o0.MatrixF2D [netstandard]System.Int32)] : in
  1030. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::zimIdentifyEdgeGradientGroup([o0NetLib]o0.MatrixF2D [netstandard]System.Int32)] : io
  1031. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::zimLineSegGradient([o0NetLib]o0.MatrixF2D [o0NetLib]o0.MatrixF2D [netstandard]System.Single [o0NetLib]o0.Geometry2D.Float.Vector [o0NetLib]o0.Geometry2D.Float.Vector [netstandard]System.ValueTuple`2<[netstandard]System.Int32,[netstandard]System.Int32> [netstandard]System.Boolean)] : ip
  1032. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Extension::IdentifyQuadLSD([o0NetLib]o0.MatrixF2D [o0NetLib]o0.MatrixF2D [o0NetLib]o0.MatrixF2D [netstandard]System.Collections.Generic.List`1<o0.Geometry2D.Float.Line>& [netstandard]System.Single [netstandard]System.Single)] : iq
  1033. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_0::<Update>b__0([netstandard]System.Int32)] : ir
  1034. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_1::<Update>b__1([netstandard]System.Int32)] : is
  1035. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_2::<Update>b__2([netstandard]System.Int32)] : it
  1036. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_2::<Update>b__3([netstandard]System.Int32)] : iu
  1037. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c::<Update>b__9_4([netstandard]System.Int32 [netstandard]System.Int32)] : iv
  1038. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c::<Update>b__9_5([netstandard]System.Int32 [netstandard]System.Int32)] : iw
  1039. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c::<Update>b__9_6([netstandard]System.Int32 [netstandard]System.Int32)] : ix
  1040. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c::<AutoLight2>b__14_0([netstandard]System.Single [netstandard]System.Single)] : iy
  1041. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c::<AutoLight2>b__14_1([netstandard]System.Single [netstandard]System.Single)] : iz
  1042. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c::<AutoLight2>b__14_2([netstandard]System.Single [netstandard]System.Single)] : ja
  1043. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass14_0::<AutoLight2>b__3([netstandard]System.Single [netstandard]System.Single [netstandard]System.Single)] : jb
  1044. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification::LocateScreen([netstandard]System.Int32 [netstandard]System.Int32)] : jc
  1045. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification::AutoLight2([UnityEngine.CoreModule]UnityEngine.Texture2D [netstandard]System.Boolean)] : jd
  1046. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification::AutoLight2([UnityEngine.AudioModule]UnityEngine.WebCamTexture [netstandard]System.Boolean)] : je
  1047. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.InfraredIdentification::AutoLight2([UnityEngine.CoreModule]UnityEngine.Color[] [netstandard]System.Boolean)] : jf
  1048. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/Line::get_PointsCount()] : jg
  1049. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/Line::get_Length()] : jh
  1050. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/Line::get_A()] : ji
  1051. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/Line::set_A([o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Single>)] : jj
  1052. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/Line::get_B()] : jk
  1053. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/Line::set_B([o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Single>)] : jl
  1054. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/Line::Add([o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Single>)] : jm
  1055. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass1_0::<Lines>b__0([netstandard]System.Int32)] : jn
  1056. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass1_0::<Lines>b__1([netstandard]System.Int32)] : jo
  1057. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass2_0::<GetTrigValues>b__0([netstandard]System.Int32)] : jp
  1058. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass3_0::<GetBrightElements>b__0([netstandard]System.Int32)] : jq
  1059. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass3_0::<GetBrightElements>b__1([netstandard]System.Int32)] : jr
  1060. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough::Transform([o0NetLib]o0.MatrixF2D [netstandard]System.Single [netstandard]System.Int32 [netstandard]System.Double)] : js
  1061. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough::Lines([o0NetLib]o0.MatrixF2D [netstandard]System.Single [netstandard]System.Double [netstandard]System.Double [netstandard]System.Double)] : jt
  1062. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough::GetTrigValues([netstandard]System.Double)] : ju
  1063. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.Hough::GetBrightElements([o0NetLib]o0.MatrixF2D [netstandard]System.Int32 [netstandard]System.Int32)] : jv
  1064. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass24_0::<DebugImage>b__0([netstandard]System.Int32)] : jw
  1065. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass27_0::<CaptureBlack>b__0([netstandard]System.Int32)] : jx
  1066. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass28_0::<CaptureWhite>b__0([netstandard]System.Int32)] : jy
  1067. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass32_0::<GetBrightness>b__0([netstandard]System.Int32)] : jz
  1068. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass33_0::<QuadrilateralFit>b__0([netstandard]System.Int32)] : ka
  1069. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c::<QuadrilateralFit>b__33_1([netstandard]System.Int32 [netstandard]System.Int32)] : kb
  1070. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::get_Size()] : kc
  1071. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::set_Size([o0NetLib]o0.Geometry2D.Vector`1<[netstandard]System.Int32>)] : kd
  1072. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::get_areaPercent()] : ke
  1073. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::LocateScreenManual([o0NetLib]o0.Geometry2D.Float.Quadrilateral)] : kf
  1074. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::LocateScreen([netstandard]System.Int32 [netstandard]System.Int32)] : kg
  1075. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::DebugImage([UnityEngine.CoreModule]UnityEngine.Texture2D)] : kh
  1076. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::NextScreen()] : ki
  1077. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::CaptureBlack([UnityEngine.AudioModule]UnityEngine.WebCamTexture)] : kj
  1078. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::CaptureWhite([UnityEngine.AudioModule]UnityEngine.WebCamTexture)] : kk
  1079. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::CaptureStay([UnityEngine.AudioModule]UnityEngine.WebCamTexture)] : kl
  1080. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::CaptureEnd()] : km
  1081. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::GetBrightness()] : kn
  1082. [Info][Found new Method Name] [[Assembly-CSharp]o0.Project.ScreenIdentification::QuadrilateralFit([UnityEngine.CoreModule]UnityEngine.Texture2D& [UnityEngine.CoreModule]UnityEngine.Texture2D& [UnityEngine.CoreModule]UnityEngine.Texture2D)] : ko
  1083. [Info][Process] Finished Step: Find obfuscated name for Methods
  1084. [Info][Process] Processing Step: Find obfuscated name for Types
  1085. [Info][FindName] [Assembly-CSharp] Find Type Names...
  1086. [Info][Found new Type Name] [[Assembly-CSharp]BombChild] : a
  1087. [Info][Found new Type Name] [[Assembly-CSharp]Box] : b
  1088. [Info][Found new Type Name] [[Assembly-CSharp]FPSTester] : c
  1089. [Info][Found new Type Name] [[Assembly-CSharp]o0WebCamera] : d
  1090. [Info][Found new Type Name] [[Assembly-CSharp]InfraredLocateTest] : e
  1091. [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass14_0] : a
  1092. [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass18_0] : b
  1093. [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine>d__18] : c
  1094. [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass19_0] : d
  1095. [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19] : e
  1096. [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass20_0] : f
  1097. [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20] : g
  1098. [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass21_0] : h
  1099. [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocateTestOld/<>c__DisplayClass21_1] : i
  1100. [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocateTestOld] : f
  1101. [Info][Found new Type Name] [[Assembly-CSharp]TestLineRegression] : g
  1102. [Info][Found new Type Name] [[Assembly-CSharp]InfraredSpotSettings] : h
  1103. [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocate/Mode] : a
  1104. [Info][Found new Type Name] [[Assembly-CSharp]ScreenLocate] : i
  1105. [Info][Found new Type Name] [[Assembly-CSharp]ZIMWebCamera] : j
  1106. [Info][Found new Type Name] [[Assembly-CSharp]UnscentedKalmanFilter.UKF] : k
  1107. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.InfraredMatch] : l
  1108. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.InfraredLocate/<>c__DisplayClass14_0] : b
  1109. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.InfraredLocate/<>c__DisplayClass16_0] : c
  1110. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.InfraredLocate] : m
  1111. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.InfraredSpot] : n
  1112. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.PixelArea/<>c__DisplayClass15_0] : a
  1113. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.PixelArea] : o
  1114. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.PixelCircleArea] : p
  1115. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.PixelSpotArea/<>c__DisplayClass23_0] : a
  1116. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.PixelSpotArea] : q
  1117. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.SimpleLocationEstimation] : r
  1118. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.ZIMMath] : s
  1119. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass10_0] : a
  1120. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass12_0] : b
  1121. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Extension/<>c__DisplayClass13_0] : c
  1122. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Extension] : t
  1123. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0] : a
  1124. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass9_0] : b
  1125. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass10_0] : c
  1126. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0] : d
  1127. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray] : u
  1128. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Image.ConvEdge] : v
  1129. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap] : w
  1130. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM] : x
  1131. [Info][Found new Type Name] [[Assembly-CSharp]ZIM.Unity.UnityQuadrilateral] : y
  1132. [Info][Found new Type Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform] : z
  1133. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.ColorChannel] : ba
  1134. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass0_0] : a
  1135. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass1_0] : b
  1136. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass2_0] : c
  1137. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass3_0] : d
  1138. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass4_0] : e
  1139. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass5_0] : f
  1140. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass6_0] : g
  1141. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass7_0] : h
  1142. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass8_0] : i
  1143. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass9_0] : j
  1144. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass10_0] : k
  1145. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10] : l
  1146. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass11_0] : m
  1147. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass12_0] : o
  1148. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass15_0] : p
  1149. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass15_1] : q
  1150. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass19_0] : r
  1151. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass20_0] : s
  1152. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass21_0] : t
  1153. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass22_0] : u
  1154. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass23_0] : v
  1155. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass24_0] : w
  1156. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension/<>c__DisplayClass25_0] : x
  1157. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Extension] : bb
  1158. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_0] : a
  1159. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_1] : b
  1160. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass9_2] : c
  1161. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.InfraredIdentification/<>c__DisplayClass14_0] : e
  1162. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.InfraredIdentification] : bc
  1163. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.WebCam] : bd
  1164. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Hough/Line] : a
  1165. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass1_0] : b
  1166. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass2_0] : c
  1167. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Hough/<>c__DisplayClass3_0] : d
  1168. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.Hough] : be
  1169. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass24_0] : a
  1170. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass27_0] : b
  1171. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass28_0] : c
  1172. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass32_0] : d
  1173. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.ScreenIdentification/<>c__DisplayClass33_0] : e
  1174. [Info][Found new Type Name] [[Assembly-CSharp]o0.Project.ScreenIdentification] : bf
  1175. [Info][Found new Type Name] [[Assembly-CSharp]<PrivateImplementationDetails>/__StaticArrayInitTypeSize=12] : a
  1176. [Info][Found new Type Name] [[Assembly-CSharp]<PrivateImplementationDetails>] : bg
  1177. [Info][Process] Finished Step: Find obfuscated name for Types
  1178. [Info][Process] Processing Step: Find obfuscated name for Namespaces
  1179. [Info][FindName] [Assembly-CSharp] Find Namespace Names...
  1180. [Info][Found new Namespace Name] [[Assembly-CSharp]BombChild] :
  1181. [Info][Found new Namespace Name] [[Assembly-CSharp]Box] :
  1182. [Info][Found new Namespace Name] [[Assembly-CSharp]FPSTester] :
  1183. [Info][Found new Namespace Name] [[Assembly-CSharp]o0WebCamera] :
  1184. [Info][Found new Namespace Name] [[Assembly-CSharp]InfraredLocateTest] :
  1185. [Info][Found new Namespace Name] [[Assembly-CSharp]ScreenLocateTestOld] :
  1186. [Info][Found new Namespace Name] [[Assembly-CSharp]TestLineRegression] :
  1187. [Info][Found new Namespace Name] [[Assembly-CSharp]InfraredSpotSettings] :
  1188. [Info][Found new Namespace Name] [[Assembly-CSharp]ScreenLocate] :
  1189. [Info][Found new Namespace Name] [[Assembly-CSharp]ZIMWebCamera] :
  1190. [Info][Found new Namespace Name] [[Assembly-CSharp]UnscentedKalmanFilter.UKF] :
  1191. [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.InfraredMatch] :
  1192. [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.InfraredLocate] :
  1193. [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.InfraredSpot] :
  1194. [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.PixelArea] :
  1195. [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.PixelCircleArea] :
  1196. [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.PixelSpotArea] :
  1197. [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.SimpleLocationEstimation] :
  1198. [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.ZIMMath] :
  1199. [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.Extension] :
  1200. [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.Image.ImgProcessGray] :
  1201. [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.Image.ConvEdge] :
  1202. [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.Unity.ScreenMap] :
  1203. [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.Unity.Texture2DZIM] :
  1204. [Info][Found new Namespace Name] [[Assembly-CSharp]ZIM.Unity.UnityQuadrilateral] :
  1205. [Info][Found new Namespace Name] [[Assembly-CSharp]o0.Geometry2D.Float.PerspectiveTransform] :
  1206. [Info][Found new Namespace Name] [[Assembly-CSharp]o0.Project.ColorChannel] :
  1207. [Info][Found new Namespace Name] [[Assembly-CSharp]o0.Project.Extension] :
  1208. [Info][Found new Namespace Name] [[Assembly-CSharp]o0.Project.InfraredIdentification] :
  1209. [Info][Found new Namespace Name] [[Assembly-CSharp]o0.Project.WebCam] :
  1210. [Info][Found new Namespace Name] [[Assembly-CSharp]o0.Project.Hough] :
  1211. [Info][Found new Namespace Name] [[Assembly-CSharp]o0.Project.ScreenIdentification] :
  1212. [Info][Found new Namespace Name] [[Assembly-CSharp]<PrivateImplementationDetails>] :
  1213. [Info][Process] Finished Step: Find obfuscated name for Namespaces
  1214. [Info][Process] Processing Step: Add Not Obfuscated Cause
  1215. [Info][Process] Finished Step: Add Not Obfuscated Cause
  1216. [Info][Process] Processing Step: Rename Unity Types
  1217. [Info][PreRename] [Assembly-CSharp] Check Unity Types and Namespaces...
  1218. [Info][Process] Finished Step: Rename Unity Types
  1219. [Info][Process] Processing Step: Rename Fields
  1220. [Info][Rename] [Assembly-CSharp] Rename Fields...
  1221. [Info][Rename Field] [BombChild::velocity] to a
  1222. [Info][Rename Field] [Box::bombDivideCount] to b
  1223. [Info][Rename Field] [Box::boxWidth] to c
  1224. [Info][Rename Field] [Box::parentHeight] to d
  1225. [Info][Rename Field] [Box::hasBomb] to e
  1226. [Info][Rename Field] [FPSTester::fpsOutputTime] to f
  1227. [Info][Rename Field] [FPSTester::frameCount] to g
  1228. [Info][Rename Field] [FPSTester::fps] to h
  1229. [Info][Rename Field] [FPSTester::tempDT] to i
  1230. [Info][Rename Field] [FPSTester::fpsGuiRect] to j
  1231. [Info][Rename Field] [GameController::gameNode] to k
  1232. [Info][Rename Field] [GameController::crossHairIsOn] to l
  1233. [Info][Rename Field] [o0WebCamera::width] to m
  1234. [Info][Rename Field] [o0WebCamera::height] to n
  1235. [Info][Rename Field] [o0WebCamera::fps] to h
  1236. [Info][Rename Field] [o0WebCamera::rawImage] to o
  1237. [Info][Rename Field] [o0WebCamera::rawImage2] to p
  1238. [Info][Rename Field] [o0WebCamera::rawImage3] to q
  1239. [Info][Rename Field] [o0WebCamera::rawImage4] to r
  1240. [Info][Rename Field] [o0WebCamera::rawImage5] to s
  1241. [Info][Rename Field] [o0WebCamera::rawImage6] to t
  1242. [Info][Rename Field] [o0WebCamera::_webCamTexture] to u
  1243. [Info][Rename Field] [o0WebCamera::o0InfraredIdentification] to v
  1244. [Info][Rename Field] [o0WebCamera::DebugImage] to w
  1245. [Info][Rename Field] [InfraredLocateTest::webCamera] to x
  1246. [Info][Rename Field] [InfraredLocateTest::crosshairInCamera] to y
  1247. [Info][Rename Field] [InfraredLocateTest::<InfraredLocation>k__BackingField] to <z>k__BackingField
  1248. [Info][Rename Field] [InfraredLocateTest::<pixels>k__BackingField] to <ba>k__BackingField
  1249. [Info][Rename Field] [InfraredLocateTest::infraredLocate] to bb
  1250. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass14_0::<>4__this] to bc
  1251. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass14_0::pixels] to c
  1252. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass18_0::<>4__this] to bc
  1253. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass18_0::brightness0] to bd
  1254. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass18_0::brightness1] to be
  1255. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass18_0::brightness2] to bf
  1256. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass18_0::brightness3] to bg
  1257. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass18_0::pixelsInScreen] to bh
  1258. [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine>d__18::<>1__state] to bi
  1259. [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine>d__18::<>2__current] to bj
  1260. [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine>d__18::<>4__this] to bc
  1261. [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine>d__18::<>8__1] to bk
  1262. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass19_0::BrightnessValue] to bl
  1263. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass19_0::<>4__this] to bc
  1264. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass19_0::brightness0] to bd
  1265. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass19_0::threshold] to bm
  1266. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass19_0::<>9__0] to bn
  1267. [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<>1__state] to bi
  1268. [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<>2__current] to bj
  1269. [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<>4__this] to bc
  1270. [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<>8__1] to bk
  1271. [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<mean0>5__2] to bo
  1272. [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<testTexture>5__3] to bp
  1273. [Info][Rename Field] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::<i>5__4] to bq
  1274. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass20_0::sub] to br
  1275. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass20_0::<>4__this] to bc
  1276. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass20_0::brightness0] to bd
  1277. [Info][Rename Field] [ScreenLocateTestOld/<ScreenTestCoruine>d__20::<>1__state] to bi
  1278. [Info][Rename Field] [ScreenLocateTestOld/<ScreenTestCoruine>d__20::<>2__current] to bj
  1279. [Info][Rename Field] [ScreenLocateTestOld/<ScreenTestCoruine>d__20::<>4__this] to bc
  1280. [Info][Rename Field] [ScreenLocateTestOld/<ScreenTestCoruine>d__20::<>8__1] to bk
  1281. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass21_0::<>4__this] to bc
  1282. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass21_0::pixelsLast] to bs
  1283. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass21_0::pixelsInScreen] to bh
  1284. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass21_0::Edge] to bt
  1285. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass21_1::pixelsOut] to bu
  1286. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass21_1::pixelsIn] to bv
  1287. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass21_1::n] to bw
  1288. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass21_1::CS$<>8__locals1] to bx
  1289. [Info][Rename Field] [ScreenLocateTestOld/<>c__DisplayClass21_1::<>9__1] to by
  1290. [Info][Rename Field] [ScreenLocateTestOld::webCamera] to x
  1291. [Info][Rename Field] [ScreenLocateTestOld::info] to bz
  1292. [Info][Rename Field] [ScreenLocateTestOld::location] to ca
  1293. [Info][Rename Field] [ScreenLocateTestOld::crosshairInScreen] to cb
  1294. [Info][Rename Field] [ScreenLocateTestOld::background] to cc
  1295. [Info][Rename Field] [ScreenLocateTestOld::Screen] to cd
  1296. [Info][Rename Field] [ScreenLocateTestOld::testImage] to ce
  1297. [Info][Rename Field] [ScreenLocateTestOld::testImage2] to cf
  1298. [Info][Rename Field] [ScreenLocateTestOld::infraredLocateTest] to cg
  1299. [Info][Rename Field] [ScreenLocateTestOld::canvasRect] to ch
  1300. [Info][Rename Field] [ScreenLocateTestOld::screenQuad] to ci
  1301. [Info][Rename Field] [ScreenLocateTestOld::record] to cj
  1302. [Info][Rename Field] [ScreenLocateTestOld::brightnessRecord] to ck
  1303. [Info][Rename Field] [TestLineRegression::coordsCS] to cl
  1304. [Info][Rename Field] [InfraredSpotSettings::RadiusThreshold] to cm
  1305. [Info][Rename Field] [InfraredSpotSettings::data] to cn
  1306. [Info][Rename Field] [ScreenLocate/Mode::InfraredLocate] to co
  1307. [Info][Rename Field] [ScreenLocate/Mode::ScreenMap] to cp
  1308. [Info][Rename Field] [ScreenLocate/Mode::ScreenLocateManual] to cq
  1309. [Info][Rename Field] [ScreenLocate::<InfraredSpots>k__BackingField] to <cr>k__BackingField
  1310. [Info][Rename Field] [ScreenLocate::WebCamera] to cs
  1311. [Info][Rename Field] [ScreenLocate::Info] to ct
  1312. [Info][Rename Field] [ScreenLocate::CrosshairInCamera] to cu
  1313. [Info][Rename Field] [ScreenLocate::CrosshairInScreen] to cv
  1314. [Info][Rename Field] [ScreenLocate::ScreenQuad] to cw
  1315. [Info][Rename Field] [ScreenLocate::SaveToggle] to cx
  1316. [Info][Rename Field] [ScreenLocate::ShowScreenQuad] to cy
  1317. [Info][Rename Field] [ScreenLocate::rawImage] to o
  1318. [Info][Rename Field] [ScreenLocate::rawImage1] to cz
  1319. [Info][Rename Field] [ScreenLocate::rawImage2] to p
  1320. [Info][Rename Field] [ScreenLocate::rawImage3] to q
  1321. [Info][Rename Field] [ScreenLocate::rawImage4] to r
  1322. [Info][Rename Field] [ScreenLocate::rawImage5] to s
  1323. [Info][Rename Field] [ScreenLocate::FullScreenImage] to da
  1324. [Info][Rename Field] [ScreenLocate::InfraredSpotSettings] to db
  1325. [Info][Rename Field] [ScreenLocate::DebugScreenImage] to dc
  1326. [Info][Rename Field] [ScreenLocate::infraredLocate] to bb
  1327. [Info][Rename Field] [ScreenLocate::canvas] to dd
  1328. [Info][Rename Field] [ScreenLocate::mode] to de
  1329. [Info][Rename Field] [ScreenLocate::pointManual] to df
  1330. [Info][Rename Field] [ScreenLocate::screenIdentification] to dg
  1331. [Info][Rename Field] [ScreenLocate::Main] to dh
  1332. [Info][Rename Field] [ScreenLocate::DebugImage] to w
  1333. [Info][Rename Field] [ScreenLocate::BackQuad] to di
  1334. [Info][Rename Field] [ZIMWebCamera::cameraIndex] to dj
  1335. [Info][Rename Field] [ZIMWebCamera::width] to m
  1336. [Info][Rename Field] [ZIMWebCamera::height] to n
  1337. [Info][Rename Field] [ZIMWebCamera::fps] to h
  1338. [Info][Rename Field] [ZIMWebCamera::rawImage] to o
  1339. [Info][Rename Field] [ZIMWebCamera::_webCamTexture] to u
  1340. [Info][Rename Field] [UnscentedKalmanFilter.UKF::L] to dk
  1341. [Info][Rename Field] [UnscentedKalmanFilter.UKF::m] to dl
  1342. [Info][Rename Field] [UnscentedKalmanFilter.UKF::alpha] to dm
  1343. [Info][Rename Field] [UnscentedKalmanFilter.UKF::ki] to dn
  1344. [Info][Rename Field] [UnscentedKalmanFilter.UKF::beta] to do
  1345. [Info][Rename Field] [UnscentedKalmanFilter.UKF::lambda] to dp
  1346. [Info][Rename Field] [UnscentedKalmanFilter.UKF::c] to dq
  1347. [Info][Rename Field] [UnscentedKalmanFilter.UKF::Wm] to dr
  1348. [Info][Rename Field] [UnscentedKalmanFilter.UKF::Wc] to ds
  1349. [Info][Rename Field] [UnscentedKalmanFilter.UKF::x] to dt
  1350. [Info][Rename Field] [UnscentedKalmanFilter.UKF::P] to du
  1351. [Info][Rename Field] [UnscentedKalmanFilter.UKF::q] to dv
  1352. [Info][Rename Field] [UnscentedKalmanFilter.UKF::r] to dw
  1353. [Info][Rename Field] [UnscentedKalmanFilter.UKF::Q] to dx
  1354. [Info][Rename Field] [UnscentedKalmanFilter.UKF::R] to dy
  1355. [Info][Rename Field] [ZIM.InfraredMatch::Nomatch] to dz
  1356. [Info][Rename Field] [ZIM.InfraredMatch::Match0] to ea
  1357. [Info][Rename Field] [ZIM.InfraredMatch::Match1] to eb
  1358. [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass14_0::rectMax] to ec
  1359. [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass14_0::rectMin] to ed
  1360. [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass14_0::<>4__this] to bc
  1361. [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass14_0::pixels] to c
  1362. [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass14_0::spotPoint] to ee
  1363. [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass14_0::brightPoint] to ef
  1364. [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass16_0::origin] to eg
  1365. [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass16_0::<>4__this] to bc
  1366. [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass16_0::brightness] to eh
  1367. [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass16_0::brightPixelDic] to ei
  1368. [Info][Rename Field] [ZIM.InfraredLocate/<>c__DisplayClass16_0::rect] to ej
  1369. [Info][Rename Field] [ZIM.InfraredLocate::locker] to ek
  1370. [Info][Rename Field] [ZIM.InfraredLocate::samplingScale] to el
  1371. [Info][Rename Field] [ZIM.InfraredLocate::spotBrightness] to em
  1372. [Info][Rename Field] [ZIM.InfraredLocate::camera] to en
  1373. [Info][Rename Field] [ZIM.InfraredLocate::screenIdentification] to dg
  1374. [Info][Rename Field] [ZIM.InfraredLocate::infraredSpotSettings] to eo
  1375. [Info][Rename Field] [ZIM.InfraredLocate::InfraredSpots] to f
  1376. [Info][Rename Field] [ZIM.InfraredLocate::CheakFrame] to ep
  1377. [Info][Rename Field] [ZIM.InfraredLocate::Infrared12Overlap] to eq
  1378. [Info][Rename Field] [ZIM.InfraredLocate::cheakCounter] to er
  1379. [Info][Rename Field] [ZIM.InfraredSpot::MaxVerifyFailLimit] to es
  1380. [Info][Rename Field] [ZIM.InfraredSpot::MinVerifyLength] to et
  1381. [Info][Rename Field] [ZIM.InfraredSpot::<Predict>k__BackingField] to <eu>k__BackingField
  1382. [Info][Rename Field] [ZIM.InfraredSpot::<Match>k__BackingField] to <ev>k__BackingField
  1383. [Info][Rename Field] [ZIM.InfraredSpot::verifyFailLimit] to ew
  1384. [Info][Rename Field] [ZIM.InfraredSpot::spots] to ex
  1385. [Info][Rename Field] [ZIM.InfraredSpot::estimation] to ey
  1386. [Info][Rename Field] [ZIM.InfraredSpot::ScreenLocation] to ez
  1387. [Info][Rename Field] [ZIM.InfraredSpot::screenMap] to fa
  1388. [Info][Rename Field] [ZIM.PixelArea/<>c__DisplayClass15_0::rectMin] to ed
  1389. [Info][Rename Field] [ZIM.PixelArea/<>c__DisplayClass15_0::Vector2ToIndex] to fb
  1390. [Info][Rename Field] [ZIM.PixelArea/<>c__DisplayClass15_0::pixels] to c
  1391. [Info][Rename Field] [ZIM.PixelArea/<>c__DisplayClass15_0::rectMax] to ec
  1392. [Info][Rename Field] [ZIM.PixelArea/<>c__DisplayClass15_0::total] to fc
  1393. [Info][Rename Field] [ZIM.PixelArea::gridLength] to fd
  1394. [Info][Rename Field] [ZIM.PixelArea::angleStep] to fe
  1395. [Info][Rename Field] [ZIM.PixelArea::angleMathList] to ff
  1396. [Info][Rename Field] [ZIM.PixelArea::Center] to fg
  1397. [Info][Rename Field] [ZIM.PixelArea::MaxRadius] to fh
  1398. [Info][Rename Field] [ZIM.PixelArea::Pixels] to fi
  1399. [Info][Rename Field] [ZIM.PixelArea::grids] to fj
  1400. [Info][Rename Field] [ZIM.PixelCircleArea::Center] to fg
  1401. [Info][Rename Field] [ZIM.PixelCircleArea::MaxRadius] to fh
  1402. [Info][Rename Field] [ZIM.PixelCircleArea::Pixels] to fi
  1403. [Info][Rename Field] [ZIM.PixelCircleArea::grids] to fj
  1404. [Info][Rename Field] [ZIM.PixelSpotArea/<>c__DisplayClass23_0::rectMin] to ed
  1405. [Info][Rename Field] [ZIM.PixelSpotArea/<>c__DisplayClass23_0::Vector2ToIndex] to fb
  1406. [Info][Rename Field] [ZIM.PixelSpotArea/<>c__DisplayClass23_0::pixels] to c
  1407. [Info][Rename Field] [ZIM.PixelSpotArea/<>c__DisplayClass23_0::rectMax] to ec
  1408. [Info][Rename Field] [ZIM.PixelSpotArea/<>c__DisplayClass23_0::total] to fc
  1409. [Info][Rename Field] [ZIM.PixelSpotArea::gridLength0] to fk
  1410. [Info][Rename Field] [ZIM.PixelSpotArea::gridLength1] to fl
  1411. [Info][Rename Field] [ZIM.PixelSpotArea::center] to fm
  1412. [Info][Rename Field] [ZIM.PixelSpotArea::radius] to fn
  1413. [Info][Rename Field] [ZIM.PixelSpotArea::Pixels0] to fo
  1414. [Info][Rename Field] [ZIM.PixelSpotArea::Pixels1] to fp
  1415. [Info][Rename Field] [ZIM.PixelSpotArea::grids0] to fq
  1416. [Info][Rename Field] [ZIM.PixelSpotArea::grids1] to fr
  1417. [Info][Rename Field] [ZIM.SimpleLocationEstimation::Predict] to j
  1418. [Info][Rename Field] [ZIM.SimpleLocationEstimation::LastLocation] to fs
  1419. [Info][Rename Field] [ZIM.SimpleLocationEstimation::LastSpeed] to ft
  1420. [Info][Rename Field] [ZIM.SimpleLocationEstimation::LastAcc] to fu
  1421. [Info][Rename Field] [ZIM.SimpleLocationEstimation::AccChangeScale] to fv
  1422. [Info][Rename Field] [ZIM.SimpleLocationEstimation::Locations] to fw
  1423. [Info][Rename Field] [ZIM.SimpleLocationEstimation::filterx] to fx
  1424. [Info][Rename Field] [ZIM.SimpleLocationEstimation::filtery] to fy
  1425. [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass10_0::p] to fz
  1426. [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass10_0::pixel] to ga
  1427. [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass10_0::scale] to gb
  1428. [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass12_0::p] to fz
  1429. [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass12_0::pixel] to ga
  1430. [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass12_0::scale] to gb
  1431. [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass13_0::p] to fz
  1432. [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass13_0::pixel] to ga
  1433. [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass13_0::scale] to gb
  1434. [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass13_0::pint] to gc
  1435. [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass13_0::bit] to gd
  1436. [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass13_0::D] to ge
  1437. [Info][Rename Field] [ZIM.Extension/<>c__DisplayClass13_0::pixelLighted] to gf
  1438. [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::<>4__this] to bc
  1439. [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::half_size] to gg
  1440. [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::kernel_size] to gh
  1441. [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::edgeArray] to gi
  1442. [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::conv_width] to gj
  1443. [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::result] to gk
  1444. [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::conv_height] to gl
  1445. [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass9_0::p] to fz
  1446. [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass9_0::mean] to gm
  1447. [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass10_0::p] to fz
  1448. [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass10_0::scale] to gb
  1449. [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::p] to fz
  1450. [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::scale] to gb
  1451. [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::pint] to gc
  1452. [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::bit] to gd
  1453. [Info][Rename Field] [ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::D] to ge
  1454. [Info][Rename Field] [ZIM.Image.ImgProcessGray::width] to m
  1455. [Info][Rename Field] [ZIM.Image.ImgProcessGray::height] to n
  1456. [Info][Rename Field] [ZIM.Image.ImgProcessGray::pixels] to c
  1457. [Info][Rename Field] [ZIM.Image.ConvEdge::EdgePoint] to gn
  1458. [Info][Rename Field] [ZIM.Image.ConvEdge::EdgeDirection] to go
  1459. [Info][Rename Field] [ZIM.Image.ConvEdge::Variance] to gp
  1460. [Info][Rename Field] [ZIM.Image.ConvEdge::noiseCount] to gq
  1461. [Info][Rename Field] [ZIM.Unity.ScreenMap::<QuadRect>k__BackingField] to <gr>k__BackingField
  1462. [Info][Rename Field] [ZIM.Unity.ScreenMap::<UVSize>k__BackingField] to <gs>k__BackingField
  1463. [Info][Rename Field] [ZIM.Unity.ScreenMap::quad] to gt
  1464. [Info][Rename Field] [ZIM.Unity.ScreenMap::perspective] to gu
  1465. [Info][Rename Field] [ZIM.Unity.Texture2DZIM::Texture] to gv
  1466. [Info][Rename Field] [ZIM.Unity.Texture2DZIM::Width] to gw
  1467. [Info][Rename Field] [ZIM.Unity.Texture2DZIM::Height] to gx
  1468. [Info][Rename Field] [ZIM.Unity.UnityQuadrilateral::a] to gy
  1469. [Info][Rename Field] [ZIM.Unity.UnityQuadrilateral::b] to gz
  1470. [Info][Rename Field] [ZIM.Unity.UnityQuadrilateral::c] to dq
  1471. [Info][Rename Field] [ZIM.Unity.UnityQuadrilateral::d] to ha
  1472. [Info][Rename Field] [o0.Geometry2D.Float.PerspectiveTransform::H] to hb
  1473. [Info][Rename Field] [o0.Geometry2D.Float.PerspectiveTransform::InverseH] to hc
  1474. [Info][Rename Field] [o0.Project.ColorChannel::Red] to hd
  1475. [Info][Rename Field] [o0.Project.ColorChannel::Green] to he
  1476. [Info][Rename Field] [o0.Project.ColorChannel::Blue] to hf
  1477. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass0_0::mat] to hg
  1478. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass0_0::pixel] to ga
  1479. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass1_0::mat] to hg
  1480. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass1_0::pixel] to ga
  1481. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass2_0::pixel] to ga
  1482. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass2_0::ele] to hh
  1483. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass3_0::pixel] to ga
  1484. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass3_0::ele] to hh
  1485. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass4_0::convolutionWidth] to hi
  1486. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass4_0::mat] to hg
  1487. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass4_0::conSize] to hj
  1488. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass4_0::conArea] to hk
  1489. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass4_0::pixelC] to hl
  1490. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass5_0::convolutionWidth] to hi
  1491. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass5_0::pixelC] to hl
  1492. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass5_0::mat] to hg
  1493. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass6_0::convolutionWidth] to hi
  1494. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass6_0::pixelC] to hl
  1495. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass6_0::mat] to hg
  1496. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass7_0::convolutionWidth] to hi
  1497. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass7_0::mat] to hg
  1498. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass7_0::pixelC] to hl
  1499. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass8_0::convolutionWidth] to hi
  1500. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass8_0::mat] to hg
  1501. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass8_0::conSize] to hj
  1502. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass8_0::pixelC] to hl
  1503. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass8_0::pixelDir] to hm
  1504. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass9_0::convolutionWidth] to hi
  1505. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass9_0::mat] to hg
  1506. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass9_0::conSize] to hj
  1507. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass9_0::pixelC] to hl
  1508. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass9_0::pixelDir] to hm
  1509. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass10_0::start] to hn
  1510. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass10_0::xToYRate] to ho
  1511. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<>1__state] to bi
  1512. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<>2__current] to bj
  1513. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<>l__initialThreadId] to hp
  1514. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::start] to hn
  1515. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<>3__start] to hq
  1516. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::angle] to hr
  1517. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<>3__angle] to hs
  1518. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::end] to ht
  1519. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<>3__end] to hu
  1520. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::mat] to hg
  1521. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<>3__mat] to hv
  1522. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::reverseXY] to hw
  1523. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<>3__reverseXY] to hx
  1524. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::dir] to hy
  1525. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<>3__dir] to hz
  1526. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<graA>5__2] to ia
  1527. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<xToYFunc>5__3] to ib
  1528. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<A1>5__4] to ic
  1529. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<B1>5__5] to id
  1530. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<Sum1>5__6] to ie
  1531. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<A2>5__7] to if
  1532. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<B2>5__8] to ig
  1533. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<Sum2>5__9] to ih
  1534. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<x>5__10] to ii
  1535. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<C0A>5__11] to ij
  1536. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<C1A>5__12] to ik
  1537. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<C2A>5__13] to il
  1538. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<C3A>5__14] to im
  1539. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<CV>5__15] to in
  1540. [Info][Rename Field] [o0.Project.Extension/<lineSeg>d__10::<avaAngle2>5__16] to io
  1541. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass11_0::polarSpaceStep] to ip
  1542. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass11_0::maxGraIndex] to iq
  1543. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass11_0::dir] to hy
  1544. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass11_0::avaAngle] to ir
  1545. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass11_0::mat] to hg
  1546. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass11_0::polarSpace] to is
  1547. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass11_0::sourcePos] to it
  1548. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass11_0::maxPolarIndex] to iu
  1549. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass11_0::minLineSegLength] to iv
  1550. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass11_0::lineSegMat] to iw
  1551. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass12_0::start] to hn
  1552. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass12_0::xToYRate] to ho
  1553. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass15_0::gradientValueMat] to ix
  1554. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass15_0::gradientDirMat] to iy
  1555. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass15_0::maxVector] to iz
  1556. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass15_0::matBuffer] to ja
  1557. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass15_1::lines] to jb
  1558. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass15_1::CS$<>8__locals1] to bx
  1559. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass19_0::newMatElement] to jc
  1560. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass19_0::map] to jd
  1561. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass19_0::pixel] to ga
  1562. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass19_0::minC] to je
  1563. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass19_0::maxC] to jf
  1564. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass20_0::convolutionWidth] to hi
  1565. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass20_0::mat] to hg
  1566. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass20_0::conSize] to hj
  1567. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass20_0::pixelC] to hl
  1568. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass20_0::pixelDir] to hm
  1569. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass21_0::convolutionWidth] to hi
  1570. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass21_0::mat] to hg
  1571. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass21_0::conSize] to hj
  1572. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass21_0::conSizeLevel] to jg
  1573. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass21_0::pixelC] to hl
  1574. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass21_0::pixelDir] to hm
  1575. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass22_0::convolutionWidth] to hi
  1576. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass22_0::mat] to hg
  1577. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass22_0::conSize] to hj
  1578. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass22_0::sampleCount] to jh
  1579. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass22_0::samples] to ji
  1580. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass22_0::scales] to jj
  1581. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass22_0::pixelC] to hl
  1582. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass22_0::pixelDir] to hm
  1583. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass22_0::angles] to jk
  1584. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass23_0::convolutionWidth] to hi
  1585. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass23_0::mat] to hg
  1586. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass23_0::conSize] to hj
  1587. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass23_0::pixelC] to hl
  1588. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass23_0::pixelDir] to hm
  1589. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass24_0::start] to hn
  1590. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass24_0::xToYRate] to ho
  1591. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass25_0::screenLocateMat] to jl
  1592. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass25_0::valueSumsColumn] to jm
  1593. [Info][Rename Field] [o0.Project.Extension/<>c__DisplayClass25_0::avgPointsColumn] to jn
  1594. [Info][Rename Field] [o0.Project.InfraredIdentification/<>c__DisplayClass9_0::pixel] to ga
  1595. [Info][Rename Field] [o0.Project.InfraredIdentification/<>c__DisplayClass9_0::<>4__this] to bc
  1596. [Info][Rename Field] [o0.Project.InfraredIdentification/<>c__DisplayClass9_1::pixel] to ga
  1597. [Info][Rename Field] [o0.Project.InfraredIdentification/<>c__DisplayClass9_1::<>4__this] to bc
  1598. [Info][Rename Field] [o0.Project.InfraredIdentification/<>c__DisplayClass9_2::newPixel] to jo
  1599. [Info][Rename Field] [o0.Project.InfraredIdentification/<>c__DisplayClass9_2::CS$<>8__locals1] to bx
  1600. [Info][Rename Field] [o0.Project.InfraredIdentification/<>c__DisplayClass14_0::mapToMin] to jp
  1601. [Info][Rename Field] [o0.Project.InfraredIdentification/<>c__DisplayClass14_0::mapToMax] to jq
  1602. [Info][Rename Field] [o0.Project.InfraredIdentification::Size] to g
  1603. [Info][Rename Field] [o0.Project.InfraredIdentification::DelayWhite] to jr
  1604. [Info][Rename Field] [o0.Project.InfraredIdentification::CaptureWhite] to js
  1605. [Info][Rename Field] [o0.Project.InfraredIdentification::DelayBlack] to jt
  1606. [Info][Rename Field] [o0.Project.InfraredIdentification::CaptureBlack] to ju
  1607. [Info][Rename Field] [o0.Project.InfraredIdentification::ScreenLocateTexture] to jv
  1608. [Info][Rename Field] [o0.Project.InfraredIdentification::ScreenCaptureCount] to jw
  1609. [Info][Rename Field] [o0.Project.InfraredIdentification::LastMin] to jx
  1610. [Info][Rename Field] [o0.Project.InfraredIdentification::LastMax] to jy
  1611. [Info][Rename Field] [o0.Project.WebCam::webCam] to jz
  1612. [Info][Rename Field] [o0.Project.Hough/Line::<A>k__BackingField] to <ka>k__BackingField
  1613. [Info][Rename Field] [o0.Project.Hough/Line::<B>k__BackingField] to <kb>k__BackingField
  1614. [Info][Rename Field] [o0.Project.Hough/Line::Points] to kc
  1615. [Info][Rename Field] [o0.Project.Hough/<>c__DisplayClass1_0::Acumulator] to kd
  1616. [Info][Rename Field] [o0.Project.Hough/<>c__DisplayClass1_0::TrigValues] to ke
  1617. [Info][Rename Field] [o0.Project.Hough/<>c__DisplayClass1_0::Bright] to kf
  1618. [Info][Rename Field] [o0.Project.Hough/<>c__DisplayClass1_0::rho] to kg
  1619. [Info][Rename Field] [o0.Project.Hough/<>c__DisplayClass2_0::result] to gk
  1620. [Info][Rename Field] [o0.Project.Hough/<>c__DisplayClass2_0::theta] to kh
  1621. [Info][Rename Field] [o0.Project.Hough/<>c__DisplayClass3_0::p] to fz
  1622. [Info][Rename Field] [o0.Project.Hough/<>c__DisplayClass3_0::scale] to gb
  1623. [Info][Rename Field] [o0.Project.Hough/<>c__DisplayClass3_0::pint] to gc
  1624. [Info][Rename Field] [o0.Project.Hough/<>c__DisplayClass3_0::bit] to gd
  1625. [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass24_0::transformWidth] to ki
  1626. [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass24_0::pt] to kj
  1627. [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass24_0::dstPixel] to kk
  1628. [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass24_0::srcPixel] to kl
  1629. [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass24_0::srcWidth] to km
  1630. [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass24_0::transformHeight] to kn
  1631. [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass27_0::pixel] to ga
  1632. [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass27_0::<>4__this] to bc
  1633. [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass28_0::pixel] to ga
  1634. [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass28_0::<>4__this] to bc
  1635. [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass32_0::<>4__this] to bc
  1636. [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass32_0::differPixel] to ko
  1637. [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass33_0::<>4__this] to bc
  1638. [Info][Rename Field] [o0.Project.ScreenIdentification/<>c__DisplayClass33_0::differPixel] to ko
  1639. [Info][Rename Field] [o0.Project.ScreenIdentification::LocateAreaData] to kp
  1640. [Info][Rename Field] [o0.Project.ScreenIdentification::LocateDebug] to kq
  1641. [Info][Rename Field] [o0.Project.ScreenIdentification::<Size>k__BackingField] to <kr>k__BackingField
  1642. [Info][Rename Field] [o0.Project.ScreenIdentification::Screen] to cd
  1643. [Info][Rename Field] [o0.Project.ScreenIdentification::capture] to ks
  1644. [Info][Rename Field] [o0.Project.ScreenIdentification::delay] to kt
  1645. [Info][Rename Field] [o0.Project.ScreenIdentification::maxCapture] to ku
  1646. [Info][Rename Field] [o0.Project.ScreenIdentification::maxDelay] to kv
  1647. [Info][Rename Field] [o0.Project.ScreenIdentification::ScreenBlackTexture] to kw
  1648. [Info][Rename Field] [o0.Project.ScreenIdentification::ScreenWhiteTexture] to kx
  1649. [Info][Rename Field] [o0.Project.ScreenIdentification::locateIndex] to ky
  1650. [Info][Rename Field] [o0.Project.ScreenIdentification::locateArea] to kz
  1651. [Info][Rename Field] [o0.Project.ScreenIdentification::areaSelected] to la
  1652. [Info][Rename Field] [o0.Project.ScreenIdentification::sumTemp] to lb
  1653. [Info][Rename Field] [o0.Project.ScreenIdentification::quadTemp] to lc
  1654. [Info][Rename Field] [<PrivateImplementationDetails>::88EF9688D5D01ED45017CCAE288BB412F1F7A5AEA07137F1FD32BBF2881C1E8D] to ld
  1655. [Info][Rename Field] [<PrivateImplementationDetails>::C23888948D5D7B6E79F08608B60ADABEB993DB51B3DC234DF30B048900281DA6] to le
  1656. [Info][Rename Field] [<PrivateImplementationDetails>::E0B0515FD8FCCF5A5AE5989BCA39F0D176479B9F19F4FAC1BCA94E2748E4FF5A] to lf
  1657. [Info][Process] Finished Step: Rename Fields
  1658. [Info][Process] Processing Step: Rename Properties and Events
  1659. [Info][Rename] [Assembly-CSharp] Rename Properties and Events...
  1660. [Info][Rename Property] [o0WebCamera::webCamTexture] to a
  1661. [Info][Rename Property] [InfraredLocateTest::InfraredLocation] to b
  1662. [Info][Rename Property] [InfraredLocateTest::pixels] to c
  1663. [Info][Rename Property] [ScreenLocateTestOld/<ScreenLocateCorutine>d__18::System.Collections.Generic.IEnumerator<System.Object>.Current] to d
  1664. [Info][Rename Property] [ScreenLocateTestOld/<ScreenLocateCorutine>d__18::System.Collections.IEnumerator.Current] to e
  1665. [Info][Rename Property] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.Collections.Generic.IEnumerator<System.Object>.Current] to d
  1666. [Info][Rename Property] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.Collections.IEnumerator.Current] to e
  1667. [Info][Rename Property] [ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.Collections.Generic.IEnumerator<System.Object>.Current] to d
  1668. [Info][Rename Property] [ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.Collections.IEnumerator.Current] to e
  1669. [Info][Rename Property] [ScreenLocate::InfraredSpots] to f
  1670. [Info][Rename Property] [ZIMWebCamera::webCamTexture] to a
  1671. [Info][Rename Property] [ZIMWebCamera::Size] to g
  1672. [Info][Rename Property] [ZIM.InfraredSpot::ScreenUV] to h
  1673. [Info][Rename Property] [ZIM.InfraredSpot::CameraLocation] to i
  1674. [Info][Rename Property] [ZIM.InfraredSpot::Predict] to j
  1675. [Info][Rename Property] [ZIM.InfraredSpot::Match] to k
  1676. [Info][Rename Property] [ZIM.PixelArea::AngleMathList] to l
  1677. [Info][Rename Property] [ZIM.PixelSpotArea::Center] to fg
  1678. [Info][Rename Property] [ZIM.PixelSpotArea::Radius] to m
  1679. [Info][Rename Property] [ZIM.Unity.ScreenMap::QuadRect] to n
  1680. [Info][Rename Property] [ZIM.Unity.ScreenMap::UVSize] to o
  1681. [Info][Rename Property] [ZIM.Unity.ScreenMap::Active] to p
  1682. [Info][Rename Property] [ZIM.Unity.ScreenMap::Quad] to q
  1683. [Info][Rename Property] [ZIM.Unity.Texture2DZIM::Size] to g
  1684. [Info][Rename Property] [o0.Project.Extension/<lineSeg>d__10::System.Collections.Generic.IEnumerator<((System.Single,System.Single),(System.Single,System.Single),System.Single,System.Single)>.Current] to r
  1685. [Info][Rename Property] [o0.Project.Extension/<lineSeg>d__10::System.Collections.IEnumerator.Current] to e
  1686. [Info][Rename Property] [o0.Project.Hough/Line::PointsCount] to s
  1687. [Info][Rename Property] [o0.Project.Hough/Line::Length] to t
  1688. [Info][Rename Property] [o0.Project.Hough/Line::A] to u
  1689. [Info][Rename Property] [o0.Project.Hough/Line::B] to v
  1690. [Info][Rename Property] [o0.Project.ScreenIdentification::Size] to g
  1691. [Info][Rename Property] [o0.Project.ScreenIdentification::areaPercent] to w
  1692. [Info][Process] Finished Step: Rename Properties and Events
  1693. [Info][Process] Processing Step: Rename Methods
  1694. [Info][Rename] [Assembly-CSharp] Rename Methods...
  1695. [Info][Rename Method] [Box::Bomb] to a
  1696. [Info][Rename Method] [o0WebCamera::get_webCamTexture] to b
  1697. [Info][Rename Method] [o0WebCamera::DebugTexture] to c
  1698. [Info][Rename Method] [o0WebCamera::SetScreen] to d
  1699. [Info][Rename Method] [InfraredLocateTest::get_InfraredLocation] to e
  1700. [Info][Rename Method] [InfraredLocateTest::set_InfraredLocation] to f
  1701. [Info][Rename Method] [InfraredLocateTest::get_pixels] to g
  1702. [Info][Rename Method] [InfraredLocateTest::set_pixels] to h
  1703. [Info][Rename Method] [ScreenLocateTestOld/<>c__DisplayClass14_0::<Update>b__0] to i
  1704. [Info][Rename Method] [ScreenLocateTestOld/<>c__DisplayClass18_0::<ScreenLocateCorutine>b__0] to j
  1705. [Info][Rename Method] [ScreenLocateTestOld/<ScreenLocateCorutine>d__18::System.Collections.Generic.IEnumerator<System.Object>.get_Current] to k
  1706. [Info][Rename Method] [ScreenLocateTestOld/<>c__DisplayClass19_0::<ScreenLocateCorutine2>b__0] to l
  1707. [Info][Rename Method] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19::System.Collections.Generic.IEnumerator<System.Object>.get_Current] to m
  1708. [Info][Rename Method] [ScreenLocateTestOld/<>c__DisplayClass20_0::<ScreenTestCoruine>b__0] to n
  1709. [Info][Rename Method] [ScreenLocateTestOld/<ScreenTestCoruine>d__20::System.Collections.Generic.IEnumerator<System.Object>.get_Current] to o
  1710. [Info][Rename Method] [ScreenLocateTestOld/<>c__DisplayClass21_0::<PixlesProcessToEdge>b__0] to p
  1711. [Info][Rename Method] [ScreenLocateTestOld/<>c__DisplayClass21_1::<PixlesProcessToEdge>b__1] to q
  1712. [Info][Rename Method] [ScreenLocateTestOld::SavePng] to r
  1713. [Info][Rename Method] [ScreenLocateTestOld::SavePngFloat] to s
  1714. [Info][Rename Method] [ScreenLocateTestOld::ScreenLocateCorutine] to t
  1715. [Info][Rename Method] [ScreenLocateTestOld::ScreenLocateCorutine2] to u
  1716. [Info][Rename Method] [ScreenLocateTestOld::ScreenTestCoruine] to v
  1717. [Info][Rename Method] [ScreenLocateTestOld::PixlesProcessToEdge] to w
  1718. [Info][Rename Method] [ScreenLocateTestOld::Conv2DAverageInt] to x
  1719. [Info][Rename Method] [ScreenLocateTestOld::EdgeCalculation] to y
  1720. [Info][Rename Method] [InfraredSpotSettings::UpdateThreshold] to z
  1721. [Info][Rename Method] [ScreenLocate::get_InfraredSpots] to ba
  1722. [Info][Rename Method] [ScreenLocate::set_InfraredSpots] to bb
  1723. [Info][Rename Method] [ScreenLocate::DebugTexture] to bc
  1724. [Info][Rename Method] [ScreenLocate::SetScreen] to bd
  1725. [Info][Rename Method] [ScreenLocate::SetScreen] to be
  1726. [Info][Rename Method] [ScreenLocate::DebugBackQuad] to bf
  1727. [Info][Rename Method] [ScreenLocate::ShowScreen] to bg
  1728. [Info][Rename Method] [ScreenLocate::ToMode] to bh
  1729. [Info][Rename Method] [ZIMWebCamera::get_webCamTexture] to bi
  1730. [Info][Rename Method] [ZIMWebCamera::get_Size] to bj
  1731. [Info][Rename Method] [ZIMWebCamera::IndexToCoord] to bk
  1732. [Info][Rename Method] [ZIMWebCamera::CoordToIndex] to bl
  1733. [Info][Rename Method] [UnscentedKalmanFilter.UKF::init] to bm
  1734. [Info][Rename Method] [UnscentedKalmanFilter.UKF::getState] to bn
  1735. [Info][Rename Method] [UnscentedKalmanFilter.UKF::getCovariance] to bo
  1736. [Info][Rename Method] [UnscentedKalmanFilter.UKF::UnscentedTransform] to bp
  1737. [Info][Rename Method] [UnscentedKalmanFilter.UKF::GetSigmaPoints] to bq
  1738. [Info][Rename Method] [ZIM.InfraredLocate/<>c::<Update>b__13_0] to br
  1739. [Info][Rename Method] [ZIM.InfraredLocate/<>c::<Update>b__13_1] to bs
  1740. [Info][Rename Method] [ZIM.InfraredLocate/<>c::<LocateOld>b__16_1] to bt
  1741. [Info][Rename Method] [ZIM.InfraredLocate/<>c__DisplayClass14_0::<LocateToScreen>b__0] to bu
  1742. [Info][Rename Method] [ZIM.InfraredLocate/<>c__DisplayClass14_0::<LocateToScreen>b__1] to bv
  1743. [Info][Rename Method] [ZIM.InfraredLocate/<>c__DisplayClass14_0::<LocateToScreen>b__2] to bw
  1744. [Info][Rename Method] [ZIM.InfraredLocate/<>c__DisplayClass16_0::<LocateOld>b__0] to bx
  1745. [Info][Rename Method] [ZIM.InfraredLocate::GetMatches] to by
  1746. [Info][Rename Method] [ZIM.InfraredLocate::GetSpot] to bz
  1747. [Info][Rename Method] [ZIM.InfraredLocate::LocateToScreen] to ca
  1748. [Info][Rename Method] [ZIM.InfraredLocate::Get] to cb
  1749. [Info][Rename Method] [ZIM.InfraredLocate::LocateOld] to cc
  1750. [Info][Rename Method] [ZIM.InfraredLocate::ConvBrightness] to cd
  1751. [Info][Rename Method] [ZIM.InfraredSpot::get_ScreenUV] to ce
  1752. [Info][Rename Method] [ZIM.InfraredSpot::get_CameraLocation] to cf
  1753. [Info][Rename Method] [ZIM.InfraredSpot::get_Predict] to cg
  1754. [Info][Rename Method] [ZIM.InfraredSpot::set_Predict] to ch
  1755. [Info][Rename Method] [ZIM.InfraredSpot::get_Match] to ci
  1756. [Info][Rename Method] [ZIM.InfraredSpot::set_Match] to cj
  1757. [Info][Rename Method] [ZIM.InfraredSpot::Verify] to ck
  1758. [Info][Rename Method] [ZIM.InfraredSpot::UpdateByPredict] to cl
  1759. [Info][Rename Method] [ZIM.PixelArea/<>c__DisplayClass15_0::<TotalBrightness>b__0] to cm
  1760. [Info][Rename Method] [ZIM.PixelArea::GetGrid] to cn
  1761. [Info][Rename Method] [ZIM.PixelArea::get_AngleMathList] to co
  1762. [Info][Rename Method] [ZIM.PixelArea::Include] to cp
  1763. [Info][Rename Method] [ZIM.PixelArea::Add] to cq
  1764. [Info][Rename Method] [ZIM.PixelArea::Add] to cr
  1765. [Info][Rename Method] [ZIM.PixelArea::TotalBrightness] to cs
  1766. [Info][Rename Method] [ZIM.PixelCircleArea::Include] to ct
  1767. [Info][Rename Method] [ZIM.PixelCircleArea::Add] to cu
  1768. [Info][Rename Method] [ZIM.PixelCircleArea::Add] to cv
  1769. [Info][Rename Method] [ZIM.PixelCircleArea::CircleBrightness] to cw
  1770. [Info][Rename Method] [ZIM.PixelSpotArea/<>c__DisplayClass23_0::<TotalBrightness>b__0] to cx
  1771. [Info][Rename Method] [ZIM.PixelSpotArea::GetGrid0] to cy
  1772. [Info][Rename Method] [ZIM.PixelSpotArea::GetGrid1] to cz
  1773. [Info][Rename Method] [ZIM.PixelSpotArea::Cluster] to da
  1774. [Info][Rename Method] [ZIM.PixelSpotArea::get_Center] to db
  1775. [Info][Rename Method] [ZIM.PixelSpotArea::set_Radius] to dc
  1776. [Info][Rename Method] [ZIM.PixelSpotArea::get_Radius] to dd
  1777. [Info][Rename Method] [ZIM.PixelSpotArea::Include0] to de
  1778. [Info][Rename Method] [ZIM.PixelSpotArea::Include1] to df
  1779. [Info][Rename Method] [ZIM.PixelSpotArea::Join] to dg
  1780. [Info][Rename Method] [ZIM.PixelSpotArea::Join] to dh
  1781. [Info][Rename Method] [ZIM.PixelSpotArea::Add] to di
  1782. [Info][Rename Method] [ZIM.PixelSpotArea::TotalBrightness] to dj
  1783. [Info][Rename Method] [ZIM.ZIMMath::DegreeToXAxis] to dk
  1784. [Info][Rename Method] [ZIM.Extension/<>c__DisplayClass10_0::<zimAutoLightSimple>b__0] to dl
  1785. [Info][Rename Method] [ZIM.Extension/<>c__DisplayClass12_0::<zimAutoLight>b__0] to dm
  1786. [Info][Rename Method] [ZIM.Extension/<>c__DisplayClass12_0::<zimAutoLight>b__1] to dn
  1787. [Info][Rename Method] [ZIM.Extension/<>c__DisplayClass13_0::<zimAutoLevelEqualization>b__0] to do
  1788. [Info][Rename Method] [ZIM.Extension/<>c__DisplayClass13_0::<zimAutoLevelEqualization>b__1] to dp
  1789. [Info][Rename Method] [ZIM.Extension/<>c__DisplayClass13_0::<zimAutoLevelEqualization>b__2] to dq
  1790. [Info][Rename Method] [ZIM.Extension/<>c__DisplayClass13_0::<zimAutoLevelEqualization>b__3] to dr
  1791. [Info][Rename Method] [ZIM.Extension/<>c__DisplayClass13_0::<zimAutoLevelEqualization>b__4] to ds
  1792. [Info][Rename Method] [ZIM.Extension::UnityVector] to dt
  1793. [Info][Rename Method] [ZIM.Extension::o0Vector] to du
  1794. [Info][Rename Method] [ZIM.Extension::LengthManhattan] to dv
  1795. [Info][Rename Method] [ZIM.Extension::Brightness] to dw
  1796. [Info][Rename Method] [ZIM.Extension::Brightness] to dx
  1797. [Info][Rename Method] [ZIM.Extension::pixelToLocalPosition_AnchorCenter] to dy
  1798. [Info][Rename Method] [ZIM.Extension::pixelToLocalPosition_AnchorCenter] to dz
  1799. [Info][Rename Method] [ZIM.Extension::IsInScreen] to ea
  1800. [Info][Rename Method] [ZIM.Extension::DegreeToXAxis] to eb
  1801. [Info][Rename Method] [ZIM.Extension::zimAutoLightSimple] to ec
  1802. [Info][Rename Method] [ZIM.Extension::zimAutoLightSimple] to ed
  1803. [Info][Rename Method] [ZIM.Extension::zimAutoLight] to ee
  1804. [Info][Rename Method] [ZIM.Extension::zimAutoLight] to ef
  1805. [Info][Rename Method] [ZIM.Extension::zimAutoLevelEqualization] to eg
  1806. [Info][Rename Method] [ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0::<FindLines>b__0] to eh
  1807. [Info][Rename Method] [ZIM.Image.ImgProcessGray/<>c__DisplayClass9_0::<SigmodAdjust>b__0] to ei
  1808. [Info][Rename Method] [ZIM.Image.ImgProcessGray/<>c__DisplayClass10_0::<LevelAdjust>b__0] to ej
  1809. [Info][Rename Method] [ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::<LevelEqualization>b__0] to ek
  1810. [Info][Rename Method] [ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::<LevelEqualization>b__1] to el
  1811. [Info][Rename Method] [ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0::<LevelEqualization>b__2] to em
  1812. [Info][Rename Method] [ZIM.Image.ImgProcessGray::FindLines] to en
  1813. [Info][Rename Method] [ZIM.Image.ImgProcessGray::SigmodAdjust] to eo
  1814. [Info][Rename Method] [ZIM.Image.ImgProcessGray::LevelAdjust] to ep
  1815. [Info][Rename Method] [ZIM.Image.ImgProcessGray::LevelEqualization] to eq
  1816. [Info][Rename Method] [ZIM.Image.ConvEdge/<>c::<.ctor>b__4_0] to er
  1817. [Info][Rename Method] [ZIM.Image.ConvEdge::AreaOfPoint] to es
  1818. [Info][Rename Method] [ZIM.Image.ConvEdge::GetEdgeDirection] to et
  1819. [Info][Rename Method] [ZIM.Unity.ScreenMap::get_QuadRect] to eu
  1820. [Info][Rename Method] [ZIM.Unity.ScreenMap::set_QuadRect] to ev
  1821. [Info][Rename Method] [ZIM.Unity.ScreenMap::get_UVSize] to ew
  1822. [Info][Rename Method] [ZIM.Unity.ScreenMap::set_UVSize] to ex
  1823. [Info][Rename Method] [ZIM.Unity.ScreenMap::get_Active] to ey
  1824. [Info][Rename Method] [ZIM.Unity.ScreenMap::get_Quad] to ez
  1825. [Info][Rename Method] [ZIM.Unity.ScreenMap::set_Quad] to fa
  1826. [Info][Rename Method] [ZIM.Unity.ScreenMap::UVInScreen] to fb
  1827. [Info][Rename Method] [ZIM.Unity.ScreenMap::UVNormalize] to fc
  1828. [Info][Rename Method] [ZIM.Unity.ScreenMap::TransformToScreen] to fd
  1829. [Info][Rename Method] [ZIM.Unity.ScreenMap::TransformToCamera] to fe
  1830. [Info][Rename Method] [ZIM.Unity.Texture2DZIM::get_Size] to ff
  1831. [Info][Rename Method] [ZIM.Unity.Texture2DZIM::ReadPixels] to fg
  1832. [Info][Rename Method] [ZIM.Unity.Texture2DZIM::GetPixels] to fh
  1833. [Info][Rename Method] [ZIM.Unity.Texture2DZIM::IndexToCoord] to fi
  1834. [Info][Rename Method] [ZIM.Unity.Texture2DZIM::CoordToIndex] to fj
  1835. [Info][Rename Method] [ZIM.Unity.Texture2DZIM::op_Implicit] to fk
  1836. [Info][Rename Method] [ZIM.Unity.Texture2DZIM::op_Implicit] to fk
  1837. [Info][Rename Method] [ZIM.Unity.UnityQuadrilateral::IsInScreen] to fm
  1838. [Info][Rename Method] [ZIM.Unity.UnityQuadrilateral::InterpolationFactors] to fn
  1839. [Info][Rename Method] [ZIM.Unity.UnityQuadrilateral::Fit] to fo
  1840. [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::TransformRound] to fp
  1841. [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::Transform] to fq
  1842. [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::Transform] to fr
  1843. [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::TransformInverse] to fs
  1844. [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::TransformInverse] to ft
  1845. [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::TransformEstimate] to fu
  1846. [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::TransposeMatrix] to fv
  1847. [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::ReshapeMatrix] to fw
  1848. [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::ReshapeMatrix] to fw
  1849. [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::MatrixMultiply] to fy
  1850. [Info][Rename Method] [o0.Geometry2D.Float.PerspectiveTransform::MatrixInverse] to fz
  1851. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass0_0::<Too0Mat>b__0] to ga
  1852. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass0_0::<Too0Mat>b__1] to gb
  1853. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass0_0::<Too0Mat>b__2] to gc
  1854. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass1_0::<Too0Mat>b__0] to gd
  1855. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass1_0::<Too0Mat>b__1] to ge
  1856. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass1_0::<Too0Mat>b__2] to gf
  1857. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass2_0::<ToTex>b__0] to gg
  1858. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass2_0::<ToTex>b__1] to gh
  1859. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass2_0::<ToTex>b__2] to gi
  1860. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass3_0::<ToRGB>b__0] to gj
  1861. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass3_0::<ToRGB>b__1] to gk
  1862. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass3_0::<ToRGB>b__2] to gl
  1863. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass4_0::<IdentifyEdgeVariance>b__0] to gm
  1864. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass5_0::<IdentifyEdgeGradientX>b__0] to gn
  1865. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass6_0::<IdentifyEdgeGradientY>b__0] to go
  1866. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass7_0::<IdentifyEdgeGradient>b__0] to gp
  1867. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass8_0::<IdentifyEdge>b__0] to gq
  1868. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass9_0::<IdentifyEdge55GradientFull>b__0] to gr
  1869. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass10_0::<lineSeg>b__0] to gs
  1870. [Info][Rename Method] [o0.Project.Extension/<lineSeg>d__10::System.Collections.Generic.IEnumerator<((System.Single,System.Single),(System.Single,System.Single),System.Single,System.Single)>.get_Current] to gt
  1871. [Info][Rename Method] [o0.Project.Extension/<lineSeg>d__10::System.Collections.Generic.IEnumerable<((System.Single,System.Single),(System.Single,System.Single),System.Single,System.Single)>.GetEnumerator] to gu
  1872. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass11_0::<IdentifyLine>b__0] to gv
  1873. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass11_0::<IdentifyLine>b__1] to gw
  1874. [Info][Rename Method] [o0.Project.Extension/<>c::<IdentifyLine>b__11_2] to gx
  1875. [Info][Rename Method] [o0.Project.Extension/<>c::<IdentifyLine>b__11_3] to gy
  1876. [Info][Rename Method] [o0.Project.Extension/<>c::<IdentifyLine>b__11_4] to gz
  1877. [Info][Rename Method] [o0.Project.Extension/<>c::<IdentifyLine>b__11_5] to ha
  1878. [Info][Rename Method] [o0.Project.Extension/<>c::<IdentifyLineLSD>b__15_3] to hb
  1879. [Info][Rename Method] [o0.Project.Extension/<>c::<IdentifyLineLSD>b__15_2] to hc
  1880. [Info][Rename Method] [o0.Project.Extension/<>c::<IdentifyLineLSD>b__15_0] to hd
  1881. [Info][Rename Method] [o0.Project.Extension/<>c::<AutoLight>b__18_0] to he
  1882. [Info][Rename Method] [o0.Project.Extension/<>c::<AutoLight>b__19_0] to hf
  1883. [Info][Rename Method] [o0.Project.Extension/<>c::<zimIdentifyEdgeGradientGroup>b__23_1] to hg
  1884. [Info][Rename Method] [o0.Project.Extension/<>c::<IdentifyQuadLSD>b__25_1] to hh
  1885. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass12_0::<lineSegGradient>b__0] to hi
  1886. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass15_1::<IdentifyLineLSD>b__1] to hj
  1887. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass19_0::<AutoLight>b__1] to hk
  1888. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass20_0::<zimIdentifyEdge55GradientFull>b__0] to hl
  1889. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass21_0::<zimIdentifyEdgeGradient45>b__0] to hm
  1890. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass22_0::<zimIdentifyEdgeGradientAny>b__0] to hn
  1891. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass23_0::<zimIdentifyEdgeGradientGroup>b__0] to ho
  1892. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass24_0::<zimLineSegGradient>b__0] to hp
  1893. [Info][Rename Method] [o0.Project.Extension/<>c__DisplayClass25_0::<IdentifyQuadLSD>b__0] to hq
  1894. [Info][Rename Method] [o0.Project.Extension::Too0Mat] to hr
  1895. [Info][Rename Method] [o0.Project.Extension::Too0Mat] to hs
  1896. [Info][Rename Method] [o0.Project.Extension::ToTex] to ht
  1897. [Info][Rename Method] [o0.Project.Extension::ToRGB] to hu
  1898. [Info][Rename Method] [o0.Project.Extension::IdentifyEdgeVariance] to hv
  1899. [Info][Rename Method] [o0.Project.Extension::IdentifyEdgeGradientX] to hw
  1900. [Info][Rename Method] [o0.Project.Extension::IdentifyEdgeGradientY] to hx
  1901. [Info][Rename Method] [o0.Project.Extension::IdentifyEdgeGradient] to hy
  1902. [Info][Rename Method] [o0.Project.Extension::IdentifyEdge] to hz
  1903. [Info][Rename Method] [o0.Project.Extension::IdentifyEdge55GradientFull] to ia
  1904. [Info][Rename Method] [o0.Project.Extension::lineSeg] to ib
  1905. [Info][Rename Method] [o0.Project.Extension::IdentifyLine] to ic
  1906. [Info][Rename Method] [o0.Project.Extension::lineSegGradient] to id
  1907. [Info][Rename Method] [o0.Project.Extension::lineSegGradient] to ie
  1908. [Info][Rename Method] [o0.Project.Extension::IdentifyLineLSD] to if
  1909. [Info][Rename Method] [o0.Project.Extension::IdentifyLineLSD] to ig
  1910. [Info][Rename Method] [o0.Project.Extension::AutoLight] to ih
  1911. [Info][Rename Method] [o0.Project.Extension::AutoLight] to ii
  1912. [Info][Rename Method] [o0.Project.Extension::AutoLight] to ij
  1913. [Info][Rename Method] [o0.Project.Extension::AutoLight] to ik
  1914. [Info][Rename Method] [o0.Project.Extension::zimIdentifyEdge55GradientFull] to il
  1915. [Info][Rename Method] [o0.Project.Extension::zimIdentifyEdgeGradient45] to im
  1916. [Info][Rename Method] [o0.Project.Extension::zimIdentifyEdgeGradientAny] to in
  1917. [Info][Rename Method] [o0.Project.Extension::zimIdentifyEdgeGradientGroup] to io
  1918. [Info][Rename Method] [o0.Project.Extension::zimLineSegGradient] to ip
  1919. [Info][Rename Method] [o0.Project.Extension::IdentifyQuadLSD] to iq
  1920. [Info][Rename Method] [o0.Project.InfraredIdentification/<>c__DisplayClass9_0::<Update>b__0] to ir
  1921. [Info][Rename Method] [o0.Project.InfraredIdentification/<>c__DisplayClass9_1::<Update>b__1] to is
  1922. [Info][Rename Method] [o0.Project.InfraredIdentification/<>c__DisplayClass9_2::<Update>b__2] to it
  1923. [Info][Rename Method] [o0.Project.InfraredIdentification/<>c__DisplayClass9_2::<Update>b__3] to iu
  1924. [Info][Rename Method] [o0.Project.InfraredIdentification/<>c::<Update>b__9_4] to iv
  1925. [Info][Rename Method] [o0.Project.InfraredIdentification/<>c::<Update>b__9_5] to iw
  1926. [Info][Rename Method] [o0.Project.InfraredIdentification/<>c::<Update>b__9_6] to ix
  1927. [Info][Rename Method] [o0.Project.InfraredIdentification/<>c::<AutoLight2>b__14_0] to iy
  1928. [Info][Rename Method] [o0.Project.InfraredIdentification/<>c::<AutoLight2>b__14_1] to iz
  1929. [Info][Rename Method] [o0.Project.InfraredIdentification/<>c::<AutoLight2>b__14_2] to ja
  1930. [Info][Rename Method] [o0.Project.InfraredIdentification/<>c__DisplayClass14_0::<AutoLight2>b__3] to jb
  1931. [Info][Rename Method] [o0.Project.InfraredIdentification::LocateScreen] to jc
  1932. [Info][Rename Method] [o0.Project.InfraredIdentification::AutoLight2] to jd
  1933. [Info][Rename Method] [o0.Project.InfraredIdentification::AutoLight2] to je
  1934. [Info][Rename Method] [o0.Project.InfraredIdentification::AutoLight2] to jf
  1935. [Info][Rename Method] [o0.Project.Hough/Line::get_PointsCount] to jg
  1936. [Info][Rename Method] [o0.Project.Hough/Line::get_Length] to jh
  1937. [Info][Rename Method] [o0.Project.Hough/Line::get_A] to ji
  1938. [Info][Rename Method] [o0.Project.Hough/Line::set_A] to jj
  1939. [Info][Rename Method] [o0.Project.Hough/Line::get_B] to jk
  1940. [Info][Rename Method] [o0.Project.Hough/Line::set_B] to jl
  1941. [Info][Rename Method] [o0.Project.Hough/Line::Add] to jm
  1942. [Info][Rename Method] [o0.Project.Hough/<>c__DisplayClass1_0::<Lines>b__0] to jn
  1943. [Info][Rename Method] [o0.Project.Hough/<>c__DisplayClass1_0::<Lines>b__1] to jo
  1944. [Info][Rename Method] [o0.Project.Hough/<>c__DisplayClass2_0::<GetTrigValues>b__0] to jp
  1945. [Info][Rename Method] [o0.Project.Hough/<>c__DisplayClass3_0::<GetBrightElements>b__0] to jq
  1946. [Info][Rename Method] [o0.Project.Hough/<>c__DisplayClass3_0::<GetBrightElements>b__1] to jr
  1947. [Info][Rename Method] [o0.Project.Hough::Transform] to js
  1948. [Info][Rename Method] [o0.Project.Hough::Lines] to jt
  1949. [Info][Rename Method] [o0.Project.Hough::GetTrigValues] to ju
  1950. [Info][Rename Method] [o0.Project.Hough::GetBrightElements] to jv
  1951. [Info][Rename Method] [o0.Project.ScreenIdentification/<>c__DisplayClass24_0::<DebugImage>b__0] to jw
  1952. [Info][Rename Method] [o0.Project.ScreenIdentification/<>c__DisplayClass27_0::<CaptureBlack>b__0] to jx
  1953. [Info][Rename Method] [o0.Project.ScreenIdentification/<>c__DisplayClass28_0::<CaptureWhite>b__0] to jy
  1954. [Info][Rename Method] [o0.Project.ScreenIdentification/<>c__DisplayClass32_0::<GetBrightness>b__0] to jz
  1955. [Info][Rename Method] [o0.Project.ScreenIdentification/<>c__DisplayClass33_0::<QuadrilateralFit>b__0] to ka
  1956. [Info][Rename Method] [o0.Project.ScreenIdentification/<>c::<QuadrilateralFit>b__33_1] to kb
  1957. [Info][Rename Method] [o0.Project.ScreenIdentification::get_Size] to kc
  1958. [Info][Rename Method] [o0.Project.ScreenIdentification::set_Size] to kd
  1959. [Info][Rename Method] [o0.Project.ScreenIdentification::get_areaPercent] to ke
  1960. [Info][Rename Method] [o0.Project.ScreenIdentification::LocateScreenManual] to kf
  1961. [Info][Rename Method] [o0.Project.ScreenIdentification::LocateScreen] to kg
  1962. [Info][Rename Method] [o0.Project.ScreenIdentification::DebugImage] to kh
  1963. [Info][Rename Method] [o0.Project.ScreenIdentification::NextScreen] to ki
  1964. [Info][Rename Method] [o0.Project.ScreenIdentification::CaptureBlack] to kj
  1965. [Info][Rename Method] [o0.Project.ScreenIdentification::CaptureWhite] to kk
  1966. [Info][Rename Method] [o0.Project.ScreenIdentification::CaptureStay] to kl
  1967. [Info][Rename Method] [o0.Project.ScreenIdentification::CaptureEnd] to km
  1968. [Info][Rename Method] [o0.Project.ScreenIdentification::GetBrightness] to kn
  1969. [Info][Rename Method] [o0.Project.ScreenIdentification::QuadrilateralFit] to ko
  1970. [Info][Process] Finished Step: Rename Methods
  1971. [Info][Process] Processing Step: Rename Types and Namespaces
  1972. [Info][Rename] [Assembly-CSharp] Rename Type Names and Namespaces...
  1973. [Info][Rename Type] [ScreenLocateTestOld/<>c__DisplayClass14_0] to a
  1974. [Info][Rename Type] [ScreenLocateTestOld/<>c__DisplayClass18_0] to b
  1975. [Info][Update Reference Type] [ScreenLocateTestOld/<ScreenLocateCorutine>d__18]
  1976. [Info][Rename Reference] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine>d__18] Name: <ScreenLocateCorutine>d__18
  1977. [Info][Rename Type] [ScreenLocateTestOld/<ScreenLocateCorutine>d__18] to c
  1978. [Info][Rename Type] [ScreenLocateTestOld/<>c__DisplayClass19_0] to d
  1979. [Info][Update Reference Type] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19]
  1980. [Info][Rename Reference] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenLocateCorutine2>d__19] Name: <ScreenLocateCorutine2>d__19
  1981. [Info][Rename Type] [ScreenLocateTestOld/<ScreenLocateCorutine2>d__19] to e
  1982. [Info][Rename Type] [ScreenLocateTestOld/<>c__DisplayClass20_0] to f
  1983. [Info][Update Reference Type] [ScreenLocateTestOld/<ScreenTestCoruine>d__20]
  1984. [Info][Rename Reference] [[Assembly-CSharp]ScreenLocateTestOld/<ScreenTestCoruine>d__20] Name: <ScreenTestCoruine>d__20
  1985. [Info][Rename Type] [ScreenLocateTestOld/<ScreenTestCoruine>d__20] to g
  1986. [Info][Rename Type] [ScreenLocateTestOld/<>c__DisplayClass21_0] to h
  1987. [Info][Rename Type] [ScreenLocateTestOld/<>c__DisplayClass21_1] to i
  1988. [Info][Rename Type] [ScreenLocate/Mode] to a
  1989. [Info][Rename Namespace] [UnscentedKalmanFilter.UKF] to
  1990. [Info][Rename Type] [UnscentedKalmanFilter.UKF] to k
  1991. [Info][Rename Namespace] [ZIM.InfraredMatch] to
  1992. [Info][Rename Type] [ZIM.InfraredMatch] to l
  1993. [Info][Rename Type] [ZIM.InfraredLocate/<>c__DisplayClass14_0] to b
  1994. [Info][Rename Type] [ZIM.InfraredLocate/<>c__DisplayClass16_0] to c
  1995. [Info][Rename Namespace] [ZIM.InfraredLocate] to
  1996. [Info][Rename Type] [ZIM.InfraredLocate] to m
  1997. [Info][Rename Namespace] [ZIM.InfraredSpot] to
  1998. [Info][Rename Type] [ZIM.InfraredSpot] to n
  1999. [Info][Rename Type] [ZIM.PixelArea/<>c__DisplayClass15_0] to a
  2000. [Info][Rename Namespace] [ZIM.PixelArea] to
  2001. [Info][Rename Type] [ZIM.PixelArea] to o
  2002. [Info][Rename Namespace] [ZIM.PixelCircleArea] to
  2003. [Info][Rename Type] [ZIM.PixelCircleArea] to p
  2004. [Info][Rename Type] [ZIM.PixelSpotArea/<>c__DisplayClass23_0] to a
  2005. [Info][Rename Namespace] [ZIM.PixelSpotArea] to
  2006. [Info][Rename Type] [ZIM.PixelSpotArea] to q
  2007. [Info][Rename Namespace] [ZIM.SimpleLocationEstimation] to
  2008. [Info][Rename Type] [ZIM.SimpleLocationEstimation] to r
  2009. [Info][Rename Namespace] [ZIM.ZIMMath] to
  2010. [Info][Rename Type] [ZIM.ZIMMath] to s
  2011. [Info][Rename Type] [ZIM.Extension/<>c__DisplayClass10_0] to a
  2012. [Info][Rename Type] [ZIM.Extension/<>c__DisplayClass12_0] to b
  2013. [Info][Rename Type] [ZIM.Extension/<>c__DisplayClass13_0] to c
  2014. [Info][Rename Namespace] [ZIM.Extension] to
  2015. [Info][Rename Type] [ZIM.Extension] to t
  2016. [Info][Rename Type] [ZIM.Image.ImgProcessGray/<>c__DisplayClass8_0] to a
  2017. [Info][Rename Type] [ZIM.Image.ImgProcessGray/<>c__DisplayClass9_0] to b
  2018. [Info][Rename Type] [ZIM.Image.ImgProcessGray/<>c__DisplayClass10_0] to c
  2019. [Info][Rename Type] [ZIM.Image.ImgProcessGray/<>c__DisplayClass11_0] to d
  2020. [Info][Rename Namespace] [ZIM.Image.ImgProcessGray] to
  2021. [Info][Rename Type] [ZIM.Image.ImgProcessGray] to u
  2022. [Info][Rename Namespace] [ZIM.Image.ConvEdge] to
  2023. [Info][Rename Type] [ZIM.Image.ConvEdge] to v
  2024. [Info][Rename Namespace] [ZIM.Unity.ScreenMap] to
  2025. [Info][Rename Type] [ZIM.Unity.ScreenMap] to w
  2026. [Info][Rename Namespace] [ZIM.Unity.Texture2DZIM] to
  2027. [Info][Rename Type] [ZIM.Unity.Texture2DZIM] to x
  2028. [Info][Rename Namespace] [ZIM.Unity.UnityQuadrilateral] to
  2029. [Info][Rename Type] [ZIM.Unity.UnityQuadrilateral] to y
  2030. [Info][Rename Namespace] [o0.Geometry2D.Float.PerspectiveTransform] to
  2031. [Info][Rename Type] [o0.Geometry2D.Float.PerspectiveTransform] to z
  2032. [Info][Rename Namespace] [o0.Project.ColorChannel] to
  2033. [Info][Rename Type] [o0.Project.ColorChannel] to ba
  2034. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass0_0] to a
  2035. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass1_0] to b
  2036. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass2_0] to c
  2037. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass3_0] to d
  2038. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass4_0] to e
  2039. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass5_0] to f
  2040. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass6_0] to g
  2041. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass7_0] to h
  2042. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass8_0] to i
  2043. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass9_0] to j
  2044. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass10_0] to k
  2045. [Info][Update Reference Type] [o0.Project.Extension/<lineSeg>d__10]
  2046. [Info][Rename Reference] [[Assembly-CSharp]o0.Project.Extension/<lineSeg>d__10] Name: <lineSeg>d__10
  2047. [Info][Rename Type] [o0.Project.Extension/<lineSeg>d__10] to l
  2048. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass11_0] to m
  2049. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass12_0] to o
  2050. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass15_0] to p
  2051. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass15_1] to q
  2052. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass19_0] to r
  2053. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass20_0] to s
  2054. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass21_0] to t
  2055. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass22_0] to u
  2056. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass23_0] to v
  2057. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass24_0] to w
  2058. [Info][Rename Type] [o0.Project.Extension/<>c__DisplayClass25_0] to x
  2059. [Info][Rename Namespace] [o0.Project.Extension] to
  2060. [Info][Rename Type] [o0.Project.Extension] to bb
  2061. [Info][Rename Type] [o0.Project.InfraredIdentification/<>c__DisplayClass9_0] to a
  2062. [Info][Rename Type] [o0.Project.InfraredIdentification/<>c__DisplayClass9_1] to b
  2063. [Info][Rename Type] [o0.Project.InfraredIdentification/<>c__DisplayClass9_2] to c
  2064. [Info][Rename Type] [o0.Project.InfraredIdentification/<>c__DisplayClass14_0] to e
  2065. [Info][Rename Namespace] [o0.Project.InfraredIdentification] to
  2066. [Info][Rename Type] [o0.Project.InfraredIdentification] to bc
  2067. [Info][Rename Namespace] [o0.Project.WebCam] to
  2068. [Info][Rename Type] [o0.Project.WebCam] to bd
  2069. [Info][Rename Type] [o0.Project.Hough/Line] to a
  2070. [Info][Rename Type] [o0.Project.Hough/<>c__DisplayClass1_0] to b
  2071. [Info][Rename Type] [o0.Project.Hough/<>c__DisplayClass2_0] to c
  2072. [Info][Rename Type] [o0.Project.Hough/<>c__DisplayClass3_0] to d
  2073. [Info][Rename Namespace] [o0.Project.Hough] to
  2074. [Info][Rename Type] [o0.Project.Hough] to be
  2075. [Info][Rename Type] [o0.Project.ScreenIdentification/<>c__DisplayClass24_0] to a
  2076. [Info][Rename Type] [o0.Project.ScreenIdentification/<>c__DisplayClass27_0] to b
  2077. [Info][Rename Type] [o0.Project.ScreenIdentification/<>c__DisplayClass28_0] to c
  2078. [Info][Rename Type] [o0.Project.ScreenIdentification/<>c__DisplayClass32_0] to d
  2079. [Info][Rename Type] [o0.Project.ScreenIdentification/<>c__DisplayClass33_0] to e
  2080. [Info][Rename Namespace] [o0.Project.ScreenIdentification] to
  2081. [Info][Rename Type] [o0.Project.ScreenIdentification] to bf
  2082. [Info][Rename Type] [<PrivateImplementationDetails>/__StaticArrayInitTypeSize=12] to a
  2083. [Info][Rename Namespace] [<PrivateImplementationDetails>] to
  2084. [Info][Rename Type] [<PrivateImplementationDetails>] to bg
  2085. [Info][Process] Finished Step: Rename Types and Namespaces
  2086. [Info][Process] Processing Step: Rename Unity Types and Namespaces
  2087. [Info][Rename] [Assembly-CSharp] Rename Unity Type Names and Namespaces...
  2088. [Info][Rename Namespace] [BombChild] to
  2089. [Info][Rename Type] [BombChild] to a
  2090. [Info][Rename Namespace] [Box] to
  2091. [Info][Rename Type] [Box] to b
  2092. [Info][Rename Namespace] [FPSTester] to
  2093. [Info][Rename Type] [FPSTester] to c
  2094. [Info][Rename Namespace] [o0WebCamera] to
  2095. [Info][Rename Type] [o0WebCamera] to d
  2096. [Info][Rename Namespace] [InfraredLocateTest] to
  2097. [Info][Rename Type] [InfraredLocateTest] to e
  2098. [Info][Rename Namespace] [ScreenLocateTestOld] to
  2099. [Info][Rename Type] [ScreenLocateTestOld] to f
  2100. [Info][Rename Namespace] [TestLineRegression] to
  2101. [Info][Rename Type] [TestLineRegression] to g
  2102. [Info][Rename Namespace] [InfraredSpotSettings] to
  2103. [Info][Rename Type] [InfraredSpotSettings] to h
  2104. [Info][Rename Namespace] [ScreenLocate] to
  2105. [Info][Rename Type] [ScreenLocate] to i
  2106. [Info][Rename Namespace] [ZIMWebCamera] to
  2107. [Info][Rename Type] [ZIMWebCamera] to j
  2108. [Info][Process] Finished Step: Rename Unity Types and Namespaces
  2109. [Info][Process] Processing Step: Rename Parameters
  2110. [Info][Rename] [Assembly-CSharp] Rename Parameter...
  2111. [Info][Process] Finished Step: Rename Parameters
  2112. [Info][Process] Processing Step: Add SuppressIldasmAttribute
  2113. [Info][SuppressIldasmAttribute] [Assembly-CSharp] Add to assembly the SuppressIldasmAttribute...
  2114. [Info][Process] Finished Step: Add SuppressIldasmAttribute
  2115. [Info][Process] Processing Step: Obfuscate Strings
  2116. [Info][String] [Assembly-CSharp] Processing String Obfuscation ...
  2117. [Info][StringObfuscation] String 'FPS: ' got Obfuscated to byte Code: 'ElBTOiA='.
  2118. [Info][StringObfuscation] String 'zimWebCamera' got Obfuscated to byte Code: 'n2ltV2ViQ2FtZXJh'.
  2119. [Info][StringObfuscation] String 'GameController' got Obfuscated to byte Code: 'omFtZUNvbnRyb2xsZXI='.
  2120. [Info][StringObfuscation] String '===游戏初始化完成===' got Obfuscated to byte Code: '2D095ri45oiP5Yid5aeL5YyW5a6M5oiQPT09'.
  2121. [Info][StringObfuscation] String 'GameDemo' got Obfuscated to byte Code: 'JmFtZURlbW8='.
  2122. [Info][StringObfuscation] String '相近,重新计算随机x点' got Obfuscated to byte Code: 's5u46L+R77yM6YeN5paw6K6h566X6ZqP5py6eOeCuQ=='.
  2123. [Info][StringObfuscation] String 'WebCameraView' got Obfuscated to byte Code: 'HWViQ2FtZXJhVmlldw=='.
  2124. [Info][StringObfuscation] String 'Background' got Obfuscated to byte Code: 'CGFja2dyb3VuZA=='.
  2125. [Info][StringObfuscation] String '开启失败,请先关闭正在使用的摄像头!' got Obfuscated to byte Code: 'E7yA5ZCv5aSx6LSl77yM6K+35YWI5YWz6Zet5q2j5Zyo5L2/55So55qE5pGE5YOP5aS077yB'.
  2126. [Info][StringObfuscation] String '开启失败,没找到可用的摄像头!' got Obfuscated to byte Code: 'E7yA5ZCv5aSx6LSl77yM5rKh5om+5Yiw5Y+v55So55qE5pGE5YOP5aS077yB'.
  2127. [Info][StringObfuscation] String '成功开启摄像头 ' got Obfuscated to byte Code: 'EIiQ5Yqf5byA5ZCv5pGE5YOP5aS0IA=='.
  2128. [Info][StringObfuscation] String '开启失败,用户未授予摄像头权限!' got Obfuscated to byte Code: 'E7yA5ZCv5aSx6LSl77yM55So5oi35pyq5o6I5LqI5pGE5YOP5aS05p2D6ZmQ77yB'.
  2129. [Info][StringObfuscation] String '成功关闭摄像头' got Obfuscated to byte Code: 'eYiQ5Yqf5YWz6Zet5pGE5YOP5aS0'.
  2130. [Info][StringObfuscation] String 'Locate Complete!
  2131. ' got Obfuscated to byte Code: 'Sm9jYXRlIENvbXBsZXRlIQ0K'.
  2132. [Info][StringObfuscation] String '显示器黑色' got Obfuscated to byte Code: '65i+56S65Zmo6buR6Imy'.
  2133. [Info][StringObfuscation] String '显示器白色' got Obfuscated to byte Code: '65i+56S65Zmo55m96Imy'.
  2134. [Info][StringObfuscation] String 'Locate Complete!
  2135. threshold: {0}
  2136. {1}' got Obfuscated to byte Code: 'QW9jYXRlIENvbXBsZXRlIQ0KdGhyZXNob2xkOiB7MH0NCnsxfQ=='.
  2137. [Info][StringObfuscation] String '显示器黑色' got Obfuscated to byte Code: '/Ji+56S65Zmo6buR6Imy'.
  2138. [Info][StringObfuscation] String '显示器白色' got Obfuscated to byte Code: '/Ji+56S65Zmo55m96Imy'.
  2139. [Info][StringObfuscation] String '亮度差值' got Obfuscated to byte Code: '/rqu5bqm5beu5YC8'.
  2140. [Info][StringObfuscation] String '.png' got Obfuscated to byte Code: '8nBuZw=='.
  2141. [Info][StringObfuscation] String '.png' got Obfuscated to byte Code: 'hnBuZw=='.
  2142. [Info][StringObfuscation] String 'dataX.js' got Obfuscated to byte Code: '7mF0YVguanM='.
  2143. [Info][StringObfuscation] String 'dataY.js' got Obfuscated to byte Code: '7mF0YVkuanM='.
  2144. [Info][StringObfuscation] String 'Fire1' got Obfuscated to byte Code: 'V2lyZTE='.
  2145. [Info][StringObfuscation] String 'WebCameraView' got Obfuscated to byte Code: 'BGViQ2FtZXJhVmlldw=='.
  2146. [Info][StringObfuscation] String 'Background' got Obfuscated to byte Code: 'EWFja2dyb3VuZA=='.
  2147. [Info][StringObfuscation] String 'WebCameraView' got Obfuscated to byte Code: 'sGViQ2FtZXJhVmlldw=='.
  2148. [Info][StringObfuscation] String 'Background' got Obfuscated to byte Code: 'pWFja2dyb3VuZA=='.
  2149. [Info][StringObfuscation] String 'Point' got Obfuscated to byte Code: 'OG9pbnQ='.
  2150. [Info][StringObfuscation] String '左键单击屏幕 右下角' got Obfuscated to byte Code: 'jbem6ZSu5Y2V5Ye75bGP5bmVIOWPs+S4i+inkg=='.
  2151. [Info][StringObfuscation] String '左键单击屏幕 右上角' got Obfuscated to byte Code: 'jbem6ZSu5Y2V5Ye75bGP5bmVIOWPs+S4iuinkg=='.
  2152. [Info][StringObfuscation] String '左键单击屏幕 左上角' got Obfuscated to byte Code: 'jbem6ZSu5Y2V5Ye75bGP5bmVIOW3puS4iuinkg=='.
  2153. [Info][StringObfuscation] String '识别屏幕失败' got Obfuscated to byte Code: 'ha+G5Yir5bGP5bmV5aSx6LSl'.
  2154. [Info][StringObfuscation] String '已识别到屏幕' got Obfuscated to byte Code: 'iLey6K+G5Yir5Yiw5bGP5bmV'.
  2155. [Info][StringObfuscation] String '先定位屏幕' got Obfuscated to byte Code: 'iYWI5a6a5L2N5bGP5bmV'.
  2156. [Info][StringObfuscation] String '按ESC退出' got Obfuscated to byte Code: 'ioyJRVND6YCA5Ye6'.
  2157. [Info][StringObfuscation] String '定位屏幕失败' got Obfuscated to byte Code: 'ia6a5L2N5bGP5bmV5aSx6LSl'.
  2158. [Info][StringObfuscation] String '已定位屏幕' got Obfuscated to byte Code: 'ibey5a6a5L2N5bGP5bmV'.
  2159. [Info][StringObfuscation] String '左键单击屏幕 左下角' got Obfuscated to byte Code: 'ibem6ZSu5Y2V5Ye75bGP5bmVIOW3puS4i+inkg=='.
  2160. [Info][StringObfuscation] String '开启失败,请先关闭正在使用的摄像头!' got Obfuscated to byte Code: 'jbyA5ZCv5aSx6LSl77yM6K+35YWI5YWz6Zet5q2j5Zyo5L2/55So55qE5pGE5YOP5aS077yB'.
  2161. [Info][StringObfuscation] String '开启失败,没找到可用的摄像头!' got Obfuscated to byte Code: 'jbyA5ZCv5aSx6LSl77yM5rKh5om+5Yiw5Y+v55So55qE5pGE5YOP5aS077yB'.
  2162. [Info][StringObfuscation] String '开启失败,没有对应序号的摄像头!' got Obfuscated to byte Code: 'jbyA5ZCv5aSx6LSl77yM5rKh5pyJ5a+55bqU5bqP5Y+355qE5pGE5YOP5aS077yB'.
  2163. [Info][StringObfuscation] String '成功开启摄像头 ' got Obfuscated to byte Code: 'joiQ5Yqf5byA5ZCv5pGE5YOP5aS0IA=='.
  2164. [Info][StringObfuscation] String '开启失败,用户未授予摄像头权限!' got Obfuscated to byte Code: 'jbyA5ZCv5aSx6LSl77yM55So5oi35pyq5o6I5LqI5pGE5YOP5aS05p2D6ZmQ77yB'.
  2165. [Info][StringObfuscation] String '成功关闭摄像头' got Obfuscated to byte Code: 'J4iQ5Yqf5YWz6Zet5pGE5YOP5aS0'.
  2166. [Info][StringObfuscation] String '[InfraredSpot] Update Wrong' got Obfuscated to byte Code: 'aUluZnJhcmVkU3BvdF0gVXBkYXRlIFdyb25n'.
  2167. [Info][StringObfuscation] String 'Input array length must be equal to width * height' got Obfuscated to byte Code: 'E25wdXQgYXJyYXkgbGVuZ3RoIG11c3QgYmUgZXF1YWwgdG8gd2lkdGggKiBoZWlnaHQ='.
  2168. [Info][StringObfuscation] String '{0}, {1}, {2}, {3}' got Obfuscated to byte Code: 'KTB9LCB7MX0sIHsyfSwgezN9'.
  2169. [Info][StringObfuscation] String 'Invalid reshape dimensions' got Obfuscated to byte Code: 'zW52YWxpZCByZXNoYXBlIGRpbWVuc2lvbnM='.
  2170. [Info][StringObfuscation] String 'Invalid matrix dimensions' got Obfuscated to byte Code: 'kW52YWxpZCBtYXRyaXggZGltZW5zaW9ucw=='.
  2171. [Info][StringObfuscation] String '屏幕定位数据20230505_145229.bin' got Obfuscated to byte Code: 'HLGP5bmV5a6a5L2N5pWw5o2uMjAyMzA1MDVfMTQ1MjI5LmJpbg=='.
  2172. [Info][StringObfuscation] String 'TestData/' got Obfuscated to byte Code: 'rWVzdERhdGEv'.
  2173. [Info][StringObfuscation] String 'Read ' got Obfuscated to byte Code: 'q2VhZCA='.
  2174. [Info][StringObfuscation] String '屏幕定位数据.bin' got Obfuscated to byte Code: 'HLGP5bmV5a6a5L2N5pWw5o2uLmJpbg=='.
  2175. [Info][StringObfuscation] String 'ScreenLocateTexture Saved To: ' got Obfuscated to byte Code: 'qmNyZWVuTG9jYXRlVGV4dHVyZSBTYXZlZCBUbzog'.
  2176. [Info][StringObfuscation] String 'time: ' got Obfuscated to byte Code: 'jWltZTog'.
  2177. [Info][StringObfuscation] String '12313123' got Obfuscated to byte Code: 'CDIzMTMxMjM='.
  2178. [Info][StringObfuscation] String 'output/Bright.png' got Obfuscated to byte Code: 'KnV0cHV0L0JyaWdodC5wbmc='.
  2179. [Info][StringObfuscation] String '拟合四边形失败, quadTemp.Count: {0}' got Obfuscated to byte Code: 'xYuf5ZCI5Zub6L655b2i5aSx6LSlLCBxdWFkVGVtcC5Db3VudDogezB9'.
  2180. [Info][StringObfuscation] String '[InfraredIdentification2拟合结果] RSquared: {0}, Quad: {1}' got Obfuscated to byte Code: 'eEluZnJhcmVkSWRlbnRpZmljYXRpb24y5ouf5ZCI57uT5p6cXSBSU3F1YXJlZDogezB9LCBRdWFkOiB7MX0='.
  2181. [Info][StringObfuscation] String 'Debug ' got Obfuscated to byte Code: 'jWVidWcg'.
  2182. [Info][StringObfuscation] String 'yyyyMMdd_HHmmss' got Obfuscated to byte Code: 'sHl5eU1NZGRfSEhtbXNz'.
  2183. [Info][StringObfuscation] String '屏幕定位数据.bin' got Obfuscated to byte Code: 'LLGP5bmV5a6a5L2N5pWw5o2uLmJpbg=='.
  2184. [Info][StringObfuscation] String '屏幕.png' got Obfuscated to byte Code: 'LLGP5bmVLnBuZw=='.
  2185. [Info][StringObfuscation] String '屏幕边框识别.png' got Obfuscated to byte Code: 'LLGP5bmV6L655qGG6K+G5YirLnBuZw=='.
  2186. [Info][StringObfuscation] String 'ScreenLocateTexture Saved To: ' got Obfuscated to byte Code: 'mmNyZWVuTG9jYXRlVGV4dHVyZSBTYXZlZCBUbzog'.
  2187. [Info][Process] Finished Step: Obfuscate Strings
  2188. [Info][Process] Processing Step: Obfuscate Unity Methods
  2189. [Info][Process] Finished Step: Obfuscate Unity Methods
  2190. [Info][Process] Processing Step: Add random Methods
  2191. [Info][CloneMethods] Random Code generation is deactivated!
  2192. [Info][Process] Finished Step: Add random Methods
  2193. [Info][Process] Unlock Assemblies
  2194. [Info][Process] Finished Assembly obfuscation successfully.
  2195. [Info][None] Start Asset Obfuscation.
  2196. [Info][AssetPostProcessor_Process] Create temporary file: E:/000MyProject/InfraredLocate/Assets\OPS\Obfuscator.Pro\Editor\Temp\Obfuscator_UnityObject_RenamingTable.obf
  2197. [Info][None] Finished Asset Obfuscation.
  2198. [Info][Save Assemblies] Saving...
  2199. [Info][Save Assemblies] Saved.
  2200. [Info][None] Start Asset Revert.
  2201. [Info][AssetPostProcessor_Revert] Delete temporary file: E:/000MyProject/InfraredLocate/Assets\OPS\Obfuscator.Pro\Editor\Temp\Obfuscator_UnityObject_RenamingTable.obf
  2202. [Info][None] Finished Asset Revert.