| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962 | %YAML 1.1%TAG !u! tag:unity3d.com,2011:--- !u!1 &177225885GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 177225886}  - component: {fileID: 177225888}  - component: {fileID: 177225887}  m_Layer: 0  m_Name: ZhongBu  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 0--- !u!4 &177225886Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 177225885}  m_LocalRotation: {x: 0, y: 1, z: 0, w: 0}  m_LocalPosition: {x: 3.61, y: 1.71, z: -0.000015795229}  m_LocalScale: {x: 27.7, y: 27.8, z: 23.92522}  m_ConstrainProportionsScale: 0  m_Children: []  m_Father: {fileID: 1633948837218199811}  m_RootOrder: 10  m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0}--- !u!33 &177225888MeshFilter:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 177225885}  m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0}--- !u!23 &177225887MeshRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 177225885}  m_Enabled: 1  m_CastShadows: 1  m_ReceiveShadows: 1  m_DynamicOccludee: 1  m_StaticShadowCaster: 0  m_MotionVectors: 1  m_LightProbeUsage: 1  m_ReflectionProbeUsage: 1  m_RayTracingMode: 2  m_RayTraceProcedural: 0  m_RenderingLayerMask: 1  m_RendererPriority: 0  m_Materials:  - {fileID: 2100000, guid: a9ae41e5f53c340469c66aa18af52bbb, type: 2}  m_StaticBatchInfo:    firstSubMesh: 0    subMeshCount: 0  m_StaticBatchRoot: {fileID: 0}  m_ProbeAnchor: {fileID: 0}  m_LightProbeVolumeOverride: {fileID: 0}  m_ScaleInLightmap: 1  m_ReceiveGI: 1  m_PreserveUVs: 0  m_IgnoreNormalsForChartDetection: 0  m_ImportantGI: 0  m_StitchLightmapSeams: 1  m_SelectedEditorRenderState: 3  m_MinimumChartSize: 4  m_AutoUVMaxDistance: 0.5  m_AutoUVMaxAngle: 89  m_LightmapParameters: {fileID: 0}  m_SortingLayerID: 0  m_SortingLayer: 0  m_SortingOrder: 0  m_AdditionalVertexStreams: {fileID: 0}--- !u!1 &249304407GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 249304408}  - component: {fileID: 4078470270552625224}  m_Layer: 0  m_Name: L16  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!4 &249304408Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 249304407}  m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}  m_LocalPosition: {x: 4.8, y: -1.48, z: -0.4}  m_LocalScale: {x: 1.76, y: 1.76, z: 1.0507463}  m_ConstrainProportionsScale: 1  m_Children: []  m_Father: {fileID: 7069582396450853087}  m_RootOrder: 15  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!114 &4078470270552625224MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 249304407}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: 0579c1e5d5d7a4c4e8b1a9b0a7cdace8, type: 3}  m_Name:   m_EditorClassIdentifier:   nameHeard: L16_15x15  x_Count: 15  y_Count: 15  ab_Name: l16  TextureType: 1  initDone: 0--- !u!1 &970675354GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 970675355}  m_Layer: 0  m_Name: AQQ  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!4 &970675355Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 970675354}  m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}  m_LocalPosition: {x: 4.89, y: 13.78, z: -0.4000244}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children: []  m_Father: {fileID: 1644283074}  m_RootOrder: 2  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!1 &1216517145GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 1216517146}  m_Layer: 0  m_Name: MovePath  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!4 &1216517146Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1216517145}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0.5, y: -6.7, z: 0}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children: []  m_Father: {fileID: 7069582396450853087}  m_RootOrder: 13  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!1 &1332723916GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 1332723917}  - component: {fileID: 1332723919}  - component: {fileID: 1332723918}  m_Layer: 0  m_Name: XiBu  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 0--- !u!4 &1332723917Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1332723916}  m_LocalRotation: {x: 0, y: 1, z: 0, w: 0}  m_LocalPosition: {x: 15.42, y: -5.26, z: -0.000015795229}  m_LocalScale: {x: 27.5, y: 27.8, z: 25.820988}  m_ConstrainProportionsScale: 0  m_Children: []  m_Father: {fileID: 1633948837218199811}  m_RootOrder: 9  m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0}--- !u!33 &1332723919MeshFilter:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1332723916}  m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0}--- !u!23 &1332723918MeshRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1332723916}  m_Enabled: 1  m_CastShadows: 1  m_ReceiveShadows: 1  m_DynamicOccludee: 1  m_StaticShadowCaster: 0  m_MotionVectors: 1  m_LightProbeUsage: 1  m_ReflectionProbeUsage: 1  m_RayTracingMode: 2  m_RayTraceProcedural: 0  m_RenderingLayerMask: 1  m_RendererPriority: 0  m_Materials:  - {fileID: 2100000, guid: 1a4f2b2e6b997244eaa34fd7ad0d5944, type: 2}  m_StaticBatchInfo:    firstSubMesh: 0    subMeshCount: 0  m_StaticBatchRoot: {fileID: 0}  m_ProbeAnchor: {fileID: 0}  m_LightProbeVolumeOverride: {fileID: 0}  m_ScaleInLightmap: 1  m_ReceiveGI: 1  m_PreserveUVs: 0  m_IgnoreNormalsForChartDetection: 0  m_ImportantGI: 0  m_StitchLightmapSeams: 1  m_SelectedEditorRenderState: 3  m_MinimumChartSize: 4  m_AutoUVMaxDistance: 0.5  m_AutoUVMaxAngle: 89  m_LightmapParameters: {fileID: 0}  m_SortingLayerID: 0  m_SortingLayer: 0  m_SortingOrder: 0  m_AdditionalVertexStreams: {fileID: 0}--- !u!1 &1644283073GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 1644283074}  m_Layer: 0  m_Name: FixPoint  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!4 &1644283074Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1644283073}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0.5, y: -6.7, z: 0}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children:  - {fileID: 7646454593676123889}  - {fileID: 1060248767511300627}  - {fileID: 970675355}  m_Father: {fileID: 7069582396450853087}  m_RootOrder: 7  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!1 &1751002260GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 1751002261}  - component: {fileID: 1751002263}  - component: {fileID: 1751002262}  m_Layer: 0  m_Name: DongBu  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 0--- !u!4 &1751002261Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1751002260}  m_LocalRotation: {x: 0, y: 1, z: 0, w: 0}  m_LocalPosition: {x: -11.71, y: 12.31, z: -0.000015795229}  m_LocalScale: {x: 55.3, y: 27.657145, z: 34.46667}  m_ConstrainProportionsScale: 0  m_Children: []  m_Father: {fileID: 1633948837218199811}  m_RootOrder: 8  m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0}--- !u!33 &1751002263MeshFilter:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1751002260}  m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0}--- !u!23 &1751002262MeshRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1751002260}  m_Enabled: 1  m_CastShadows: 1  m_ReceiveShadows: 1  m_DynamicOccludee: 1  m_StaticShadowCaster: 0  m_MotionVectors: 1  m_LightProbeUsage: 1  m_ReflectionProbeUsage: 1  m_RayTracingMode: 2  m_RayTraceProcedural: 0  m_RenderingLayerMask: 1  m_RendererPriority: 0  m_Materials:  - {fileID: 2100000, guid: c48b7876618dc4340bf4fcfeb07808c1, type: 2}  m_StaticBatchInfo:    firstSubMesh: 0    subMeshCount: 0  m_StaticBatchRoot: {fileID: 0}  m_ProbeAnchor: {fileID: 0}  m_LightProbeVolumeOverride: {fileID: 0}  m_ScaleInLightmap: 1  m_ReceiveGI: 1  m_PreserveUVs: 0  m_IgnoreNormalsForChartDetection: 0  m_ImportantGI: 0  m_StitchLightmapSeams: 1  m_SelectedEditorRenderState: 3  m_MinimumChartSize: 4  m_AutoUVMaxDistance: 0.5  m_AutoUVMaxAngle: 89  m_LightmapParameters: {fileID: 0}  m_SortingLayerID: 0  m_SortingLayer: 0  m_SortingOrder: 0  m_AdditionalVertexStreams: {fileID: 0}--- !u!1 &2003060780GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 2003060781}  - component: {fileID: 2346122589074947712}  m_Layer: 0  m_Name: L10  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!4 &2003060781Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 2003060780}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 8.6, y: -6.7, z: 0}  m_LocalScale: {x: 28, y: 28, z: 28}  m_ConstrainProportionsScale: 1  m_Children: []  m_Father: {fileID: 7069582396450853087}  m_RootOrder: 0  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!114 &2346122589074947712MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 2003060780}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: 0579c1e5d5d7a4c4e8b1a9b0a7cdace8, type: 3}  m_Name:   m_EditorClassIdentifier:   nameHeard: L10_7x7  x_Count: 7  y_Count: 7  ab_Name: l10  TextureType: 1  initDone: 0--- !u!1 &496817698963821334GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 2567778366401332439}  - component: {fileID: 6067788808130706223}  m_Layer: 0  m_Name: L11  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!4 &2567778366401332439Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 496817698963821334}  m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}  m_LocalPosition: {x: 9.2, y: -3.62, z: -0.1}  m_LocalScale: {x: 28, y: 28, z: 28}  m_ConstrainProportionsScale: 1  m_Children: []  m_Father: {fileID: 7069582396450853087}  m_RootOrder: 1  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!114 &6067788808130706223MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 496817698963821334}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: 0579c1e5d5d7a4c4e8b1a9b0a7cdace8, type: 3}  m_Name:   m_EditorClassIdentifier:   nameHeard: L11_5x5  x_Count: 5  y_Count: 5  ab_Name: l11  TextureType: 1  initDone: 0--- !u!1 &788774413769781883GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 5026639989605541792}  m_Layer: 0  m_Name: StaticPoint  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!4 &5026639989605541792Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 788774413769781883}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0.5, y: -6.7, z: 0}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children: []  m_Father: {fileID: 7069582396450853087}  m_RootOrder: 8  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!1 &2353585198443455908GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 1217287279818896347}  m_Layer: 0  m_Name: MovePath1  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!4 &1217287279818896347Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 2353585198443455908}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0.5, y: -6.7, z: 0}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children: []  m_Father: {fileID: 7069582396450853087}  m_RootOrder: 14  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!1 &3851146091059575939GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 6547952347792271479}  - component: {fileID: 1372896261}  m_Layer: 0  m_Name: L14  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!4 &6547952347792271479Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 3851146091059575939}  m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}  m_LocalPosition: {x: 6.81, y: -0.95, z: -0.3}  m_LocalScale: {x: 7.03, y: 7.03, z: 7.03}  m_ConstrainProportionsScale: 1  m_Children: []  m_Father: {fileID: 7069582396450853087}  m_RootOrder: 4  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!114 &1372896261MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 3851146091059575939}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: 0579c1e5d5d7a4c4e8b1a9b0a7cdace8, type: 3}  m_Name:   m_EditorClassIdentifier:   nameHeard: L14_8x8  x_Count: 8  y_Count: 8  ab_Name: l14  TextureType: 1  initDone: 0--- !u!1 &4444992682839687692GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 7963525554212561013}  m_Layer: 0  m_Name: SWPoint  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!4 &7963525554212561013Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 4444992682839687692}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0.5, y: -6.7, z: 0}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children: []  m_Father: {fileID: 7069582396450853087}  m_RootOrder: 11  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!1 &4495922360462199476GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 986239157061919458}  - component: {fileID: 4800506167232718931}  m_Layer: 0  m_Name: L13  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!4 &986239157061919458Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 4495922360462199476}  m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}  m_LocalPosition: {x: 8.18, y: -2.64, z: -0.25}  m_LocalScale: {x: 7.01, y: 7.01, z: 7.01}  m_ConstrainProportionsScale: 1  m_Children: []  m_Father: {fileID: 7069582396450853087}  m_RootOrder: 3  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!114 &4800506167232718931MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 4495922360462199476}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: 0579c1e5d5d7a4c4e8b1a9b0a7cdace8, type: 3}  m_Name:   m_EditorClassIdentifier:   nameHeard: L13_12x12  x_Count: 12  y_Count: 12  ab_Name: l13  TextureType: 1  initDone: 0--- !u!1 &5076499884380538670GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 7761969530541602814}  m_Layer: 0  m_Name: HotPoint  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!4 &7761969530541602814Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 5076499884380538670}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0.5, y: -6.7, z: 0}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children: []  m_Father: {fileID: 7069582396450853087}  m_RootOrder: 9  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!1 &5608233843928584891GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 1829979977482383576}  m_Layer: 0  m_Name: SWHPoint  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!4 &1829979977482383576Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 5608233843928584891}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0.5, y: -6.7, z: 0}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children: []  m_Father: {fileID: 7069582396450853087}  m_RootOrder: 12  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!1 &6012870164663179780GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 7646454593676123889}  m_Layer: 0  m_Name: BY  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!4 &7646454593676123889Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 6012870164663179780}  m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}  m_LocalPosition: {x: 8.9, y: 15, z: -0.4000244}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children: []  m_Father: {fileID: 1644283074}  m_RootOrder: 0  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!1 &7033161969292257526GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 577233970219236087}  - component: {fileID: 1783256895343635419}  m_Layer: 0  m_Name: L12  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!4 &577233970219236087Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 7033161969292257526}  m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}  m_LocalPosition: {x: 6.97, y: -3.35, z: -0.2}  m_LocalScale: {x: 14, y: 14, z: 14}  m_ConstrainProportionsScale: 1  m_Children: []  m_Father: {fileID: 7069582396450853087}  m_RootOrder: 2  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!114 &1783256895343635419MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 7033161969292257526}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: 0579c1e5d5d7a4c4e8b1a9b0a7cdace8, type: 3}  m_Name:   m_EditorClassIdentifier:   nameHeard: L12_8x8  x_Count: 8  y_Count: 8  ab_Name: l12  TextureType: 1  initDone: 0--- !u!1 &7069582396450853080GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 7069582396450853087}  - component: {fileID: 7069582396450853086}  m_Layer: 0  m_Name: MiniMap  m_TagString: ShaPan  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!4 &7069582396450853087Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 7069582396450853080}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0, y: 50000, z: -582}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children:  - {fileID: 2003060781}  - {fileID: 2567778366401332439}  - {fileID: 577233970219236087}  - {fileID: 986239157061919458}  - {fileID: 6547952347792271479}  - {fileID: 6844525380024145275}  - {fileID: 7069582396837082649}  - {fileID: 1644283074}  - {fileID: 5026639989605541792}  - {fileID: 7761969530541602814}  - {fileID: 4541662238408593204}  - {fileID: 7963525554212561013}  - {fileID: 1829979977482383576}  - {fileID: 1216517146}  - {fileID: 1217287279818896347}  - {fileID: 249304408}  - {fileID: 1633948837218199811}  - {fileID: 1691922926128390705}  m_Father: {fileID: 0}  m_RootOrder: 0  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!114 &7069582396450853086MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 7069582396450853080}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: 479413ef6f1e064498ed1cc44ff34be7, type: 3}  m_Name:   m_EditorClassIdentifier:   cameraBirdSec: {fileID: 0}  MapList:  - map: {fileID: 2346122589074947712}    cameraDistanceMin: 1    cameraDistanceMax: 82    min_X_Range: {x: -90, y: 96}    max_X_Range: {x: 10, y: 52}    min_Y_Range: {x: 90, y: -105.2}    max_Y_Range: {x: 50, y: -58}  MapStayList:  - map: {fileID: 4078470270552625224}    cameraDistanceMin: 1    cameraDistanceMax: 2  - map: {fileID: 3338658208445031030}    cameraDistanceMin: 2    cameraDistanceMax: 4  - map: {fileID: 1372896261}    cameraDistanceMin: 4    cameraDistanceMax: 6  - map: {fileID: 4800506167232718931}    cameraDistanceMin: 6    cameraDistanceMax: 13  - map: {fileID: 1783256895343635419}    cameraDistanceMin: 13    cameraDistanceMax: 20  - map: {fileID: 6067788808130706223}    cameraDistanceMin: 20    cameraDistanceMax: 40--- !u!1 &7069582396837082650GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 7069582396837082649}  m_Layer: 0  m_Name: Target  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!4 &7069582396837082649Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 7069582396837082650}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0, y: 0, z: 0}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children: []  m_Father: {fileID: 7069582396450853087}  m_RootOrder: 6  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!1 &8100949840403879370GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 6844525380024145275}  - component: {fileID: 3338658208445031030}  m_Layer: 0  m_Name: L15  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!4 &6844525380024145275Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 8100949840403879370}  m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}  m_LocalPosition: {x: 7.88, y: -2.05, z: -0.35}  m_LocalScale: {x: 1.76, y: 1.76, z: 1.0507463}  m_ConstrainProportionsScale: 1  m_Children: []  m_Father: {fileID: 7069582396450853087}  m_RootOrder: 5  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!114 &3338658208445031030MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 8100949840403879370}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: 0579c1e5d5d7a4c4e8b1a9b0a7cdace8, type: 3}  m_Name:   m_EditorClassIdentifier:   nameHeard: L15_25x25  x_Count: 25  y_Count: 25  ab_Name: l15  TextureType: 1  initDone: 0--- !u!1 &8307865863041227054GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 4541662238408593204}  m_Layer: 0  m_Name: QXPoint  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!4 &4541662238408593204Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 8307865863041227054}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0.5, y: -6.7, z: 0}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children: []  m_Father: {fileID: 7069582396450853087}  m_RootOrder: 10  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!1 &8396125779924330567GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 1060248767511300627}  m_Layer: 0  m_Name: TK  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!4 &1060248767511300627Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 8396125779924330567}  m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}  m_LocalPosition: {x: -0.72, y: -7.2, z: -0.4000244}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children: []  m_Father: {fileID: 1644283074}  m_RootOrder: 1  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!1001 &570781578388849958PrefabInstance:  m_ObjectHideFlags: 0  serializedVersion: 2  m_Modification:    m_TransformParent: {fileID: 7069582396450853087}    m_Modifications:    - target: {fileID: 1245000231498148901, guid: 7b8c28b1a19051841ae93462c800f793, type: 3}      propertyPath: m_RootOrder      value: 16      objectReference: {fileID: 0}    - target: {fileID: 1245000231498148901, guid: 7b8c28b1a19051841ae93462c800f793, type: 3}      propertyPath: m_LocalPosition.x      value: -23.8      objectReference: {fileID: 0}    - target: {fileID: 1245000231498148901, guid: 7b8c28b1a19051841ae93462c800f793, type: 3}      propertyPath: m_LocalPosition.y      value: -23.6      objectReference: {fileID: 0}    - target: {fileID: 1245000231498148901, guid: 7b8c28b1a19051841ae93462c800f793, type: 3}      propertyPath: m_LocalPosition.z      value: -0.41      objectReference: {fileID: 0}    - target: {fileID: 1245000231498148901, guid: 7b8c28b1a19051841ae93462c800f793, type: 3}      propertyPath: m_LocalRotation.w      value: 0      objectReference: {fileID: 0}    - target: {fileID: 1245000231498148901, guid: 7b8c28b1a19051841ae93462c800f793, type: 3}      propertyPath: m_LocalRotation.x      value: -0.007853894      objectReference: {fileID: 0}    - target: {fileID: 1245000231498148901, guid: 7b8c28b1a19051841ae93462c800f793, type: 3}      propertyPath: m_LocalRotation.y      value: -0.9999692      objectReference: {fileID: 0}    - target: {fileID: 1245000231498148901, guid: 7b8c28b1a19051841ae93462c800f793, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 1245000231498148901, guid: 7b8c28b1a19051841ae93462c800f793, type: 3}      propertyPath: m_LocalEulerAnglesHint.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 1245000231498148901, guid: 7b8c28b1a19051841ae93462c800f793, type: 3}      propertyPath: m_LocalEulerAnglesHint.y      value: -180      objectReference: {fileID: 0}    - target: {fileID: 1245000231498148901, guid: 7b8c28b1a19051841ae93462c800f793, type: 3}      propertyPath: m_LocalEulerAnglesHint.z      value: 0.9      objectReference: {fileID: 0}    - target: {fileID: 1877140889987036831, guid: 7b8c28b1a19051841ae93462c800f793, type: 3}      propertyPath: m_Name      value: DiKuaiFenQu_Xian      objectReference: {fileID: 0}    m_RemovedComponents: []  m_SourcePrefab: {fileID: 100100000, guid: 7b8c28b1a19051841ae93462c800f793, type: 3}--- !u!4 &1633948837218199811 strippedTransform:  m_CorrespondingSourceObject: {fileID: 1245000231498148901, guid: 7b8c28b1a19051841ae93462c800f793, type: 3}  m_PrefabInstance: {fileID: 570781578388849958}  m_PrefabAsset: {fileID: 0}--- !u!1001 &4538045075646411049PrefabInstance:  m_ObjectHideFlags: 0  serializedVersion: 2  m_Modification:    m_TransformParent: {fileID: 7069582396450853087}    m_Modifications:    - target: {fileID: 21127194043423446, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 21127194043423446, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 21127194043423446, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 21127194043423446, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: 1.717      objectReference: {fileID: 0}    - target: {fileID: 21127194043423446, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: 0.766      objectReference: {fileID: 0}    - target: {fileID: 21127194043423446, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 21127194043423446, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 21127194043423446, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 21127194043423446, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_ConstrainProportionsScale      value: 1      objectReference: {fileID: 0}    - target: {fileID: 148150465529723200, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_IsActive      value: 1      objectReference: {fileID: 0}    - target: {fileID: 162898055866855365, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 162898055866855365, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 0.25      objectReference: {fileID: 0}    - target: {fileID: 162898055866855365, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 162898055866855365, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: 0.383      objectReference: {fileID: 0}    - target: {fileID: 162898055866855365, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: 0.4119      objectReference: {fileID: 0}    - target: {fileID: 162898055866855365, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 162898055866855365, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 162898055866855365, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 162898055866855365, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_ConstrainProportionsScale      value: 1      objectReference: {fileID: 0}    - target: {fileID: 402946090498408569, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 402946090498408569, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 402946090498408569, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 402946090498408569, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: 1.141      objectReference: {fileID: 0}    - target: {fileID: 402946090498408569, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: 0.483      objectReference: {fileID: 0}    - target: {fileID: 402946090498408569, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 402946090498408569, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 402946090498408569, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 402946090498408569, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_ConstrainProportionsScale      value: 1      objectReference: {fileID: 0}    - target: {fileID: 588265636494751074, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_IsActive      value: 1      objectReference: {fileID: 0}    - target: {fileID: 888007062422935139, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 888007062422935139, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 888007062422935139, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 888007062422935139, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: 0.6353      objectReference: {fileID: 0}    - target: {fileID: 888007062422935139, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: 0.398      objectReference: {fileID: 0}    - target: {fileID: 888007062422935139, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 888007062422935139, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 888007062422935139, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 1269207874810543266, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_IsActive      value: 1      objectReference: {fileID: 0}    - target: {fileID: 1369052837719070933, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_IsActive      value: 1      objectReference: {fileID: 0}    - target: {fileID: 1578159111950913851, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 1      objectReference: {fileID: 0}    - target: {fileID: 1578159111950913851, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 1578159111950913851, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 1578159111950913851, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: 0.565      objectReference: {fileID: 0}    - target: {fileID: 1578159111950913851, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: 0.6005      objectReference: {fileID: 0}    - target: {fileID: 1578159111950913851, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 1578159111950913851, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 1578159111950913851, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 1689849767362407541, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 1689849767362407541, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 1689849767362407541, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 1689849767362407541, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: 0.848      objectReference: {fileID: 0}    - target: {fileID: 1689849767362407541, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: 0.2388      objectReference: {fileID: 0}    - target: {fileID: 1689849767362407541, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 1689849767362407541, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 1689849767362407541, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 1837516221292663487, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_IsActive      value: 1      objectReference: {fileID: 0}    - target: {fileID: 1874944094510108421, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_IsActive      value: 1      objectReference: {fileID: 0}    - target: {fileID: 1946380635735644452, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_IsActive      value: 1      objectReference: {fileID: 0}    - target: {fileID: 2015479148185146851, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_IsActive      value: 1      objectReference: {fileID: 0}    - target: {fileID: 2240997030786838384, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 0.25      objectReference: {fileID: 0}    - target: {fileID: 2240997030786838384, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 0.25      objectReference: {fileID: 0}    - target: {fileID: 2240997030786838384, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 2240997030786838384, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: 1.02      objectReference: {fileID: 0}    - target: {fileID: 2240997030786838384, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: 0.263      objectReference: {fileID: 0}    - target: {fileID: 2240997030786838384, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 2240997030786838384, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 2240997030786838384, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 2240997030786838384, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_ConstrainProportionsScale      value: 0      objectReference: {fileID: 0}    - target: {fileID: 2434088909938186802, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 1      objectReference: {fileID: 0}    - target: {fileID: 2434088909938186802, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 2434088909938186802, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 2434088909938186802, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: -0.143      objectReference: {fileID: 0}    - target: {fileID: 2434088909938186802, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: 0.713      objectReference: {fileID: 0}    - target: {fileID: 2434088909938186802, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 2434088909938186802, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 2434088909938186802, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 2507209426718804386, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_Name      value: XingZhengDiKuai_Xian      objectReference: {fileID: 0}    - target: {fileID: 2784120691573953601, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_IsActive      value: 1      objectReference: {fileID: 0}    - target: {fileID: 2990589284498903832, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_RootOrder      value: 17      objectReference: {fileID: 0}    - target: {fileID: 2990589284498903832, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 1      objectReference: {fileID: 0}    - target: {fileID: 2990589284498903832, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 2990589284498903832, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 2990589284498903832, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: -14.22      objectReference: {fileID: 0}    - target: {fileID: 2990589284498903832, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: -13.85      objectReference: {fileID: 0}    - target: {fileID: 2990589284498903832, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.z      value: -0.5      objectReference: {fileID: 0}    - target: {fileID: 2990589284498903832, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.w      value: 0      objectReference: {fileID: 0}    - target: {fileID: 2990589284498903832, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 2990589284498903832, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: -1      objectReference: {fileID: 0}    - target: {fileID: 2990589284498903832, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 2990589284498903832, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalEulerAnglesHint.x      value: 180      objectReference: {fileID: 0}    - target: {fileID: 2990589284498903832, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalEulerAnglesHint.y      value: 0      objectReference: {fileID: 0}    - target: {fileID: 2990589284498903832, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalEulerAnglesHint.z      value: 180      objectReference: {fileID: 0}    - target: {fileID: 3019560991036591661, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_IsActive      value: 1      objectReference: {fileID: 0}    - target: {fileID: 3263104369301884913, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 3263104369301884913, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 3263104369301884913, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 3263104369301884913, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: 0.919      objectReference: {fileID: 0}    - target: {fileID: 3263104369301884913, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: 0.5629      objectReference: {fileID: 0}    - target: {fileID: 3263104369301884913, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 3263104369301884913, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 3263104369301884913, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 3263104369301884913, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_ConstrainProportionsScale      value: 1      objectReference: {fileID: 0}    - target: {fileID: 3565016498958312567, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_IsActive      value: 1      objectReference: {fileID: 0}    - target: {fileID: 3671524370102588092, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_IsActive      value: 1      objectReference: {fileID: 0}    - target: {fileID: 3740433536785099965, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 0.25      objectReference: {fileID: 0}    - target: {fileID: 3740433536785099965, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 0.25      objectReference: {fileID: 0}    - target: {fileID: 3740433536785099965, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 3740433536785099965, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: 1.7812      objectReference: {fileID: 0}    - target: {fileID: 3740433536785099965, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: 0.3753      objectReference: {fileID: 0}    - target: {fileID: 3740433536785099965, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 3740433536785099965, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 3740433536785099965, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 3758199495302295867, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_IsActive      value: 1      objectReference: {fileID: 0}    - target: {fileID: 4157610904403927237, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 1      objectReference: {fileID: 0}    - target: {fileID: 4157610904403927237, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 4157610904403927237, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 4157610904403927237, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: 1.4424      objectReference: {fileID: 0}    - target: {fileID: 4157610904403927237, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: 0.3839      objectReference: {fileID: 0}    - target: {fileID: 4157610904403927237, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 4157610904403927237, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 4157610904403927237, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 4473153191546403280, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_IsActive      value: 1      objectReference: {fileID: 0}    - target: {fileID: 5319604216783182882, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 1      objectReference: {fileID: 0}    - target: {fileID: 5319604216783182882, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 5319604216783182882, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 5319604216783182882, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: 0.281      objectReference: {fileID: 0}    - target: {fileID: 5319604216783182882, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: 0.616      objectReference: {fileID: 0}    - target: {fileID: 5319604216783182882, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 5319604216783182882, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 5319604216783182882, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 5319604216783182882, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_ConstrainProportionsScale      value: 1      objectReference: {fileID: 0}    - target: {fileID: 5503933028838177973, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 1      objectReference: {fileID: 0}    - target: {fileID: 5503933028838177973, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 5503933028838177973, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 5503933028838177973, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: 1.34      objectReference: {fileID: 0}    - target: {fileID: 5503933028838177973, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: 0.1      objectReference: {fileID: 0}    - target: {fileID: 5503933028838177973, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 5503933028838177973, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 5503933028838177973, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 5616264070580018033, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_IsActive      value: 1      objectReference: {fileID: 0}    - target: {fileID: 5875966917060573292, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 0.25      objectReference: {fileID: 0}    - target: {fileID: 5875966917060573292, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 0.25      objectReference: {fileID: 0}    - target: {fileID: 5875966917060573292, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 5875966917060573292, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: 1.898      objectReference: {fileID: 0}    - target: {fileID: 5875966917060573292, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: 0.798      objectReference: {fileID: 0}    - target: {fileID: 5875966917060573292, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 5875966917060573292, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 5875966917060573292, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 6074722997930438970, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_IsActive      value: 1      objectReference: {fileID: 0}    - target: {fileID: 6406893605000583301, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 6406893605000583301, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 6406893605000583301, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 6406893605000583301, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: 1.379      objectReference: {fileID: 0}    - target: {fileID: 6406893605000583301, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: 0.781      objectReference: {fileID: 0}    - target: {fileID: 6406893605000583301, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 6406893605000583301, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 6406893605000583301, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 6406893605000583301, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_ConstrainProportionsScale      value: 1      objectReference: {fileID: 0}    - target: {fileID: 7000670805765519482, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_IsActive      value: 1      objectReference: {fileID: 0}    - target: {fileID: 7193369540971345653, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_IsActive      value: 1      objectReference: {fileID: 0}    - target: {fileID: 7238711331821522538, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 7238711331821522538, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 7238711331821522538, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 7238711331821522538, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: 1.737      objectReference: {fileID: 0}    - target: {fileID: 7238711331821522538, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: 0.558      objectReference: {fileID: 0}    - target: {fileID: 7238711331821522538, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 7238711331821522538, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 7238711331821522538, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 7399010576373891178, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 1      objectReference: {fileID: 0}    - target: {fileID: 7399010576373891178, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 7399010576373891178, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 7399010576373891178, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: 1.3808      objectReference: {fileID: 0}    - target: {fileID: 7399010576373891178, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: -0.1382      objectReference: {fileID: 0}    - target: {fileID: 7399010576373891178, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 7399010576373891178, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 7399010576373891178, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 7399010576373891178, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_ConstrainProportionsScale      value: 0      objectReference: {fileID: 0}    - target: {fileID: 7771207622075457162, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 7771207622075457162, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 7771207622075457162, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 7771207622075457162, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: 1.147      objectReference: {fileID: 0}    - target: {fileID: 7771207622075457162, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: 0.0638      objectReference: {fileID: 0}    - target: {fileID: 7771207622075457162, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 7771207622075457162, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 7771207622075457162, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 8020036180162707082, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 1      objectReference: {fileID: 0}    - target: {fileID: 8020036180162707082, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 8020036180162707082, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 8020036180162707082, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: 0.077      objectReference: {fileID: 0}    - target: {fileID: 8020036180162707082, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: 0.85      objectReference: {fileID: 0}    - target: {fileID: 8020036180162707082, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 8020036180162707082, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 8020036180162707082, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 8020036180162707082, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_ConstrainProportionsScale      value: 1      objectReference: {fileID: 0}    - target: {fileID: 8486056063467359297, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.x      value: 1      objectReference: {fileID: 0}    - target: {fileID: 8486056063467359297, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.y      value: 0.5      objectReference: {fileID: 0}    - target: {fileID: 8486056063467359297, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalScale.z      value: 1      objectReference: {fileID: 0}    - target: {fileID: 8486056063467359297, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.x      value: 1.31      objectReference: {fileID: 0}    - target: {fileID: 8486056063467359297, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalPosition.y      value: 0.688      objectReference: {fileID: 0}    - target: {fileID: 8486056063467359297, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.x      value: 0      objectReference: {fileID: 0}    - target: {fileID: 8486056063467359297, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.y      value: 1      objectReference: {fileID: 0}    - target: {fileID: 8486056063467359297, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_LocalRotation.z      value: 0      objectReference: {fileID: 0}    - target: {fileID: 8486056063467359297, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_ConstrainProportionsScale      value: 1      objectReference: {fileID: 0}    - target: {fileID: 8804131743661659201, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_IsActive      value: 1      objectReference: {fileID: 0}    - target: {fileID: 8818508504351095860, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}      propertyPath: m_IsActive      value: 1      objectReference: {fileID: 0}    m_RemovedComponents: []  m_SourcePrefab: {fileID: 100100000, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}--- !u!4 &1691922926128390705 strippedTransform:  m_CorrespondingSourceObject: {fileID: 2990589284498903832, guid: cae3d6b8a5bc9f743ab7a89d62224623, type: 3}  m_PrefabInstance: {fileID: 4538045075646411049}  m_PrefabAsset: {fileID: 0}
 |