TripHelper ER.drawio 176 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791
  1. <mxfile host="Electron" agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/24.1.0 Chrome/120.0.6099.109 Electron/28.1.0 Safari/537.36" modified="2024-10-25T17:34:12.279Z" version="24.1.0" etag="2INrKz3wWlqC2oCkZf10" type="device">
  2. <diagram name="Страница — 1" id="bYKdWw0ViSdtr9okCkns">
  3. <mxGraphModel dx="1518" dy="-418" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
  4. <root>
  5. <mxCell id="0" />
  6. <mxCell id="1" parent="0" />
  7. <mxCell id="GCTWj422pI3h6kLligze-1" value="Users" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;strokeColor=default;fontSize=16;" parent="1" vertex="1">
  8. <mxGeometry x="1580" y="1440" width="290" height="196" as="geometry" />
  9. </mxCell>
  10. <mxCell id="GCTWj422pI3h6kLligze-2" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-1" vertex="1">
  11. <mxGeometry y="30" width="290" height="34" as="geometry" />
  12. </mxCell>
  13. <mxCell id="GCTWj422pI3h6kLligze-3" value="Key" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-2" vertex="1">
  14. <mxGeometry width="70" height="34" as="geometry">
  15. <mxRectangle width="70" height="34" as="alternateBounds" />
  16. </mxGeometry>
  17. </mxCell>
  18. <mxCell id="GCTWj422pI3h6kLligze-4" value="Title" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-2" vertex="1">
  19. <mxGeometry x="70" width="123" height="34" as="geometry">
  20. <mxRectangle width="123" height="34" as="alternateBounds" />
  21. </mxGeometry>
  22. </mxCell>
  23. <mxCell id="GCTWj422pI3h6kLligze-5" value="Data type" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-2" vertex="1">
  24. <mxGeometry x="193" width="97" height="34" as="geometry">
  25. <mxRectangle width="97" height="34" as="alternateBounds" />
  26. </mxGeometry>
  27. </mxCell>
  28. <mxCell id="EHfPEwggzIhnKUcyckGd-63" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-1" vertex="1">
  29. <mxGeometry y="64" width="290" height="32" as="geometry" />
  30. </mxCell>
  31. <mxCell id="EHfPEwggzIhnKUcyckGd-64" value="PK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-63" vertex="1">
  32. <mxGeometry width="70" height="32" as="geometry">
  33. <mxRectangle width="70" height="32" as="alternateBounds" />
  34. </mxGeometry>
  35. </mxCell>
  36. <mxCell id="EHfPEwggzIhnKUcyckGd-65" value="Id" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-63" vertex="1">
  37. <mxGeometry x="70" width="123" height="32" as="geometry">
  38. <mxRectangle width="123" height="32" as="alternateBounds" />
  39. </mxGeometry>
  40. </mxCell>
  41. <mxCell id="EHfPEwggzIhnKUcyckGd-66" value="uuid" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-63" vertex="1">
  42. <mxGeometry x="193" width="97" height="32" as="geometry">
  43. <mxRectangle width="97" height="32" as="alternateBounds" />
  44. </mxGeometry>
  45. </mxCell>
  46. <mxCell id="GCTWj422pI3h6kLligze-6" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-1" vertex="1">
  47. <mxGeometry y="96" width="290" height="32" as="geometry" />
  48. </mxCell>
  49. <mxCell id="GCTWj422pI3h6kLligze-7" value="FK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-6" vertex="1">
  50. <mxGeometry width="70" height="32" as="geometry">
  51. <mxRectangle width="70" height="32" as="alternateBounds" />
  52. </mxGeometry>
  53. </mxCell>
  54. <mxCell id="GCTWj422pI3h6kLligze-8" value="country" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-6" vertex="1">
  55. <mxGeometry x="70" width="123" height="32" as="geometry">
  56. <mxRectangle width="123" height="32" as="alternateBounds" />
  57. </mxGeometry>
  58. </mxCell>
  59. <mxCell id="GCTWj422pI3h6kLligze-9" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-6" vertex="1">
  60. <mxGeometry x="193" width="97" height="32" as="geometry">
  61. <mxRectangle width="97" height="32" as="alternateBounds" />
  62. </mxGeometry>
  63. </mxCell>
  64. <mxCell id="GCTWj422pI3h6kLligze-10" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-1" vertex="1">
  65. <mxGeometry y="128" width="290" height="34" as="geometry" />
  66. </mxCell>
  67. <mxCell id="GCTWj422pI3h6kLligze-11" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-10" vertex="1">
  68. <mxGeometry width="70" height="34" as="geometry">
  69. <mxRectangle width="70" height="34" as="alternateBounds" />
  70. </mxGeometry>
  71. </mxCell>
  72. <mxCell id="GCTWj422pI3h6kLligze-12" value="name" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-10" vertex="1">
  73. <mxGeometry x="70" width="123" height="34" as="geometry">
  74. <mxRectangle width="123" height="34" as="alternateBounds" />
  75. </mxGeometry>
  76. </mxCell>
  77. <mxCell id="GCTWj422pI3h6kLligze-13" value="varchar(50)" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-10" vertex="1">
  78. <mxGeometry x="193" width="97" height="34" as="geometry">
  79. <mxRectangle width="97" height="34" as="alternateBounds" />
  80. </mxGeometry>
  81. </mxCell>
  82. <mxCell id="GCTWj422pI3h6kLligze-18" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-1" vertex="1">
  83. <mxGeometry y="162" width="290" height="34" as="geometry" />
  84. </mxCell>
  85. <mxCell id="GCTWj422pI3h6kLligze-19" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-18" vertex="1">
  86. <mxGeometry width="70" height="34" as="geometry">
  87. <mxRectangle width="70" height="34" as="alternateBounds" />
  88. </mxGeometry>
  89. </mxCell>
  90. <mxCell id="GCTWj422pI3h6kLligze-20" value="avatar" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-18" vertex="1">
  91. <mxGeometry x="70" width="123" height="34" as="geometry">
  92. <mxRectangle width="123" height="34" as="alternateBounds" />
  93. </mxGeometry>
  94. </mxCell>
  95. <mxCell id="GCTWj422pI3h6kLligze-21" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-18" vertex="1">
  96. <mxGeometry x="193" width="97" height="34" as="geometry">
  97. <mxRectangle width="97" height="34" as="alternateBounds" />
  98. </mxGeometry>
  99. </mxCell>
  100. <mxCell id="GCTWj422pI3h6kLligze-22" value="Country" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;strokeColor=default;fontSize=16;" parent="1" vertex="1">
  101. <mxGeometry x="1140" y="1650" width="290" height="162" as="geometry" />
  102. </mxCell>
  103. <mxCell id="GCTWj422pI3h6kLligze-23" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-22" vertex="1">
  104. <mxGeometry y="30" width="290" height="34" as="geometry" />
  105. </mxCell>
  106. <mxCell id="GCTWj422pI3h6kLligze-24" value="Key" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-23" vertex="1">
  107. <mxGeometry width="60" height="34" as="geometry">
  108. <mxRectangle width="60" height="34" as="alternateBounds" />
  109. </mxGeometry>
  110. </mxCell>
  111. <mxCell id="GCTWj422pI3h6kLligze-25" value="Title" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-23" vertex="1">
  112. <mxGeometry x="60" width="133" height="34" as="geometry">
  113. <mxRectangle width="133" height="34" as="alternateBounds" />
  114. </mxGeometry>
  115. </mxCell>
  116. <mxCell id="GCTWj422pI3h6kLligze-26" value="Data type" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-23" vertex="1">
  117. <mxGeometry x="193" width="97" height="34" as="geometry">
  118. <mxRectangle width="97" height="34" as="alternateBounds" />
  119. </mxGeometry>
  120. </mxCell>
  121. <mxCell id="GCTWj422pI3h6kLligze-27" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-22" vertex="1">
  122. <mxGeometry y="64" width="290" height="32" as="geometry" />
  123. </mxCell>
  124. <mxCell id="GCTWj422pI3h6kLligze-28" value="PK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-27" vertex="1">
  125. <mxGeometry width="60" height="32" as="geometry">
  126. <mxRectangle width="60" height="32" as="alternateBounds" />
  127. </mxGeometry>
  128. </mxCell>
  129. <mxCell id="GCTWj422pI3h6kLligze-29" value="Id" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-27" vertex="1">
  130. <mxGeometry x="60" width="133" height="32" as="geometry">
  131. <mxRectangle width="133" height="32" as="alternateBounds" />
  132. </mxGeometry>
  133. </mxCell>
  134. <mxCell id="GCTWj422pI3h6kLligze-30" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-27" vertex="1">
  135. <mxGeometry x="193" width="97" height="32" as="geometry">
  136. <mxRectangle width="97" height="32" as="alternateBounds" />
  137. </mxGeometry>
  138. </mxCell>
  139. <mxCell id="GCTWj422pI3h6kLligze-482" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-22" vertex="1">
  140. <mxGeometry y="96" width="290" height="32" as="geometry" />
  141. </mxCell>
  142. <mxCell id="GCTWj422pI3h6kLligze-483" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-482" vertex="1">
  143. <mxGeometry width="60" height="32" as="geometry">
  144. <mxRectangle width="60" height="32" as="alternateBounds" />
  145. </mxGeometry>
  146. </mxCell>
  147. <mxCell id="GCTWj422pI3h6kLligze-484" value="flag" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-482" vertex="1">
  148. <mxGeometry x="60" width="133" height="32" as="geometry">
  149. <mxRectangle width="133" height="32" as="alternateBounds" />
  150. </mxGeometry>
  151. </mxCell>
  152. <mxCell id="GCTWj422pI3h6kLligze-485" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-482" vertex="1">
  153. <mxGeometry x="193" width="97" height="32" as="geometry">
  154. <mxRectangle width="97" height="32" as="alternateBounds" />
  155. </mxGeometry>
  156. </mxCell>
  157. <mxCell id="GCTWj422pI3h6kLligze-31" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-22" vertex="1">
  158. <mxGeometry y="128" width="290" height="34" as="geometry" />
  159. </mxCell>
  160. <mxCell id="GCTWj422pI3h6kLligze-32" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-31" vertex="1">
  161. <mxGeometry width="60" height="34" as="geometry">
  162. <mxRectangle width="60" height="34" as="alternateBounds" />
  163. </mxGeometry>
  164. </mxCell>
  165. <mxCell id="GCTWj422pI3h6kLligze-33" value="title" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-31" vertex="1">
  166. <mxGeometry x="60" width="133" height="34" as="geometry">
  167. <mxRectangle width="133" height="34" as="alternateBounds" />
  168. </mxGeometry>
  169. </mxCell>
  170. <mxCell id="GCTWj422pI3h6kLligze-34" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-31" vertex="1">
  171. <mxGeometry x="193" width="97" height="34" as="geometry">
  172. <mxRectangle width="97" height="34" as="alternateBounds" />
  173. </mxGeometry>
  174. </mxCell>
  175. <mxCell id="GCTWj422pI3h6kLligze-43" value="City" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;strokeColor=default;fontSize=16;" parent="1" vertex="1">
  176. <mxGeometry x="1230" y="1890" width="290" height="199" as="geometry" />
  177. </mxCell>
  178. <mxCell id="GCTWj422pI3h6kLligze-44" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-43" vertex="1">
  179. <mxGeometry y="30" width="290" height="43" as="geometry" />
  180. </mxCell>
  181. <mxCell id="GCTWj422pI3h6kLligze-45" value="Key" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-44" vertex="1">
  182. <mxGeometry width="60" height="43" as="geometry">
  183. <mxRectangle width="60" height="43" as="alternateBounds" />
  184. </mxGeometry>
  185. </mxCell>
  186. <mxCell id="GCTWj422pI3h6kLligze-46" value="Title" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-44" vertex="1">
  187. <mxGeometry x="60" width="133" height="43" as="geometry">
  188. <mxRectangle width="133" height="43" as="alternateBounds" />
  189. </mxGeometry>
  190. </mxCell>
  191. <mxCell id="GCTWj422pI3h6kLligze-47" value="Data type" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-44" vertex="1">
  192. <mxGeometry x="193" width="97" height="43" as="geometry">
  193. <mxRectangle width="97" height="43" as="alternateBounds" />
  194. </mxGeometry>
  195. </mxCell>
  196. <mxCell id="GCTWj422pI3h6kLligze-48" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-43" vertex="1">
  197. <mxGeometry y="73" width="290" height="40" as="geometry" />
  198. </mxCell>
  199. <mxCell id="GCTWj422pI3h6kLligze-49" value="PK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-48" vertex="1">
  200. <mxGeometry width="60" height="40" as="geometry">
  201. <mxRectangle width="60" height="40" as="alternateBounds" />
  202. </mxGeometry>
  203. </mxCell>
  204. <mxCell id="GCTWj422pI3h6kLligze-50" value="Id" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-48" vertex="1">
  205. <mxGeometry x="60" width="133" height="40" as="geometry">
  206. <mxRectangle width="133" height="40" as="alternateBounds" />
  207. </mxGeometry>
  208. </mxCell>
  209. <mxCell id="GCTWj422pI3h6kLligze-51" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-48" vertex="1">
  210. <mxGeometry x="193" width="97" height="40" as="geometry">
  211. <mxRectangle width="97" height="40" as="alternateBounds" />
  212. </mxGeometry>
  213. </mxCell>
  214. <mxCell id="GCTWj422pI3h6kLligze-56" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-43" vertex="1">
  215. <mxGeometry y="113" width="290" height="43" as="geometry" />
  216. </mxCell>
  217. <mxCell id="GCTWj422pI3h6kLligze-57" value="FK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-56" vertex="1">
  218. <mxGeometry width="60" height="43" as="geometry">
  219. <mxRectangle width="60" height="43" as="alternateBounds" />
  220. </mxGeometry>
  221. </mxCell>
  222. <mxCell id="GCTWj422pI3h6kLligze-58" value="country" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-56" vertex="1">
  223. <mxGeometry x="60" width="133" height="43" as="geometry">
  224. <mxRectangle width="133" height="43" as="alternateBounds" />
  225. </mxGeometry>
  226. </mxCell>
  227. <mxCell id="GCTWj422pI3h6kLligze-59" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-56" vertex="1">
  228. <mxGeometry x="193" width="97" height="43" as="geometry">
  229. <mxRectangle width="97" height="43" as="alternateBounds" />
  230. </mxGeometry>
  231. </mxCell>
  232. <mxCell id="EHfPEwggzIhnKUcyckGd-94" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-43" vertex="1">
  233. <mxGeometry y="156" width="290" height="43" as="geometry" />
  234. </mxCell>
  235. <mxCell id="EHfPEwggzIhnKUcyckGd-95" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-94" vertex="1">
  236. <mxGeometry width="60" height="43" as="geometry">
  237. <mxRectangle width="60" height="43" as="alternateBounds" />
  238. </mxGeometry>
  239. </mxCell>
  240. <mxCell id="EHfPEwggzIhnKUcyckGd-96" value="title" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-94" vertex="1">
  241. <mxGeometry x="60" width="133" height="43" as="geometry">
  242. <mxRectangle width="133" height="43" as="alternateBounds" />
  243. </mxGeometry>
  244. </mxCell>
  245. <mxCell id="EHfPEwggzIhnKUcyckGd-97" value="varchar(100)" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-94" vertex="1">
  246. <mxGeometry x="193" width="97" height="43" as="geometry">
  247. <mxRectangle width="97" height="43" as="alternateBounds" />
  248. </mxGeometry>
  249. </mxCell>
  250. <mxCell id="GCTWj422pI3h6kLligze-60" value="Attractions" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;strokeColor=default;fontSize=16;" parent="1" vertex="1">
  251. <mxGeometry x="769.86" y="2230" width="290" height="534" as="geometry" />
  252. </mxCell>
  253. <mxCell id="GCTWj422pI3h6kLligze-61" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-60" vertex="1">
  254. <mxGeometry y="30" width="290" height="34" as="geometry" />
  255. </mxCell>
  256. <mxCell id="GCTWj422pI3h6kLligze-62" value="Key" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-61" vertex="1">
  257. <mxGeometry width="70" height="34" as="geometry">
  258. <mxRectangle width="70" height="34" as="alternateBounds" />
  259. </mxGeometry>
  260. </mxCell>
  261. <mxCell id="GCTWj422pI3h6kLligze-63" value="Title" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-61" vertex="1">
  262. <mxGeometry x="70" width="120" height="34" as="geometry">
  263. <mxRectangle width="120" height="34" as="alternateBounds" />
  264. </mxGeometry>
  265. </mxCell>
  266. <mxCell id="GCTWj422pI3h6kLligze-64" value="Data type" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-61" vertex="1">
  267. <mxGeometry x="190" width="100" height="34" as="geometry">
  268. <mxRectangle width="100" height="34" as="alternateBounds" />
  269. </mxGeometry>
  270. </mxCell>
  271. <mxCell id="GCTWj422pI3h6kLligze-65" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-60" vertex="1">
  272. <mxGeometry y="64" width="290" height="32" as="geometry" />
  273. </mxCell>
  274. <mxCell id="GCTWj422pI3h6kLligze-66" value="PK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-65" vertex="1">
  275. <mxGeometry width="70" height="32" as="geometry">
  276. <mxRectangle width="70" height="32" as="alternateBounds" />
  277. </mxGeometry>
  278. </mxCell>
  279. <mxCell id="GCTWj422pI3h6kLligze-67" value="Id" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-65" vertex="1">
  280. <mxGeometry x="70" width="120" height="32" as="geometry">
  281. <mxRectangle width="120" height="32" as="alternateBounds" />
  282. </mxGeometry>
  283. </mxCell>
  284. <mxCell id="GCTWj422pI3h6kLligze-68" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-65" vertex="1">
  285. <mxGeometry x="190" width="100" height="32" as="geometry">
  286. <mxRectangle width="100" height="32" as="alternateBounds" />
  287. </mxGeometry>
  288. </mxCell>
  289. <mxCell id="EHfPEwggzIhnKUcyckGd-1" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-60" vertex="1">
  290. <mxGeometry y="96" width="290" height="32" as="geometry" />
  291. </mxCell>
  292. <mxCell id="EHfPEwggzIhnKUcyckGd-2" value="FK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-1" vertex="1">
  293. <mxGeometry width="70" height="32" as="geometry">
  294. <mxRectangle width="70" height="32" as="alternateBounds" />
  295. </mxGeometry>
  296. </mxCell>
  297. <mxCell id="EHfPEwggzIhnKUcyckGd-3" value="city" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-1" vertex="1">
  298. <mxGeometry x="70" width="120" height="32" as="geometry">
  299. <mxRectangle width="120" height="32" as="alternateBounds" />
  300. </mxGeometry>
  301. </mxCell>
  302. <mxCell id="EHfPEwggzIhnKUcyckGd-4" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-1" vertex="1">
  303. <mxGeometry x="190" width="100" height="32" as="geometry">
  304. <mxRectangle width="100" height="32" as="alternateBounds" />
  305. </mxGeometry>
  306. </mxCell>
  307. <mxCell id="GCTWj422pI3h6kLligze-101" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-60" vertex="1">
  308. <mxGeometry y="128" width="290" height="32" as="geometry" />
  309. </mxCell>
  310. <mxCell id="GCTWj422pI3h6kLligze-102" value="FK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-101" vertex="1">
  311. <mxGeometry width="70" height="32" as="geometry">
  312. <mxRectangle width="70" height="32" as="alternateBounds" />
  313. </mxGeometry>
  314. </mxCell>
  315. <mxCell id="GCTWj422pI3h6kLligze-103" value="&lt;span style=&quot;white-space-collapse: preserve;&quot;&gt;currency&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-101" vertex="1">
  316. <mxGeometry x="70" width="120" height="32" as="geometry">
  317. <mxRectangle width="120" height="32" as="alternateBounds" />
  318. </mxGeometry>
  319. </mxCell>
  320. <mxCell id="GCTWj422pI3h6kLligze-104" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-101" vertex="1">
  321. <mxGeometry x="190" width="100" height="32" as="geometry">
  322. <mxRectangle width="100" height="32" as="alternateBounds" />
  323. </mxGeometry>
  324. </mxCell>
  325. <mxCell id="EHfPEwggzIhnKUcyckGd-9" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-60" vertex="1">
  326. <mxGeometry y="160" width="290" height="34" as="geometry" />
  327. </mxCell>
  328. <mxCell id="EHfPEwggzIhnKUcyckGd-10" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-9" vertex="1">
  329. <mxGeometry width="70" height="34" as="geometry">
  330. <mxRectangle width="70" height="34" as="alternateBounds" />
  331. </mxGeometry>
  332. </mxCell>
  333. <mxCell id="EHfPEwggzIhnKUcyckGd-11" value="name" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-9" vertex="1">
  334. <mxGeometry x="70" width="120" height="34" as="geometry">
  335. <mxRectangle width="120" height="34" as="alternateBounds" />
  336. </mxGeometry>
  337. </mxCell>
  338. <mxCell id="EHfPEwggzIhnKUcyckGd-12" value="varchar(100)" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-9" vertex="1">
  339. <mxGeometry x="190" width="100" height="34" as="geometry">
  340. <mxRectangle width="100" height="34" as="alternateBounds" />
  341. </mxGeometry>
  342. </mxCell>
  343. <mxCell id="EHfPEwggzIhnKUcyckGd-13" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-60" vertex="1">
  344. <mxGeometry y="194" width="290" height="34" as="geometry" />
  345. </mxCell>
  346. <mxCell id="EHfPEwggzIhnKUcyckGd-14" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-13" vertex="1">
  347. <mxGeometry width="70" height="34" as="geometry">
  348. <mxRectangle width="70" height="34" as="alternateBounds" />
  349. </mxGeometry>
  350. </mxCell>
  351. <mxCell id="EHfPEwggzIhnKUcyckGd-15" value="visiting" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-13" vertex="1">
  352. <mxGeometry x="70" width="120" height="34" as="geometry">
  353. <mxRectangle width="120" height="34" as="alternateBounds" />
  354. </mxGeometry>
  355. </mxCell>
  356. <mxCell id="EHfPEwggzIhnKUcyckGd-16" value="varchar(100)" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-13" vertex="1">
  357. <mxGeometry x="190" width="100" height="34" as="geometry">
  358. <mxRectangle width="100" height="34" as="alternateBounds" />
  359. </mxGeometry>
  360. </mxCell>
  361. <mxCell id="EHfPEwggzIhnKUcyckGd-17" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-60" vertex="1">
  362. <mxGeometry y="228" width="290" height="34" as="geometry" />
  363. </mxCell>
  364. <mxCell id="EHfPEwggzIhnKUcyckGd-18" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-17" vertex="1">
  365. <mxGeometry width="70" height="34" as="geometry">
  366. <mxRectangle width="70" height="34" as="alternateBounds" />
  367. </mxGeometry>
  368. </mxCell>
  369. <mxCell id="EHfPEwggzIhnKUcyckGd-19" value="&lt;span style=&quot;white-space-collapse: preserve;&quot; data-src-align=&quot;7:6&quot; class=&quot;EzKURWReUAB5oZgtQNkl&quot;&gt;work_&lt;/span&gt;&lt;span style=&quot;white-space-collapse: preserve;&quot; data-src-align=&quot;0:6&quot; class=&quot;EzKURWReUAB5oZgtQNkl&quot;&gt;schedule&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-17" vertex="1">
  370. <mxGeometry x="70" width="120" height="34" as="geometry">
  371. <mxRectangle width="120" height="34" as="alternateBounds" />
  372. </mxGeometry>
  373. </mxCell>
  374. <mxCell id="EHfPEwggzIhnKUcyckGd-20" value="varchar(100)" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-17" vertex="1">
  375. <mxGeometry x="190" width="100" height="34" as="geometry">
  376. <mxRectangle width="100" height="34" as="alternateBounds" />
  377. </mxGeometry>
  378. </mxCell>
  379. <mxCell id="GCTWj422pI3h6kLligze-69" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-60" vertex="1">
  380. <mxGeometry y="262" width="290" height="34" as="geometry" />
  381. </mxCell>
  382. <mxCell id="GCTWj422pI3h6kLligze-70" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-69" vertex="1">
  383. <mxGeometry width="70" height="34" as="geometry">
  384. <mxRectangle width="70" height="34" as="alternateBounds" />
  385. </mxGeometry>
  386. </mxCell>
  387. <mxCell id="GCTWj422pI3h6kLligze-71" value="&lt;span style=&quot;white-space-collapse: preserve;&quot;&gt;price_showing&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-69" vertex="1">
  388. <mxGeometry x="70" width="120" height="34" as="geometry">
  389. <mxRectangle width="120" height="34" as="alternateBounds" />
  390. </mxGeometry>
  391. </mxCell>
  392. <mxCell id="GCTWj422pI3h6kLligze-72" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-69" vertex="1">
  393. <mxGeometry x="190" width="100" height="34" as="geometry">
  394. <mxRectangle width="100" height="34" as="alternateBounds" />
  395. </mxGeometry>
  396. </mxCell>
  397. <mxCell id="GCTWj422pI3h6kLligze-150" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-60" vertex="1">
  398. <mxGeometry y="296" width="290" height="34" as="geometry" />
  399. </mxCell>
  400. <mxCell id="GCTWj422pI3h6kLligze-151" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-150" vertex="1">
  401. <mxGeometry width="70" height="34" as="geometry">
  402. <mxRectangle width="70" height="34" as="alternateBounds" />
  403. </mxGeometry>
  404. </mxCell>
  405. <mxCell id="GCTWj422pI3h6kLligze-152" value="photo" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-150" vertex="1">
  406. <mxGeometry x="70" width="120" height="34" as="geometry">
  407. <mxRectangle width="120" height="34" as="alternateBounds" />
  408. </mxGeometry>
  409. </mxCell>
  410. <mxCell id="GCTWj422pI3h6kLligze-153" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-150" vertex="1">
  411. <mxGeometry x="190" width="100" height="34" as="geometry">
  412. <mxRectangle width="100" height="34" as="alternateBounds" />
  413. </mxGeometry>
  414. </mxCell>
  415. <mxCell id="GCTWj422pI3h6kLligze-73" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-60" vertex="1">
  416. <mxGeometry y="330" width="290" height="34" as="geometry" />
  417. </mxCell>
  418. <mxCell id="GCTWj422pI3h6kLligze-74" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-73" vertex="1">
  419. <mxGeometry width="70" height="34" as="geometry">
  420. <mxRectangle width="70" height="34" as="alternateBounds" />
  421. </mxGeometry>
  422. </mxCell>
  423. <mxCell id="GCTWj422pI3h6kLligze-75" value="history" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-73" vertex="1">
  424. <mxGeometry x="70" width="120" height="34" as="geometry">
  425. <mxRectangle width="120" height="34" as="alternateBounds" />
  426. </mxGeometry>
  427. </mxCell>
  428. <mxCell id="GCTWj422pI3h6kLligze-76" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-73" vertex="1">
  429. <mxGeometry x="190" width="100" height="34" as="geometry">
  430. <mxRectangle width="100" height="34" as="alternateBounds" />
  431. </mxGeometry>
  432. </mxCell>
  433. <mxCell id="GCTWj422pI3h6kLligze-77" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-60" vertex="1">
  434. <mxGeometry y="364" width="290" height="34" as="geometry" />
  435. </mxCell>
  436. <mxCell id="GCTWj422pI3h6kLligze-78" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-77" vertex="1">
  437. <mxGeometry width="70" height="34" as="geometry">
  438. <mxRectangle width="70" height="34" as="alternateBounds" />
  439. </mxGeometry>
  440. </mxCell>
  441. <mxCell id="GCTWj422pI3h6kLligze-79" value="address" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-77" vertex="1">
  442. <mxGeometry x="70" width="120" height="34" as="geometry">
  443. <mxRectangle width="120" height="34" as="alternateBounds" />
  444. </mxGeometry>
  445. </mxCell>
  446. <mxCell id="GCTWj422pI3h6kLligze-80" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-77" vertex="1">
  447. <mxGeometry x="190" width="100" height="34" as="geometry">
  448. <mxRectangle width="100" height="34" as="alternateBounds" />
  449. </mxGeometry>
  450. </mxCell>
  451. <mxCell id="GCTWj422pI3h6kLligze-85" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-60" vertex="1">
  452. <mxGeometry y="398" width="290" height="34" as="geometry" />
  453. </mxCell>
  454. <mxCell id="GCTWj422pI3h6kLligze-86" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-85" vertex="1">
  455. <mxGeometry width="70" height="34" as="geometry">
  456. <mxRectangle width="70" height="34" as="alternateBounds" />
  457. </mxGeometry>
  458. </mxCell>
  459. <mxCell id="GCTWj422pI3h6kLligze-87" value="route" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-85" vertex="1">
  460. <mxGeometry x="70" width="120" height="34" as="geometry">
  461. <mxRectangle width="120" height="34" as="alternateBounds" />
  462. </mxGeometry>
  463. </mxCell>
  464. <mxCell id="GCTWj422pI3h6kLligze-88" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-85" vertex="1">
  465. <mxGeometry x="190" width="100" height="34" as="geometry">
  466. <mxRectangle width="100" height="34" as="alternateBounds" />
  467. </mxGeometry>
  468. </mxCell>
  469. <mxCell id="GCTWj422pI3h6kLligze-89" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-60" vertex="1">
  470. <mxGeometry y="432" width="290" height="34" as="geometry" />
  471. </mxCell>
  472. <mxCell id="GCTWj422pI3h6kLligze-90" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-89" vertex="1">
  473. <mxGeometry width="70" height="34" as="geometry">
  474. <mxRectangle width="70" height="34" as="alternateBounds" />
  475. </mxGeometry>
  476. </mxCell>
  477. <mxCell id="GCTWj422pI3h6kLligze-91" value="&lt;span style=&quot;white-space-collapse: preserve;&quot; data-src-align=&quot;7:6&quot; class=&quot;EzKURWReUAB5oZgtQNkl&quot;&gt;work_&lt;/span&gt;&lt;span style=&quot;white-space-collapse: preserve;&quot; data-src-align=&quot;0:6&quot; class=&quot;EzKURWReUAB5oZgtQNkl&quot;&gt;schedule&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-89" vertex="1">
  478. <mxGeometry x="70" width="120" height="34" as="geometry">
  479. <mxRectangle width="120" height="34" as="alternateBounds" />
  480. </mxGeometry>
  481. </mxCell>
  482. <mxCell id="GCTWj422pI3h6kLligze-92" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-89" vertex="1">
  483. <mxGeometry x="190" width="100" height="34" as="geometry">
  484. <mxRectangle width="100" height="34" as="alternateBounds" />
  485. </mxGeometry>
  486. </mxCell>
  487. <mxCell id="GCTWj422pI3h6kLligze-93" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-60" vertex="1">
  488. <mxGeometry y="466" width="290" height="34" as="geometry" />
  489. </mxCell>
  490. <mxCell id="GCTWj422pI3h6kLligze-94" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-93" vertex="1">
  491. <mxGeometry width="70" height="34" as="geometry">
  492. <mxRectangle width="70" height="34" as="alternateBounds" />
  493. </mxGeometry>
  494. </mxCell>
  495. <mxCell id="GCTWj422pI3h6kLligze-95" value="&lt;span style=&quot;white-space-collapse: preserve;&quot;&gt;price&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-93" vertex="1">
  496. <mxGeometry x="70" width="120" height="34" as="geometry">
  497. <mxRectangle width="120" height="34" as="alternateBounds" />
  498. </mxGeometry>
  499. </mxCell>
  500. <mxCell id="GCTWj422pI3h6kLligze-96" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-93" vertex="1">
  501. <mxGeometry x="190" width="100" height="34" as="geometry">
  502. <mxRectangle width="100" height="34" as="alternateBounds" />
  503. </mxGeometry>
  504. </mxCell>
  505. <mxCell id="GCTWj422pI3h6kLligze-97" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-60" vertex="1">
  506. <mxGeometry y="500" width="290" height="34" as="geometry" />
  507. </mxCell>
  508. <mxCell id="GCTWj422pI3h6kLligze-98" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-97" vertex="1">
  509. <mxGeometry width="70" height="34" as="geometry">
  510. <mxRectangle width="70" height="34" as="alternateBounds" />
  511. </mxGeometry>
  512. </mxCell>
  513. <mxCell id="GCTWj422pI3h6kLligze-99" value="&lt;span style=&quot;white-space-collapse: preserve;&quot;&gt;coordinates&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-97" vertex="1">
  514. <mxGeometry x="70" width="120" height="34" as="geometry">
  515. <mxRectangle width="120" height="34" as="alternateBounds" />
  516. </mxGeometry>
  517. </mxCell>
  518. <mxCell id="GCTWj422pI3h6kLligze-100" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-97" vertex="1">
  519. <mxGeometry x="190" width="100" height="34" as="geometry">
  520. <mxRectangle width="100" height="34" as="alternateBounds" />
  521. </mxGeometry>
  522. </mxCell>
  523. <mxCell id="GCTWj422pI3h6kLligze-105" value="Hotels" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;strokeColor=default;fontSize=16;" parent="1" vertex="1">
  524. <mxGeometry x="1199.86" y="2160" width="290" height="604" as="geometry" />
  525. </mxCell>
  526. <mxCell id="GCTWj422pI3h6kLligze-106" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-105" vertex="1">
  527. <mxGeometry y="30" width="290" height="34" as="geometry" />
  528. </mxCell>
  529. <mxCell id="GCTWj422pI3h6kLligze-107" value="Key" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-106" vertex="1">
  530. <mxGeometry width="60" height="34" as="geometry">
  531. <mxRectangle width="60" height="34" as="alternateBounds" />
  532. </mxGeometry>
  533. </mxCell>
  534. <mxCell id="GCTWj422pI3h6kLligze-108" value="Title" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-106" vertex="1">
  535. <mxGeometry x="60" width="133" height="34" as="geometry">
  536. <mxRectangle width="133" height="34" as="alternateBounds" />
  537. </mxGeometry>
  538. </mxCell>
  539. <mxCell id="GCTWj422pI3h6kLligze-109" value="Data type" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-106" vertex="1">
  540. <mxGeometry x="193" width="97" height="34" as="geometry">
  541. <mxRectangle width="97" height="34" as="alternateBounds" />
  542. </mxGeometry>
  543. </mxCell>
  544. <mxCell id="GCTWj422pI3h6kLligze-110" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-105" vertex="1">
  545. <mxGeometry y="64" width="290" height="32" as="geometry" />
  546. </mxCell>
  547. <mxCell id="GCTWj422pI3h6kLligze-111" value="PK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-110" vertex="1">
  548. <mxGeometry width="60" height="32" as="geometry">
  549. <mxRectangle width="60" height="32" as="alternateBounds" />
  550. </mxGeometry>
  551. </mxCell>
  552. <mxCell id="GCTWj422pI3h6kLligze-112" value="Id" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-110" vertex="1">
  553. <mxGeometry x="60" width="133" height="32" as="geometry">
  554. <mxRectangle width="133" height="32" as="alternateBounds" />
  555. </mxGeometry>
  556. </mxCell>
  557. <mxCell id="GCTWj422pI3h6kLligze-113" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-110" vertex="1">
  558. <mxGeometry x="193" width="97" height="32" as="geometry">
  559. <mxRectangle width="97" height="32" as="alternateBounds" />
  560. </mxGeometry>
  561. </mxCell>
  562. <mxCell id="EHfPEwggzIhnKUcyckGd-21" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-105" vertex="1">
  563. <mxGeometry y="96" width="290" height="32" as="geometry" />
  564. </mxCell>
  565. <mxCell id="EHfPEwggzIhnKUcyckGd-22" value="FK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-21" vertex="1">
  566. <mxGeometry width="60" height="32" as="geometry">
  567. <mxRectangle width="60" height="32" as="alternateBounds" />
  568. </mxGeometry>
  569. </mxCell>
  570. <mxCell id="EHfPEwggzIhnKUcyckGd-23" value="city" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-21" vertex="1">
  571. <mxGeometry x="60" width="133" height="32" as="geometry">
  572. <mxRectangle width="133" height="32" as="alternateBounds" />
  573. </mxGeometry>
  574. </mxCell>
  575. <mxCell id="EHfPEwggzIhnKUcyckGd-24" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-21" vertex="1">
  576. <mxGeometry x="193" width="97" height="32" as="geometry">
  577. <mxRectangle width="97" height="32" as="alternateBounds" />
  578. </mxGeometry>
  579. </mxCell>
  580. <mxCell id="EHfPEwggzIhnKUcyckGd-29" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-105" vertex="1">
  581. <mxGeometry y="128" width="290" height="34" as="geometry" />
  582. </mxCell>
  583. <mxCell id="EHfPEwggzIhnKUcyckGd-30" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-29" vertex="1">
  584. <mxGeometry width="60" height="34" as="geometry">
  585. <mxRectangle width="60" height="34" as="alternateBounds" />
  586. </mxGeometry>
  587. </mxCell>
  588. <mxCell id="EHfPEwggzIhnKUcyckGd-31" value="name" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-29" vertex="1">
  589. <mxGeometry x="60" width="133" height="34" as="geometry">
  590. <mxRectangle width="133" height="34" as="alternateBounds" />
  591. </mxGeometry>
  592. </mxCell>
  593. <mxCell id="EHfPEwggzIhnKUcyckGd-32" value="varchar(100)" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-29" vertex="1">
  594. <mxGeometry x="193" width="97" height="34" as="geometry">
  595. <mxRectangle width="97" height="34" as="alternateBounds" />
  596. </mxGeometry>
  597. </mxCell>
  598. <mxCell id="EHfPEwggzIhnKUcyckGd-33" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-105" vertex="1">
  599. <mxGeometry y="162" width="290" height="34" as="geometry" />
  600. </mxCell>
  601. <mxCell id="EHfPEwggzIhnKUcyckGd-34" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-33" vertex="1">
  602. <mxGeometry width="60" height="34" as="geometry">
  603. <mxRectangle width="60" height="34" as="alternateBounds" />
  604. </mxGeometry>
  605. </mxCell>
  606. <mxCell id="EHfPEwggzIhnKUcyckGd-35" value="&lt;span style=&quot;white-space-collapse: preserve;&quot;&gt;rating&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-33" vertex="1">
  607. <mxGeometry x="60" width="133" height="34" as="geometry">
  608. <mxRectangle width="133" height="34" as="alternateBounds" />
  609. </mxGeometry>
  610. </mxCell>
  611. <mxCell id="EHfPEwggzIhnKUcyckGd-36" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-33" vertex="1">
  612. <mxGeometry x="193" width="97" height="34" as="geometry">
  613. <mxRectangle width="97" height="34" as="alternateBounds" />
  614. </mxGeometry>
  615. </mxCell>
  616. <mxCell id="EHfPEwggzIhnKUcyckGd-37" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-105" vertex="1">
  617. <mxGeometry y="196" width="290" height="34" as="geometry" />
  618. </mxCell>
  619. <mxCell id="EHfPEwggzIhnKUcyckGd-38" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-37" vertex="1">
  620. <mxGeometry width="60" height="34" as="geometry">
  621. <mxRectangle width="60" height="34" as="alternateBounds" />
  622. </mxGeometry>
  623. </mxCell>
  624. <mxCell id="EHfPEwggzIhnKUcyckGd-39" value="quantity_of_rooms" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-37" vertex="1">
  625. <mxGeometry x="60" width="133" height="34" as="geometry">
  626. <mxRectangle width="133" height="34" as="alternateBounds" />
  627. </mxGeometry>
  628. </mxCell>
  629. <mxCell id="EHfPEwggzIhnKUcyckGd-40" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-37" vertex="1">
  630. <mxGeometry x="193" width="97" height="34" as="geometry">
  631. <mxRectangle width="97" height="34" as="alternateBounds" />
  632. </mxGeometry>
  633. </mxCell>
  634. <mxCell id="GCTWj422pI3h6kLligze-118" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-105" vertex="1">
  635. <mxGeometry y="230" width="290" height="34" as="geometry" />
  636. </mxCell>
  637. <mxCell id="GCTWj422pI3h6kLligze-119" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-118" vertex="1">
  638. <mxGeometry width="60" height="34" as="geometry">
  639. <mxRectangle width="60" height="34" as="alternateBounds" />
  640. </mxGeometry>
  641. </mxCell>
  642. <mxCell id="GCTWj422pI3h6kLligze-120" value="&lt;span style=&quot;white-space-collapse: preserve;&quot;&gt;floors&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-118" vertex="1">
  643. <mxGeometry x="60" width="133" height="34" as="geometry">
  644. <mxRectangle width="133" height="34" as="alternateBounds" />
  645. </mxGeometry>
  646. </mxCell>
  647. <mxCell id="GCTWj422pI3h6kLligze-121" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-118" vertex="1">
  648. <mxGeometry x="193" width="97" height="34" as="geometry">
  649. <mxRectangle width="97" height="34" as="alternateBounds" />
  650. </mxGeometry>
  651. </mxCell>
  652. <mxCell id="GCTWj422pI3h6kLligze-154" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-105" vertex="1">
  653. <mxGeometry y="264" width="290" height="34" as="geometry" />
  654. </mxCell>
  655. <mxCell id="GCTWj422pI3h6kLligze-155" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-154" vertex="1">
  656. <mxGeometry width="60" height="34" as="geometry">
  657. <mxRectangle width="60" height="34" as="alternateBounds" />
  658. </mxGeometry>
  659. </mxCell>
  660. <mxCell id="GCTWj422pI3h6kLligze-156" value="photo_hotel" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-154" vertex="1">
  661. <mxGeometry x="60" width="133" height="34" as="geometry">
  662. <mxRectangle width="133" height="34" as="alternateBounds" />
  663. </mxGeometry>
  664. </mxCell>
  665. <mxCell id="GCTWj422pI3h6kLligze-157" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-154" vertex="1">
  666. <mxGeometry x="193" width="97" height="34" as="geometry">
  667. <mxRectangle width="97" height="34" as="alternateBounds" />
  668. </mxGeometry>
  669. </mxCell>
  670. <mxCell id="GCTWj422pI3h6kLligze-126" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-105" vertex="1">
  671. <mxGeometry y="298" width="290" height="34" as="geometry" />
  672. </mxCell>
  673. <mxCell id="GCTWj422pI3h6kLligze-127" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-126" vertex="1">
  674. <mxGeometry width="60" height="34" as="geometry">
  675. <mxRectangle width="60" height="34" as="alternateBounds" />
  676. </mxGeometry>
  677. </mxCell>
  678. <mxCell id="GCTWj422pI3h6kLligze-128" value="address" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-126" vertex="1">
  679. <mxGeometry x="60" width="133" height="34" as="geometry">
  680. <mxRectangle width="133" height="34" as="alternateBounds" />
  681. </mxGeometry>
  682. </mxCell>
  683. <mxCell id="GCTWj422pI3h6kLligze-129" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-126" vertex="1">
  684. <mxGeometry x="193" width="97" height="34" as="geometry">
  685. <mxRectangle width="97" height="34" as="alternateBounds" />
  686. </mxGeometry>
  687. </mxCell>
  688. <mxCell id="GCTWj422pI3h6kLligze-130" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-105" vertex="1">
  689. <mxGeometry y="332" width="290" height="34" as="geometry" />
  690. </mxCell>
  691. <mxCell id="GCTWj422pI3h6kLligze-131" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-130" vertex="1">
  692. <mxGeometry width="60" height="34" as="geometry">
  693. <mxRectangle width="60" height="34" as="alternateBounds" />
  694. </mxGeometry>
  695. </mxCell>
  696. <mxCell id="GCTWj422pI3h6kLligze-132" value="basic_info" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-130" vertex="1">
  697. <mxGeometry x="60" width="133" height="34" as="geometry">
  698. <mxRectangle width="133" height="34" as="alternateBounds" />
  699. </mxGeometry>
  700. </mxCell>
  701. <mxCell id="GCTWj422pI3h6kLligze-133" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-130" vertex="1">
  702. <mxGeometry x="193" width="97" height="34" as="geometry">
  703. <mxRectangle width="97" height="34" as="alternateBounds" />
  704. </mxGeometry>
  705. </mxCell>
  706. <mxCell id="GCTWj422pI3h6kLligze-134" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-105" vertex="1">
  707. <mxGeometry y="366" width="290" height="34" as="geometry" />
  708. </mxCell>
  709. <mxCell id="GCTWj422pI3h6kLligze-135" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-134" vertex="1">
  710. <mxGeometry width="60" height="34" as="geometry">
  711. <mxRectangle width="60" height="34" as="alternateBounds" />
  712. </mxGeometry>
  713. </mxCell>
  714. <mxCell id="GCTWj422pI3h6kLligze-136" value="&lt;span style=&quot;white-space-collapse: preserve;&quot; data-src-align=&quot;0:8&quot; class=&quot;EzKURWReUAB5oZgtQNkl&quot;&gt;interior&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-134" vertex="1">
  715. <mxGeometry x="60" width="133" height="34" as="geometry">
  716. <mxRectangle width="133" height="34" as="alternateBounds" />
  717. </mxGeometry>
  718. </mxCell>
  719. <mxCell id="GCTWj422pI3h6kLligze-137" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-134" vertex="1">
  720. <mxGeometry x="193" width="97" height="34" as="geometry">
  721. <mxRectangle width="97" height="34" as="alternateBounds" />
  722. </mxGeometry>
  723. </mxCell>
  724. <mxCell id="GCTWj422pI3h6kLligze-158" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-105" vertex="1">
  725. <mxGeometry y="400" width="290" height="34" as="geometry" />
  726. </mxCell>
  727. <mxCell id="GCTWj422pI3h6kLligze-159" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-158" vertex="1">
  728. <mxGeometry width="60" height="34" as="geometry">
  729. <mxRectangle width="60" height="34" as="alternateBounds" />
  730. </mxGeometry>
  731. </mxCell>
  732. <mxCell id="GCTWj422pI3h6kLligze-160" value="&lt;span style=&quot;white-space-collapse: preserve;&quot; data-src-align=&quot;0:8&quot; class=&quot;EzKURWReUAB5oZgtQNkl&quot;&gt;photo_interior&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-158" vertex="1">
  733. <mxGeometry x="60" width="133" height="34" as="geometry">
  734. <mxRectangle width="133" height="34" as="alternateBounds" />
  735. </mxGeometry>
  736. </mxCell>
  737. <mxCell id="GCTWj422pI3h6kLligze-161" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-158" vertex="1">
  738. <mxGeometry x="193" width="97" height="34" as="geometry">
  739. <mxRectangle width="97" height="34" as="alternateBounds" />
  740. </mxGeometry>
  741. </mxCell>
  742. <mxCell id="GCTWj422pI3h6kLligze-138" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-105" vertex="1">
  743. <mxGeometry y="434" width="290" height="34" as="geometry" />
  744. </mxCell>
  745. <mxCell id="GCTWj422pI3h6kLligze-139" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-138" vertex="1">
  746. <mxGeometry width="60" height="34" as="geometry">
  747. <mxRectangle width="60" height="34" as="alternateBounds" />
  748. </mxGeometry>
  749. </mxCell>
  750. <mxCell id="GCTWj422pI3h6kLligze-140" value="&lt;span style=&quot;white-space-collapse: preserve;&quot;&gt;rooms&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-138" vertex="1">
  751. <mxGeometry x="60" width="133" height="34" as="geometry">
  752. <mxRectangle width="133" height="34" as="alternateBounds" />
  753. </mxGeometry>
  754. </mxCell>
  755. <mxCell id="GCTWj422pI3h6kLligze-141" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-138" vertex="1">
  756. <mxGeometry x="193" width="97" height="34" as="geometry">
  757. <mxRectangle width="97" height="34" as="alternateBounds" />
  758. </mxGeometry>
  759. </mxCell>
  760. <mxCell id="GCTWj422pI3h6kLligze-162" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-105" vertex="1">
  761. <mxGeometry y="468" width="290" height="34" as="geometry" />
  762. </mxCell>
  763. <mxCell id="GCTWj422pI3h6kLligze-163" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-162" vertex="1">
  764. <mxGeometry width="60" height="34" as="geometry">
  765. <mxRectangle width="60" height="34" as="alternateBounds" />
  766. </mxGeometry>
  767. </mxCell>
  768. <mxCell id="GCTWj422pI3h6kLligze-164" value="&lt;span style=&quot;white-space-collapse: preserve;&quot;&gt;photo_room&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-162" vertex="1">
  769. <mxGeometry x="60" width="133" height="34" as="geometry">
  770. <mxRectangle width="133" height="34" as="alternateBounds" />
  771. </mxGeometry>
  772. </mxCell>
  773. <mxCell id="GCTWj422pI3h6kLligze-165" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-162" vertex="1">
  774. <mxGeometry x="193" width="97" height="34" as="geometry">
  775. <mxRectangle width="97" height="34" as="alternateBounds" />
  776. </mxGeometry>
  777. </mxCell>
  778. <mxCell id="GCTWj422pI3h6kLligze-142" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-105" vertex="1">
  779. <mxGeometry y="502" width="290" height="34" as="geometry" />
  780. </mxCell>
  781. <mxCell id="GCTWj422pI3h6kLligze-143" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-142" vertex="1">
  782. <mxGeometry width="60" height="34" as="geometry">
  783. <mxRectangle width="60" height="34" as="alternateBounds" />
  784. </mxGeometry>
  785. </mxCell>
  786. <mxCell id="GCTWj422pI3h6kLligze-144" value="&lt;span style=&quot;white-space-collapse: preserve;&quot;&gt;price&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-142" vertex="1">
  787. <mxGeometry x="60" width="133" height="34" as="geometry">
  788. <mxRectangle width="133" height="34" as="alternateBounds" />
  789. </mxGeometry>
  790. </mxCell>
  791. <mxCell id="GCTWj422pI3h6kLligze-145" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-142" vertex="1">
  792. <mxGeometry x="193" width="97" height="34" as="geometry">
  793. <mxRectangle width="97" height="34" as="alternateBounds" />
  794. </mxGeometry>
  795. </mxCell>
  796. <mxCell id="GCTWj422pI3h6kLligze-166" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-105" vertex="1">
  797. <mxGeometry y="536" width="290" height="34" as="geometry" />
  798. </mxCell>
  799. <mxCell id="GCTWj422pI3h6kLligze-167" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-166" vertex="1">
  800. <mxGeometry width="60" height="34" as="geometry">
  801. <mxRectangle width="60" height="34" as="alternateBounds" />
  802. </mxGeometry>
  803. </mxCell>
  804. <mxCell id="GCTWj422pI3h6kLligze-168" value="&lt;span style=&quot;white-space-collapse: preserve;&quot; data-src-align=&quot;15:6&quot; class=&quot;EzKURWReUAB5oZgtQNkl&quot;&gt;services&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-166" vertex="1">
  805. <mxGeometry x="60" width="133" height="34" as="geometry">
  806. <mxRectangle width="133" height="34" as="alternateBounds" />
  807. </mxGeometry>
  808. </mxCell>
  809. <mxCell id="GCTWj422pI3h6kLligze-169" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-166" vertex="1">
  810. <mxGeometry x="193" width="97" height="34" as="geometry">
  811. <mxRectangle width="97" height="34" as="alternateBounds" />
  812. </mxGeometry>
  813. </mxCell>
  814. <mxCell id="GCTWj422pI3h6kLligze-146" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-105" vertex="1">
  815. <mxGeometry y="570" width="290" height="34" as="geometry" />
  816. </mxCell>
  817. <mxCell id="GCTWj422pI3h6kLligze-147" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-146" vertex="1">
  818. <mxGeometry width="60" height="34" as="geometry">
  819. <mxRectangle width="60" height="34" as="alternateBounds" />
  820. </mxGeometry>
  821. </mxCell>
  822. <mxCell id="GCTWj422pI3h6kLligze-148" value="&lt;span style=&quot;white-space-collapse: preserve;&quot;&gt;coordinates&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-146" vertex="1">
  823. <mxGeometry x="60" width="133" height="34" as="geometry">
  824. <mxRectangle width="133" height="34" as="alternateBounds" />
  825. </mxGeometry>
  826. </mxCell>
  827. <mxCell id="GCTWj422pI3h6kLligze-149" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-146" vertex="1">
  828. <mxGeometry x="193" width="97" height="34" as="geometry">
  829. <mxRectangle width="97" height="34" as="alternateBounds" />
  830. </mxGeometry>
  831. </mxCell>
  832. <mxCell id="GCTWj422pI3h6kLligze-170" value="Restaurants" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;strokeColor=default;fontSize=16;" parent="1" vertex="1">
  833. <mxGeometry x="1619.86" y="2230" width="290" height="534" as="geometry" />
  834. </mxCell>
  835. <mxCell id="GCTWj422pI3h6kLligze-171" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-170" vertex="1">
  836. <mxGeometry y="30" width="290" height="34" as="geometry" />
  837. </mxCell>
  838. <mxCell id="GCTWj422pI3h6kLligze-172" value="Key" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-171" vertex="1">
  839. <mxGeometry width="60" height="34" as="geometry">
  840. <mxRectangle width="60" height="34" as="alternateBounds" />
  841. </mxGeometry>
  842. </mxCell>
  843. <mxCell id="GCTWj422pI3h6kLligze-173" value="Title" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-171" vertex="1">
  844. <mxGeometry x="60" width="133" height="34" as="geometry">
  845. <mxRectangle width="133" height="34" as="alternateBounds" />
  846. </mxGeometry>
  847. </mxCell>
  848. <mxCell id="GCTWj422pI3h6kLligze-174" value="Data type" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-171" vertex="1">
  849. <mxGeometry x="193" width="97" height="34" as="geometry">
  850. <mxRectangle width="97" height="34" as="alternateBounds" />
  851. </mxGeometry>
  852. </mxCell>
  853. <mxCell id="GCTWj422pI3h6kLligze-175" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-170" vertex="1">
  854. <mxGeometry y="64" width="290" height="32" as="geometry" />
  855. </mxCell>
  856. <mxCell id="GCTWj422pI3h6kLligze-176" value="PK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-175" vertex="1">
  857. <mxGeometry width="60" height="32" as="geometry">
  858. <mxRectangle width="60" height="32" as="alternateBounds" />
  859. </mxGeometry>
  860. </mxCell>
  861. <mxCell id="GCTWj422pI3h6kLligze-177" value="Id" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-175" vertex="1">
  862. <mxGeometry x="60" width="133" height="32" as="geometry">
  863. <mxRectangle width="133" height="32" as="alternateBounds" />
  864. </mxGeometry>
  865. </mxCell>
  866. <mxCell id="GCTWj422pI3h6kLligze-178" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-175" vertex="1">
  867. <mxGeometry x="193" width="97" height="32" as="geometry">
  868. <mxRectangle width="97" height="32" as="alternateBounds" />
  869. </mxGeometry>
  870. </mxCell>
  871. <mxCell id="EHfPEwggzIhnKUcyckGd-43" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-170" vertex="1">
  872. <mxGeometry y="96" width="290" height="32" as="geometry" />
  873. </mxCell>
  874. <mxCell id="EHfPEwggzIhnKUcyckGd-44" value="FK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-43" vertex="1">
  875. <mxGeometry width="60" height="32" as="geometry">
  876. <mxRectangle width="60" height="32" as="alternateBounds" />
  877. </mxGeometry>
  878. </mxCell>
  879. <mxCell id="EHfPEwggzIhnKUcyckGd-45" value="city" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-43" vertex="1">
  880. <mxGeometry x="60" width="133" height="32" as="geometry">
  881. <mxRectangle width="133" height="32" as="alternateBounds" />
  882. </mxGeometry>
  883. </mxCell>
  884. <mxCell id="EHfPEwggzIhnKUcyckGd-46" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-43" vertex="1">
  885. <mxGeometry x="193" width="97" height="32" as="geometry">
  886. <mxRectangle width="97" height="32" as="alternateBounds" />
  887. </mxGeometry>
  888. </mxCell>
  889. <mxCell id="GCTWj422pI3h6kLligze-179" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-170" vertex="1">
  890. <mxGeometry y="128" width="290" height="32" as="geometry" />
  891. </mxCell>
  892. <mxCell id="GCTWj422pI3h6kLligze-180" value="FK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-179" vertex="1">
  893. <mxGeometry width="60" height="32" as="geometry">
  894. <mxRectangle width="60" height="32" as="alternateBounds" />
  895. </mxGeometry>
  896. </mxCell>
  897. <mxCell id="GCTWj422pI3h6kLligze-181" value="&lt;span style=&quot;white-space-collapse: preserve;&quot;&gt;currency&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-179" vertex="1">
  898. <mxGeometry x="60" width="133" height="32" as="geometry">
  899. <mxRectangle width="133" height="32" as="alternateBounds" />
  900. </mxGeometry>
  901. </mxCell>
  902. <mxCell id="GCTWj422pI3h6kLligze-182" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-179" vertex="1">
  903. <mxGeometry x="193" width="97" height="32" as="geometry">
  904. <mxRectangle width="97" height="32" as="alternateBounds" />
  905. </mxGeometry>
  906. </mxCell>
  907. <mxCell id="EHfPEwggzIhnKUcyckGd-51" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-170" vertex="1">
  908. <mxGeometry y="160" width="290" height="34" as="geometry" />
  909. </mxCell>
  910. <mxCell id="EHfPEwggzIhnKUcyckGd-52" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-51" vertex="1">
  911. <mxGeometry width="60" height="34" as="geometry">
  912. <mxRectangle width="60" height="34" as="alternateBounds" />
  913. </mxGeometry>
  914. </mxCell>
  915. <mxCell id="EHfPEwggzIhnKUcyckGd-53" value="name" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-51" vertex="1">
  916. <mxGeometry x="60" width="133" height="34" as="geometry">
  917. <mxRectangle width="133" height="34" as="alternateBounds" />
  918. </mxGeometry>
  919. </mxCell>
  920. <mxCell id="EHfPEwggzIhnKUcyckGd-54" value="varchar(100)" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-51" vertex="1">
  921. <mxGeometry x="193" width="97" height="34" as="geometry">
  922. <mxRectangle width="97" height="34" as="alternateBounds" />
  923. </mxGeometry>
  924. </mxCell>
  925. <mxCell id="EHfPEwggzIhnKUcyckGd-55" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-170" vertex="1">
  926. <mxGeometry y="194" width="290" height="34" as="geometry" />
  927. </mxCell>
  928. <mxCell id="EHfPEwggzIhnKUcyckGd-56" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-55" vertex="1">
  929. <mxGeometry width="60" height="34" as="geometry">
  930. <mxRectangle width="60" height="34" as="alternateBounds" />
  931. </mxGeometry>
  932. </mxCell>
  933. <mxCell id="EHfPEwggzIhnKUcyckGd-57" value="&lt;span style=&quot;white-space-collapse: preserve;&quot; data-src-align=&quot;7:6&quot; class=&quot;EzKURWReUAB5oZgtQNkl&quot;&gt;work_&lt;/span&gt;&lt;span style=&quot;white-space-collapse: preserve;&quot; data-src-align=&quot;0:6&quot; class=&quot;EzKURWReUAB5oZgtQNkl&quot;&gt;schedule&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-55" vertex="1">
  934. <mxGeometry x="60" width="133" height="34" as="geometry">
  935. <mxRectangle width="133" height="34" as="alternateBounds" />
  936. </mxGeometry>
  937. </mxCell>
  938. <mxCell id="EHfPEwggzIhnKUcyckGd-58" value="varchar(100)" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-55" vertex="1">
  939. <mxGeometry x="193" width="97" height="34" as="geometry">
  940. <mxRectangle width="97" height="34" as="alternateBounds" />
  941. </mxGeometry>
  942. </mxCell>
  943. <mxCell id="EHfPEwggzIhnKUcyckGd-59" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-170" vertex="1">
  944. <mxGeometry y="228" width="290" height="34" as="geometry" />
  945. </mxCell>
  946. <mxCell id="EHfPEwggzIhnKUcyckGd-60" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-59" vertex="1">
  947. <mxGeometry width="60" height="34" as="geometry">
  948. <mxRectangle width="60" height="34" as="alternateBounds" />
  949. </mxGeometry>
  950. </mxCell>
  951. <mxCell id="EHfPEwggzIhnKUcyckGd-61" value="average_check" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-59" vertex="1">
  952. <mxGeometry x="60" width="133" height="34" as="geometry">
  953. <mxRectangle width="133" height="34" as="alternateBounds" />
  954. </mxGeometry>
  955. </mxCell>
  956. <mxCell id="EHfPEwggzIhnKUcyckGd-62" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-59" vertex="1">
  957. <mxGeometry x="193" width="97" height="34" as="geometry">
  958. <mxRectangle width="97" height="34" as="alternateBounds" />
  959. </mxGeometry>
  960. </mxCell>
  961. <mxCell id="GCTWj422pI3h6kLligze-183" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-170" vertex="1">
  962. <mxGeometry y="262" width="290" height="34" as="geometry" />
  963. </mxCell>
  964. <mxCell id="GCTWj422pI3h6kLligze-184" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-183" vertex="1">
  965. <mxGeometry width="60" height="34" as="geometry">
  966. <mxRectangle width="60" height="34" as="alternateBounds" />
  967. </mxGeometry>
  968. </mxCell>
  969. <mxCell id="GCTWj422pI3h6kLligze-185" value="&lt;span style=&quot;white-space-collapse: preserve;&quot;&gt;phone&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-183" vertex="1">
  970. <mxGeometry x="60" width="133" height="34" as="geometry">
  971. <mxRectangle width="133" height="34" as="alternateBounds" />
  972. </mxGeometry>
  973. </mxCell>
  974. <mxCell id="GCTWj422pI3h6kLligze-186" value="varchar(40)" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-183" vertex="1">
  975. <mxGeometry x="193" width="97" height="34" as="geometry">
  976. <mxRectangle width="97" height="34" as="alternateBounds" />
  977. </mxGeometry>
  978. </mxCell>
  979. <mxCell id="GCTWj422pI3h6kLligze-187" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-170" vertex="1">
  980. <mxGeometry y="296" width="290" height="34" as="geometry" />
  981. </mxCell>
  982. <mxCell id="GCTWj422pI3h6kLligze-188" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-187" vertex="1">
  983. <mxGeometry width="60" height="34" as="geometry">
  984. <mxRectangle width="60" height="34" as="alternateBounds" />
  985. </mxGeometry>
  986. </mxCell>
  987. <mxCell id="GCTWj422pI3h6kLligze-189" value="photo" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-187" vertex="1">
  988. <mxGeometry x="60" width="133" height="34" as="geometry">
  989. <mxRectangle width="133" height="34" as="alternateBounds" />
  990. </mxGeometry>
  991. </mxCell>
  992. <mxCell id="GCTWj422pI3h6kLligze-190" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-187" vertex="1">
  993. <mxGeometry x="193" width="97" height="34" as="geometry">
  994. <mxRectangle width="97" height="34" as="alternateBounds" />
  995. </mxGeometry>
  996. </mxCell>
  997. <mxCell id="GCTWj422pI3h6kLligze-191" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-170" vertex="1">
  998. <mxGeometry y="330" width="290" height="34" as="geometry" />
  999. </mxCell>
  1000. <mxCell id="GCTWj422pI3h6kLligze-192" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-191" vertex="1">
  1001. <mxGeometry width="60" height="34" as="geometry">
  1002. <mxRectangle width="60" height="34" as="alternateBounds" />
  1003. </mxGeometry>
  1004. </mxCell>
  1005. <mxCell id="GCTWj422pI3h6kLligze-193" value="address" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-191" vertex="1">
  1006. <mxGeometry x="60" width="133" height="34" as="geometry">
  1007. <mxRectangle width="133" height="34" as="alternateBounds" />
  1008. </mxGeometry>
  1009. </mxCell>
  1010. <mxCell id="GCTWj422pI3h6kLligze-194" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-191" vertex="1">
  1011. <mxGeometry x="193" width="97" height="34" as="geometry">
  1012. <mxRectangle width="97" height="34" as="alternateBounds" />
  1013. </mxGeometry>
  1014. </mxCell>
  1015. <mxCell id="GCTWj422pI3h6kLligze-195" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-170" vertex="1">
  1016. <mxGeometry y="364" width="290" height="34" as="geometry" />
  1017. </mxCell>
  1018. <mxCell id="GCTWj422pI3h6kLligze-196" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-195" vertex="1">
  1019. <mxGeometry width="60" height="34" as="geometry">
  1020. <mxRectangle width="60" height="34" as="alternateBounds" />
  1021. </mxGeometry>
  1022. </mxCell>
  1023. <mxCell id="GCTWj422pI3h6kLligze-197" value="basic_info" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-195" vertex="1">
  1024. <mxGeometry x="60" width="133" height="34" as="geometry">
  1025. <mxRectangle width="133" height="34" as="alternateBounds" />
  1026. </mxGeometry>
  1027. </mxCell>
  1028. <mxCell id="GCTWj422pI3h6kLligze-198" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-195" vertex="1">
  1029. <mxGeometry x="193" width="97" height="34" as="geometry">
  1030. <mxRectangle width="97" height="34" as="alternateBounds" />
  1031. </mxGeometry>
  1032. </mxCell>
  1033. <mxCell id="GCTWj422pI3h6kLligze-199" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-170" vertex="1">
  1034. <mxGeometry y="398" width="290" height="34" as="geometry" />
  1035. </mxCell>
  1036. <mxCell id="GCTWj422pI3h6kLligze-200" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-199" vertex="1">
  1037. <mxGeometry width="60" height="34" as="geometry">
  1038. <mxRectangle width="60" height="34" as="alternateBounds" />
  1039. </mxGeometry>
  1040. </mxCell>
  1041. <mxCell id="GCTWj422pI3h6kLligze-201" value="&lt;span style=&quot;white-space-collapse: preserve;&quot; data-src-align=&quot;0:8&quot; class=&quot;EzKURWReUAB5oZgtQNkl&quot;&gt;interior&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-199" vertex="1">
  1042. <mxGeometry x="60" width="133" height="34" as="geometry">
  1043. <mxRectangle width="133" height="34" as="alternateBounds" />
  1044. </mxGeometry>
  1045. </mxCell>
  1046. <mxCell id="GCTWj422pI3h6kLligze-202" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-199" vertex="1">
  1047. <mxGeometry x="193" width="97" height="34" as="geometry">
  1048. <mxRectangle width="97" height="34" as="alternateBounds" />
  1049. </mxGeometry>
  1050. </mxCell>
  1051. <mxCell id="GCTWj422pI3h6kLligze-215" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-170" vertex="1">
  1052. <mxGeometry y="432" width="290" height="34" as="geometry" />
  1053. </mxCell>
  1054. <mxCell id="GCTWj422pI3h6kLligze-216" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-215" vertex="1">
  1055. <mxGeometry width="60" height="34" as="geometry">
  1056. <mxRectangle width="60" height="34" as="alternateBounds" />
  1057. </mxGeometry>
  1058. </mxCell>
  1059. <mxCell id="GCTWj422pI3h6kLligze-217" value="&lt;span style=&quot;white-space-collapse: preserve;&quot;&gt;price&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-215" vertex="1">
  1060. <mxGeometry x="60" width="133" height="34" as="geometry">
  1061. <mxRectangle width="133" height="34" as="alternateBounds" />
  1062. </mxGeometry>
  1063. </mxCell>
  1064. <mxCell id="GCTWj422pI3h6kLligze-218" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-215" vertex="1">
  1065. <mxGeometry x="193" width="97" height="34" as="geometry">
  1066. <mxRectangle width="97" height="34" as="alternateBounds" />
  1067. </mxGeometry>
  1068. </mxCell>
  1069. <mxCell id="GCTWj422pI3h6kLligze-219" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-170" vertex="1">
  1070. <mxGeometry y="466" width="290" height="34" as="geometry" />
  1071. </mxCell>
  1072. <mxCell id="GCTWj422pI3h6kLligze-220" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-219" vertex="1">
  1073. <mxGeometry width="60" height="34" as="geometry">
  1074. <mxRectangle width="60" height="34" as="alternateBounds" />
  1075. </mxGeometry>
  1076. </mxCell>
  1077. <mxCell id="GCTWj422pI3h6kLligze-221" value="&lt;span style=&quot;white-space-collapse: preserve;&quot; data-src-align=&quot;0:12&quot; class=&quot;EzKURWReUAB5oZgtQNkl&quot;&gt;recommendations&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-219" vertex="1">
  1078. <mxGeometry x="60" width="133" height="34" as="geometry">
  1079. <mxRectangle width="133" height="34" as="alternateBounds" />
  1080. </mxGeometry>
  1081. </mxCell>
  1082. <mxCell id="GCTWj422pI3h6kLligze-222" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-219" vertex="1">
  1083. <mxGeometry x="193" width="97" height="34" as="geometry">
  1084. <mxRectangle width="97" height="34" as="alternateBounds" />
  1085. </mxGeometry>
  1086. </mxCell>
  1087. <mxCell id="GCTWj422pI3h6kLligze-223" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-170" vertex="1">
  1088. <mxGeometry y="500" width="290" height="34" as="geometry" />
  1089. </mxCell>
  1090. <mxCell id="GCTWj422pI3h6kLligze-224" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-223" vertex="1">
  1091. <mxGeometry width="60" height="34" as="geometry">
  1092. <mxRectangle width="60" height="34" as="alternateBounds" />
  1093. </mxGeometry>
  1094. </mxCell>
  1095. <mxCell id="GCTWj422pI3h6kLligze-225" value="&lt;span style=&quot;white-space-collapse: preserve;&quot;&gt;coordinates&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-223" vertex="1">
  1096. <mxGeometry x="60" width="133" height="34" as="geometry">
  1097. <mxRectangle width="133" height="34" as="alternateBounds" />
  1098. </mxGeometry>
  1099. </mxCell>
  1100. <mxCell id="GCTWj422pI3h6kLligze-226" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-223" vertex="1">
  1101. <mxGeometry x="193" width="97" height="34" as="geometry">
  1102. <mxRectangle width="97" height="34" as="alternateBounds" />
  1103. </mxGeometry>
  1104. </mxCell>
  1105. <mxCell id="GCTWj422pI3h6kLligze-227" value="Tours" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;strokeColor=default;fontSize=16;" parent="1" vertex="1">
  1106. <mxGeometry x="1199.86" y="3050" width="290" height="130" as="geometry" />
  1107. </mxCell>
  1108. <mxCell id="GCTWj422pI3h6kLligze-228" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-227" vertex="1">
  1109. <mxGeometry y="30" width="290" height="34" as="geometry" />
  1110. </mxCell>
  1111. <mxCell id="GCTWj422pI3h6kLligze-229" value="Key" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-228" vertex="1">
  1112. <mxGeometry width="60" height="34" as="geometry">
  1113. <mxRectangle width="60" height="34" as="alternateBounds" />
  1114. </mxGeometry>
  1115. </mxCell>
  1116. <mxCell id="GCTWj422pI3h6kLligze-230" value="Title" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-228" vertex="1">
  1117. <mxGeometry x="60" width="133" height="34" as="geometry">
  1118. <mxRectangle width="133" height="34" as="alternateBounds" />
  1119. </mxGeometry>
  1120. </mxCell>
  1121. <mxCell id="GCTWj422pI3h6kLligze-231" value="Data type" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-228" vertex="1">
  1122. <mxGeometry x="193" width="97" height="34" as="geometry">
  1123. <mxRectangle width="97" height="34" as="alternateBounds" />
  1124. </mxGeometry>
  1125. </mxCell>
  1126. <mxCell id="GCTWj422pI3h6kLligze-232" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-227" vertex="1">
  1127. <mxGeometry y="64" width="290" height="32" as="geometry" />
  1128. </mxCell>
  1129. <mxCell id="GCTWj422pI3h6kLligze-233" value="PK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-232" vertex="1">
  1130. <mxGeometry width="60" height="32" as="geometry">
  1131. <mxRectangle width="60" height="32" as="alternateBounds" />
  1132. </mxGeometry>
  1133. </mxCell>
  1134. <mxCell id="GCTWj422pI3h6kLligze-234" value="Id" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-232" vertex="1">
  1135. <mxGeometry x="60" width="133" height="32" as="geometry">
  1136. <mxRectangle width="133" height="32" as="alternateBounds" />
  1137. </mxGeometry>
  1138. </mxCell>
  1139. <mxCell id="GCTWj422pI3h6kLligze-235" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-232" vertex="1">
  1140. <mxGeometry x="193" width="97" height="32" as="geometry">
  1141. <mxRectangle width="97" height="32" as="alternateBounds" />
  1142. </mxGeometry>
  1143. </mxCell>
  1144. <mxCell id="GCTWj422pI3h6kLligze-236" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-227" vertex="1">
  1145. <mxGeometry y="96" width="290" height="34" as="geometry" />
  1146. </mxCell>
  1147. <mxCell id="GCTWj422pI3h6kLligze-237" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-236" vertex="1">
  1148. <mxGeometry width="60" height="34" as="geometry">
  1149. <mxRectangle width="60" height="34" as="alternateBounds" />
  1150. </mxGeometry>
  1151. </mxCell>
  1152. <mxCell id="GCTWj422pI3h6kLligze-238" value="title" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-236" vertex="1">
  1153. <mxGeometry x="60" width="133" height="34" as="geometry">
  1154. <mxRectangle width="133" height="34" as="alternateBounds" />
  1155. </mxGeometry>
  1156. </mxCell>
  1157. <mxCell id="GCTWj422pI3h6kLligze-239" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-236" vertex="1">
  1158. <mxGeometry x="193" width="97" height="34" as="geometry">
  1159. <mxRectangle width="97" height="34" as="alternateBounds" />
  1160. </mxGeometry>
  1161. </mxCell>
  1162. <mxCell id="GCTWj422pI3h6kLligze-306" value="Currency" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;strokeColor=default;fontSize=16;" parent="1" vertex="1">
  1163. <mxGeometry x="640" y="1920" width="290" height="162" as="geometry" />
  1164. </mxCell>
  1165. <mxCell id="GCTWj422pI3h6kLligze-307" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-306" vertex="1">
  1166. <mxGeometry y="30" width="290" height="34" as="geometry" />
  1167. </mxCell>
  1168. <mxCell id="GCTWj422pI3h6kLligze-308" value="Key" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-307" vertex="1">
  1169. <mxGeometry width="60" height="34" as="geometry">
  1170. <mxRectangle width="60" height="34" as="alternateBounds" />
  1171. </mxGeometry>
  1172. </mxCell>
  1173. <mxCell id="GCTWj422pI3h6kLligze-309" value="Title" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-307" vertex="1">
  1174. <mxGeometry x="60" width="133" height="34" as="geometry">
  1175. <mxRectangle width="133" height="34" as="alternateBounds" />
  1176. </mxGeometry>
  1177. </mxCell>
  1178. <mxCell id="GCTWj422pI3h6kLligze-310" value="Data type" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-307" vertex="1">
  1179. <mxGeometry x="193" width="97" height="34" as="geometry">
  1180. <mxRectangle width="97" height="34" as="alternateBounds" />
  1181. </mxGeometry>
  1182. </mxCell>
  1183. <mxCell id="GCTWj422pI3h6kLligze-311" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-306" vertex="1">
  1184. <mxGeometry y="64" width="290" height="32" as="geometry" />
  1185. </mxCell>
  1186. <mxCell id="GCTWj422pI3h6kLligze-312" value="PK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-311" vertex="1">
  1187. <mxGeometry width="60" height="32" as="geometry">
  1188. <mxRectangle width="60" height="32" as="alternateBounds" />
  1189. </mxGeometry>
  1190. </mxCell>
  1191. <mxCell id="GCTWj422pI3h6kLligze-313" value="Id" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-311" vertex="1">
  1192. <mxGeometry x="60" width="133" height="32" as="geometry">
  1193. <mxRectangle width="133" height="32" as="alternateBounds" />
  1194. </mxGeometry>
  1195. </mxCell>
  1196. <mxCell id="GCTWj422pI3h6kLligze-314" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-311" vertex="1">
  1197. <mxGeometry x="193" width="97" height="32" as="geometry">
  1198. <mxRectangle width="97" height="32" as="alternateBounds" />
  1199. </mxGeometry>
  1200. </mxCell>
  1201. <mxCell id="GCTWj422pI3h6kLligze-319" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-306" vertex="1">
  1202. <mxGeometry y="96" width="290" height="32" as="geometry" />
  1203. </mxCell>
  1204. <mxCell id="GCTWj422pI3h6kLligze-320" value="FK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-319" vertex="1">
  1205. <mxGeometry width="60" height="32" as="geometry">
  1206. <mxRectangle width="60" height="32" as="alternateBounds" />
  1207. </mxGeometry>
  1208. </mxCell>
  1209. <mxCell id="GCTWj422pI3h6kLligze-321" value="country" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-319" vertex="1">
  1210. <mxGeometry x="60" width="133" height="32" as="geometry">
  1211. <mxRectangle width="133" height="32" as="alternateBounds" />
  1212. </mxGeometry>
  1213. </mxCell>
  1214. <mxCell id="GCTWj422pI3h6kLligze-322" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-319" vertex="1">
  1215. <mxGeometry x="193" width="97" height="32" as="geometry">
  1216. <mxRectangle width="97" height="32" as="alternateBounds" />
  1217. </mxGeometry>
  1218. </mxCell>
  1219. <mxCell id="GCTWj422pI3h6kLligze-315" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-306" vertex="1">
  1220. <mxGeometry y="128" width="290" height="34" as="geometry" />
  1221. </mxCell>
  1222. <mxCell id="GCTWj422pI3h6kLligze-316" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-315" vertex="1">
  1223. <mxGeometry width="60" height="34" as="geometry">
  1224. <mxRectangle width="60" height="34" as="alternateBounds" />
  1225. </mxGeometry>
  1226. </mxCell>
  1227. <mxCell id="GCTWj422pI3h6kLligze-317" value="title" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-315" vertex="1">
  1228. <mxGeometry x="60" width="133" height="34" as="geometry">
  1229. <mxRectangle width="133" height="34" as="alternateBounds" />
  1230. </mxGeometry>
  1231. </mxCell>
  1232. <mxCell id="GCTWj422pI3h6kLligze-318" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-315" vertex="1">
  1233. <mxGeometry x="193" width="97" height="34" as="geometry">
  1234. <mxRectangle width="97" height="34" as="alternateBounds" />
  1235. </mxGeometry>
  1236. </mxCell>
  1237. <mxCell id="GCTWj422pI3h6kLligze-409" value="Metro" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;strokeColor=default;fontSize=16;" parent="1" vertex="1">
  1238. <mxGeometry x="1670" y="1927" width="290" height="162" as="geometry" />
  1239. </mxCell>
  1240. <mxCell id="GCTWj422pI3h6kLligze-410" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-409" vertex="1">
  1241. <mxGeometry y="30" width="290" height="34" as="geometry" />
  1242. </mxCell>
  1243. <mxCell id="GCTWj422pI3h6kLligze-411" value="Key" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-410" vertex="1">
  1244. <mxGeometry width="60" height="34" as="geometry">
  1245. <mxRectangle width="60" height="34" as="alternateBounds" />
  1246. </mxGeometry>
  1247. </mxCell>
  1248. <mxCell id="GCTWj422pI3h6kLligze-412" value="Title" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-410" vertex="1">
  1249. <mxGeometry x="60" width="133" height="34" as="geometry">
  1250. <mxRectangle width="133" height="34" as="alternateBounds" />
  1251. </mxGeometry>
  1252. </mxCell>
  1253. <mxCell id="GCTWj422pI3h6kLligze-413" value="Data type" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-410" vertex="1">
  1254. <mxGeometry x="193" width="97" height="34" as="geometry">
  1255. <mxRectangle width="97" height="34" as="alternateBounds" />
  1256. </mxGeometry>
  1257. </mxCell>
  1258. <mxCell id="GCTWj422pI3h6kLligze-414" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-409" vertex="1">
  1259. <mxGeometry y="64" width="290" height="32" as="geometry" />
  1260. </mxCell>
  1261. <mxCell id="GCTWj422pI3h6kLligze-415" value="PK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-414" vertex="1">
  1262. <mxGeometry width="60" height="32" as="geometry">
  1263. <mxRectangle width="60" height="32" as="alternateBounds" />
  1264. </mxGeometry>
  1265. </mxCell>
  1266. <mxCell id="GCTWj422pI3h6kLligze-416" value="Id" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-414" vertex="1">
  1267. <mxGeometry x="60" width="133" height="32" as="geometry">
  1268. <mxRectangle width="133" height="32" as="alternateBounds" />
  1269. </mxGeometry>
  1270. </mxCell>
  1271. <mxCell id="GCTWj422pI3h6kLligze-417" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-414" vertex="1">
  1272. <mxGeometry x="193" width="97" height="32" as="geometry">
  1273. <mxRectangle width="97" height="32" as="alternateBounds" />
  1274. </mxGeometry>
  1275. </mxCell>
  1276. <mxCell id="GCTWj422pI3h6kLligze-422" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-409" vertex="1">
  1277. <mxGeometry y="96" width="290" height="32" as="geometry" />
  1278. </mxCell>
  1279. <mxCell id="GCTWj422pI3h6kLligze-423" value="FK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-422" vertex="1">
  1280. <mxGeometry width="60" height="32" as="geometry">
  1281. <mxRectangle width="60" height="32" as="alternateBounds" />
  1282. </mxGeometry>
  1283. </mxCell>
  1284. <mxCell id="GCTWj422pI3h6kLligze-424" value="city" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-422" vertex="1">
  1285. <mxGeometry x="60" width="133" height="32" as="geometry">
  1286. <mxRectangle width="133" height="32" as="alternateBounds" />
  1287. </mxGeometry>
  1288. </mxCell>
  1289. <mxCell id="GCTWj422pI3h6kLligze-425" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-422" vertex="1">
  1290. <mxGeometry x="193" width="97" height="32" as="geometry">
  1291. <mxRectangle width="97" height="32" as="alternateBounds" />
  1292. </mxGeometry>
  1293. </mxCell>
  1294. <mxCell id="GCTWj422pI3h6kLligze-418" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-409" vertex="1">
  1295. <mxGeometry y="128" width="290" height="34" as="geometry" />
  1296. </mxCell>
  1297. <mxCell id="GCTWj422pI3h6kLligze-419" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-418" vertex="1">
  1298. <mxGeometry width="60" height="34" as="geometry">
  1299. <mxRectangle width="60" height="34" as="alternateBounds" />
  1300. </mxGeometry>
  1301. </mxCell>
  1302. <mxCell id="GCTWj422pI3h6kLligze-420" value="photo" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-418" vertex="1">
  1303. <mxGeometry x="60" width="133" height="34" as="geometry">
  1304. <mxRectangle width="133" height="34" as="alternateBounds" />
  1305. </mxGeometry>
  1306. </mxCell>
  1307. <mxCell id="GCTWj422pI3h6kLligze-421" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-418" vertex="1">
  1308. <mxGeometry x="193" width="97" height="34" as="geometry">
  1309. <mxRectangle width="97" height="34" as="alternateBounds" />
  1310. </mxGeometry>
  1311. </mxCell>
  1312. <mxCell id="GCTWj422pI3h6kLligze-431" value="Rules" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;strokeColor=default;fontSize=16;" parent="1" vertex="1">
  1313. <mxGeometry x="670" y="1440" width="290" height="230" as="geometry" />
  1314. </mxCell>
  1315. <mxCell id="GCTWj422pI3h6kLligze-432" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-431" vertex="1">
  1316. <mxGeometry y="30" width="290" height="34" as="geometry" />
  1317. </mxCell>
  1318. <mxCell id="GCTWj422pI3h6kLligze-433" value="Key" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-432" vertex="1">
  1319. <mxGeometry width="60" height="34" as="geometry">
  1320. <mxRectangle width="60" height="34" as="alternateBounds" />
  1321. </mxGeometry>
  1322. </mxCell>
  1323. <mxCell id="GCTWj422pI3h6kLligze-434" value="Title" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-432" vertex="1">
  1324. <mxGeometry x="60" width="133" height="34" as="geometry">
  1325. <mxRectangle width="133" height="34" as="alternateBounds" />
  1326. </mxGeometry>
  1327. </mxCell>
  1328. <mxCell id="GCTWj422pI3h6kLligze-435" value="Data type" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-432" vertex="1">
  1329. <mxGeometry x="193" width="97" height="34" as="geometry">
  1330. <mxRectangle width="97" height="34" as="alternateBounds" />
  1331. </mxGeometry>
  1332. </mxCell>
  1333. <mxCell id="GCTWj422pI3h6kLligze-436" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-431" vertex="1">
  1334. <mxGeometry y="64" width="290" height="32" as="geometry" />
  1335. </mxCell>
  1336. <mxCell id="GCTWj422pI3h6kLligze-437" value="PK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-436" vertex="1">
  1337. <mxGeometry width="60" height="32" as="geometry">
  1338. <mxRectangle width="60" height="32" as="alternateBounds" />
  1339. </mxGeometry>
  1340. </mxCell>
  1341. <mxCell id="GCTWj422pI3h6kLligze-438" value="Id" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-436" vertex="1">
  1342. <mxGeometry x="60" width="133" height="32" as="geometry">
  1343. <mxRectangle width="133" height="32" as="alternateBounds" />
  1344. </mxGeometry>
  1345. </mxCell>
  1346. <mxCell id="GCTWj422pI3h6kLligze-439" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-436" vertex="1">
  1347. <mxGeometry x="193" width="97" height="32" as="geometry">
  1348. <mxRectangle width="97" height="32" as="alternateBounds" />
  1349. </mxGeometry>
  1350. </mxCell>
  1351. <mxCell id="GCTWj422pI3h6kLligze-440" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-431" vertex="1">
  1352. <mxGeometry y="96" width="290" height="32" as="geometry" />
  1353. </mxCell>
  1354. <mxCell id="GCTWj422pI3h6kLligze-441" value="FK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-440" vertex="1">
  1355. <mxGeometry width="60" height="32" as="geometry">
  1356. <mxRectangle width="60" height="32" as="alternateBounds" />
  1357. </mxGeometry>
  1358. </mxCell>
  1359. <mxCell id="GCTWj422pI3h6kLligze-442" value="country" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-440" vertex="1">
  1360. <mxGeometry x="60" width="133" height="32" as="geometry">
  1361. <mxRectangle width="133" height="32" as="alternateBounds" />
  1362. </mxGeometry>
  1363. </mxCell>
  1364. <mxCell id="GCTWj422pI3h6kLligze-443" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-440" vertex="1">
  1365. <mxGeometry x="193" width="97" height="32" as="geometry">
  1366. <mxRectangle width="97" height="32" as="alternateBounds" />
  1367. </mxGeometry>
  1368. </mxCell>
  1369. <mxCell id="GCTWj422pI3h6kLligze-444" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-431" vertex="1">
  1370. <mxGeometry y="128" width="290" height="34" as="geometry" />
  1371. </mxCell>
  1372. <mxCell id="GCTWj422pI3h6kLligze-445" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-444" vertex="1">
  1373. <mxGeometry width="60" height="34" as="geometry">
  1374. <mxRectangle width="60" height="34" as="alternateBounds" />
  1375. </mxGeometry>
  1376. </mxCell>
  1377. <mxCell id="GCTWj422pI3h6kLligze-446" value="laws" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-444" vertex="1">
  1378. <mxGeometry x="60" width="133" height="34" as="geometry">
  1379. <mxRectangle width="133" height="34" as="alternateBounds" />
  1380. </mxGeometry>
  1381. </mxCell>
  1382. <mxCell id="GCTWj422pI3h6kLligze-447" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-444" vertex="1">
  1383. <mxGeometry x="193" width="97" height="34" as="geometry">
  1384. <mxRectangle width="97" height="34" as="alternateBounds" />
  1385. </mxGeometry>
  1386. </mxCell>
  1387. <mxCell id="GCTWj422pI3h6kLligze-448" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-431" vertex="1">
  1388. <mxGeometry y="162" width="290" height="34" as="geometry" />
  1389. </mxCell>
  1390. <mxCell id="GCTWj422pI3h6kLligze-449" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-448" vertex="1">
  1391. <mxGeometry width="60" height="34" as="geometry">
  1392. <mxRectangle width="60" height="34" as="alternateBounds" />
  1393. </mxGeometry>
  1394. </mxCell>
  1395. <mxCell id="GCTWj422pI3h6kLligze-450" value="rules_of_culture" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-448" vertex="1">
  1396. <mxGeometry x="60" width="133" height="34" as="geometry">
  1397. <mxRectangle width="133" height="34" as="alternateBounds" />
  1398. </mxGeometry>
  1399. </mxCell>
  1400. <mxCell id="GCTWj422pI3h6kLligze-451" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-448" vertex="1">
  1401. <mxGeometry x="193" width="97" height="34" as="geometry">
  1402. <mxRectangle width="97" height="34" as="alternateBounds" />
  1403. </mxGeometry>
  1404. </mxCell>
  1405. <mxCell id="GCTWj422pI3h6kLligze-452" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-431" vertex="1">
  1406. <mxGeometry y="196" width="290" height="34" as="geometry" />
  1407. </mxCell>
  1408. <mxCell id="GCTWj422pI3h6kLligze-453" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-452" vertex="1">
  1409. <mxGeometry width="60" height="34" as="geometry">
  1410. <mxRectangle width="60" height="34" as="alternateBounds" />
  1411. </mxGeometry>
  1412. </mxCell>
  1413. <mxCell id="GCTWj422pI3h6kLligze-454" value="&lt;span style=&quot;white-space-collapse: preserve;&quot; data-src-align=&quot;0:5&quot; class=&quot;EzKURWReUAB5oZgtQNkl&quot;&gt;gestures&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-452" vertex="1">
  1414. <mxGeometry x="60" width="133" height="34" as="geometry">
  1415. <mxRectangle width="133" height="34" as="alternateBounds" />
  1416. </mxGeometry>
  1417. </mxCell>
  1418. <mxCell id="GCTWj422pI3h6kLligze-455" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-452" vertex="1">
  1419. <mxGeometry x="193" width="97" height="34" as="geometry">
  1420. <mxRectangle width="97" height="34" as="alternateBounds" />
  1421. </mxGeometry>
  1422. </mxCell>
  1423. <mxCell id="GCTWj422pI3h6kLligze-457" value="Advices" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;strokeColor=default;fontSize=16;" parent="1" vertex="1">
  1424. <mxGeometry x="2050" y="1590" width="290" height="196" as="geometry" />
  1425. </mxCell>
  1426. <mxCell id="GCTWj422pI3h6kLligze-458" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-457" vertex="1">
  1427. <mxGeometry y="30" width="290" height="34" as="geometry" />
  1428. </mxCell>
  1429. <mxCell id="GCTWj422pI3h6kLligze-459" value="Key" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-458" vertex="1">
  1430. <mxGeometry width="60" height="34" as="geometry">
  1431. <mxRectangle width="60" height="34" as="alternateBounds" />
  1432. </mxGeometry>
  1433. </mxCell>
  1434. <mxCell id="GCTWj422pI3h6kLligze-460" value="Title" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-458" vertex="1">
  1435. <mxGeometry x="60" width="133" height="34" as="geometry">
  1436. <mxRectangle width="133" height="34" as="alternateBounds" />
  1437. </mxGeometry>
  1438. </mxCell>
  1439. <mxCell id="GCTWj422pI3h6kLligze-461" value="Data type" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-458" vertex="1">
  1440. <mxGeometry x="193" width="97" height="34" as="geometry">
  1441. <mxRectangle width="97" height="34" as="alternateBounds" />
  1442. </mxGeometry>
  1443. </mxCell>
  1444. <mxCell id="GCTWj422pI3h6kLligze-462" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-457" vertex="1">
  1445. <mxGeometry y="64" width="290" height="32" as="geometry" />
  1446. </mxCell>
  1447. <mxCell id="GCTWj422pI3h6kLligze-463" value="PK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-462" vertex="1">
  1448. <mxGeometry width="60" height="32" as="geometry">
  1449. <mxRectangle width="60" height="32" as="alternateBounds" />
  1450. </mxGeometry>
  1451. </mxCell>
  1452. <mxCell id="GCTWj422pI3h6kLligze-464" value="Id" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-462" vertex="1">
  1453. <mxGeometry x="60" width="133" height="32" as="geometry">
  1454. <mxRectangle width="133" height="32" as="alternateBounds" />
  1455. </mxGeometry>
  1456. </mxCell>
  1457. <mxCell id="GCTWj422pI3h6kLligze-465" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-462" vertex="1">
  1458. <mxGeometry x="193" width="97" height="32" as="geometry">
  1459. <mxRectangle width="97" height="32" as="alternateBounds" />
  1460. </mxGeometry>
  1461. </mxCell>
  1462. <mxCell id="EHfPEwggzIhnKUcyckGd-67" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-457" vertex="1">
  1463. <mxGeometry y="96" width="290" height="32" as="geometry" />
  1464. </mxCell>
  1465. <mxCell id="EHfPEwggzIhnKUcyckGd-68" value="FK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-67" vertex="1">
  1466. <mxGeometry width="60" height="32" as="geometry">
  1467. <mxRectangle width="60" height="32" as="alternateBounds" />
  1468. </mxGeometry>
  1469. </mxCell>
  1470. <mxCell id="EHfPEwggzIhnKUcyckGd-69" value="category_advice" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-67" vertex="1">
  1471. <mxGeometry x="60" width="133" height="32" as="geometry">
  1472. <mxRectangle width="133" height="32" as="alternateBounds" />
  1473. </mxGeometry>
  1474. </mxCell>
  1475. <mxCell id="EHfPEwggzIhnKUcyckGd-70" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-67" vertex="1">
  1476. <mxGeometry x="193" width="97" height="32" as="geometry">
  1477. <mxRectangle width="97" height="32" as="alternateBounds" />
  1478. </mxGeometry>
  1479. </mxCell>
  1480. <mxCell id="GCTWj422pI3h6kLligze-470" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-457" vertex="1">
  1481. <mxGeometry y="128" width="290" height="34" as="geometry" />
  1482. </mxCell>
  1483. <mxCell id="GCTWj422pI3h6kLligze-471" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-470" vertex="1">
  1484. <mxGeometry width="60" height="34" as="geometry">
  1485. <mxRectangle width="60" height="34" as="alternateBounds" />
  1486. </mxGeometry>
  1487. </mxCell>
  1488. <mxCell id="GCTWj422pI3h6kLligze-472" value="title" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-470" vertex="1">
  1489. <mxGeometry x="60" width="133" height="34" as="geometry">
  1490. <mxRectangle width="133" height="34" as="alternateBounds" />
  1491. </mxGeometry>
  1492. </mxCell>
  1493. <mxCell id="GCTWj422pI3h6kLligze-473" value="varchar(100)" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-470" vertex="1">
  1494. <mxGeometry x="193" width="97" height="34" as="geometry">
  1495. <mxRectangle width="97" height="34" as="alternateBounds" />
  1496. </mxGeometry>
  1497. </mxCell>
  1498. <mxCell id="GCTWj422pI3h6kLligze-474" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="GCTWj422pI3h6kLligze-457" vertex="1">
  1499. <mxGeometry y="162" width="290" height="34" as="geometry" />
  1500. </mxCell>
  1501. <mxCell id="GCTWj422pI3h6kLligze-475" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-474" vertex="1">
  1502. <mxGeometry width="60" height="34" as="geometry">
  1503. <mxRectangle width="60" height="34" as="alternateBounds" />
  1504. </mxGeometry>
  1505. </mxCell>
  1506. <mxCell id="GCTWj422pI3h6kLligze-476" value="&lt;span style=&quot;white-space-collapse: preserve;&quot; data-src-align=&quot;0:8&quot; class=&quot;EzKURWReUAB5oZgtQNkl&quot;&gt;description&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-474" vertex="1">
  1507. <mxGeometry x="60" width="133" height="34" as="geometry">
  1508. <mxRectangle width="133" height="34" as="alternateBounds" />
  1509. </mxGeometry>
  1510. </mxCell>
  1511. <mxCell id="GCTWj422pI3h6kLligze-477" value="text" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="GCTWj422pI3h6kLligze-474" vertex="1">
  1512. <mxGeometry x="193" width="97" height="34" as="geometry">
  1513. <mxRectangle width="97" height="34" as="alternateBounds" />
  1514. </mxGeometry>
  1515. </mxCell>
  1516. <mxCell id="EHfPEwggzIhnKUcyckGd-71" value="Category_advice" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;strokeColor=default;fontSize=16;" parent="1" vertex="1">
  1517. <mxGeometry x="2040" y="1360" width="290" height="130" as="geometry" />
  1518. </mxCell>
  1519. <mxCell id="EHfPEwggzIhnKUcyckGd-72" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-71" vertex="1">
  1520. <mxGeometry y="30" width="290" height="34" as="geometry" />
  1521. </mxCell>
  1522. <mxCell id="EHfPEwggzIhnKUcyckGd-73" value="Key" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-72" vertex="1">
  1523. <mxGeometry width="60" height="34" as="geometry">
  1524. <mxRectangle width="60" height="34" as="alternateBounds" />
  1525. </mxGeometry>
  1526. </mxCell>
  1527. <mxCell id="EHfPEwggzIhnKUcyckGd-74" value="Title" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-72" vertex="1">
  1528. <mxGeometry x="60" width="133" height="34" as="geometry">
  1529. <mxRectangle width="133" height="34" as="alternateBounds" />
  1530. </mxGeometry>
  1531. </mxCell>
  1532. <mxCell id="EHfPEwggzIhnKUcyckGd-75" value="Data type" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-72" vertex="1">
  1533. <mxGeometry x="193" width="97" height="34" as="geometry">
  1534. <mxRectangle width="97" height="34" as="alternateBounds" />
  1535. </mxGeometry>
  1536. </mxCell>
  1537. <mxCell id="EHfPEwggzIhnKUcyckGd-76" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-71" vertex="1">
  1538. <mxGeometry y="64" width="290" height="32" as="geometry" />
  1539. </mxCell>
  1540. <mxCell id="EHfPEwggzIhnKUcyckGd-77" value="PK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-76" vertex="1">
  1541. <mxGeometry width="60" height="32" as="geometry">
  1542. <mxRectangle width="60" height="32" as="alternateBounds" />
  1543. </mxGeometry>
  1544. </mxCell>
  1545. <mxCell id="EHfPEwggzIhnKUcyckGd-78" value="Id" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-76" vertex="1">
  1546. <mxGeometry x="60" width="133" height="32" as="geometry">
  1547. <mxRectangle width="133" height="32" as="alternateBounds" />
  1548. </mxGeometry>
  1549. </mxCell>
  1550. <mxCell id="EHfPEwggzIhnKUcyckGd-79" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-76" vertex="1">
  1551. <mxGeometry x="193" width="97" height="32" as="geometry">
  1552. <mxRectangle width="97" height="32" as="alternateBounds" />
  1553. </mxGeometry>
  1554. </mxCell>
  1555. <mxCell id="EHfPEwggzIhnKUcyckGd-84" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-71" vertex="1">
  1556. <mxGeometry y="96" width="290" height="34" as="geometry" />
  1557. </mxCell>
  1558. <mxCell id="EHfPEwggzIhnKUcyckGd-85" value="" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-84" vertex="1">
  1559. <mxGeometry width="60" height="34" as="geometry">
  1560. <mxRectangle width="60" height="34" as="alternateBounds" />
  1561. </mxGeometry>
  1562. </mxCell>
  1563. <mxCell id="EHfPEwggzIhnKUcyckGd-86" value="title" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-84" vertex="1">
  1564. <mxGeometry x="60" width="133" height="34" as="geometry">
  1565. <mxRectangle width="133" height="34" as="alternateBounds" />
  1566. </mxGeometry>
  1567. </mxCell>
  1568. <mxCell id="EHfPEwggzIhnKUcyckGd-87" value="varchar(100)" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-84" vertex="1">
  1569. <mxGeometry x="193" width="97" height="34" as="geometry">
  1570. <mxRectangle width="97" height="34" as="alternateBounds" />
  1571. </mxGeometry>
  1572. </mxCell>
  1573. <mxCell id="EHfPEwggzIhnKUcyckGd-92" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.997;exitY=0.584;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;startArrow=ERone;startFill=0;endArrow=ERmany;endFill=0;endSize=12;startSize=12;exitPerimeter=0;" parent="1" source="GCTWj422pI3h6kLligze-23" target="GCTWj422pI3h6kLligze-6" edge="1">
  1574. <mxGeometry relative="1" as="geometry">
  1575. <Array as="points">
  1576. <mxPoint x="1520" y="1700" />
  1577. <mxPoint x="1520" y="1552" />
  1578. </Array>
  1579. </mxGeometry>
  1580. </mxCell>
  1581. <mxCell id="EHfPEwggzIhnKUcyckGd-93" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;startArrow=ERone;startFill=0;endArrow=ERmany;endFill=0;endSize=12;startSize=12;entryX=1;entryY=0.5;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" parent="1" source="GCTWj422pI3h6kLligze-27" target="GCTWj422pI3h6kLligze-44" edge="1">
  1582. <mxGeometry relative="1" as="geometry">
  1583. <mxPoint x="1440" y="1720" as="sourcePoint" />
  1584. <mxPoint x="1681" y="2024.5" as="targetPoint" />
  1585. <Array as="points">
  1586. <mxPoint x="1461" y="1730" />
  1587. <mxPoint x="1461" y="1793" />
  1588. <mxPoint x="1600" y="1793" />
  1589. <mxPoint x="1600" y="1942" />
  1590. <mxPoint x="1520" y="1942" />
  1591. </Array>
  1592. </mxGeometry>
  1593. </mxCell>
  1594. <mxCell id="EHfPEwggzIhnKUcyckGd-98" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;startArrow=ERone;startFill=0;endArrow=ERone;endFill=0;endSize=12;startSize=12;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1.001;entryY=0.128;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="GCTWj422pI3h6kLligze-27" target="GCTWj422pI3h6kLligze-306" edge="1">
  1595. <mxGeometry relative="1" as="geometry">
  1596. <mxPoint x="1430" y="1510" as="sourcePoint" />
  1597. <mxPoint x="910" y="1880" as="targetPoint" />
  1598. <Array as="points">
  1599. <mxPoint x="1050" y="1730" />
  1600. <mxPoint x="1050" y="1940" />
  1601. <mxPoint x="930" y="1940" />
  1602. </Array>
  1603. </mxGeometry>
  1604. </mxCell>
  1605. <mxCell id="EHfPEwggzIhnKUcyckGd-101" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;startArrow=ERone;startFill=0;endArrow=ERone;endFill=0;endSize=12;startSize=12;exitX=1.001;exitY=0.452;exitDx=0;exitDy=0;exitPerimeter=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="GCTWj422pI3h6kLligze-48" target="GCTWj422pI3h6kLligze-422" edge="1">
  1606. <mxGeometry relative="1" as="geometry">
  1607. <mxPoint x="1760" y="1645" as="sourcePoint" />
  1608. <mxPoint x="1990" y="2060" as="targetPoint" />
  1609. <Array as="points">
  1610. <mxPoint x="1630" y="1981" />
  1611. <mxPoint x="1630" y="2039" />
  1612. </Array>
  1613. </mxGeometry>
  1614. </mxCell>
  1615. <mxCell id="EHfPEwggzIhnKUcyckGd-102" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;startArrow=ERone;startFill=0;endArrow=ERone;endFill=0;endSize=12;startSize=12;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="GCTWj422pI3h6kLligze-440" target="GCTWj422pI3h6kLligze-23" edge="1">
  1616. <mxGeometry relative="1" as="geometry">
  1617. <mxPoint x="1030" y="1490" as="sourcePoint" />
  1618. <mxPoint x="1140" y="1510" as="targetPoint" />
  1619. <Array as="points">
  1620. <mxPoint x="1090" y="1552" />
  1621. <mxPoint x="1090" y="1697" />
  1622. </Array>
  1623. </mxGeometry>
  1624. </mxCell>
  1625. <mxCell id="EHfPEwggzIhnKUcyckGd-119" value="organization_of_tours" style="shape=table;startSize=30;container=1;collapsible=0;childLayout=tableLayout;strokeColor=default;fontSize=16;" parent="1" vertex="1">
  1626. <mxGeometry x="1199.86" y="2820" width="290" height="194" as="geometry" />
  1627. </mxCell>
  1628. <mxCell id="EHfPEwggzIhnKUcyckGd-120" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-119" vertex="1">
  1629. <mxGeometry y="30" width="290" height="34" as="geometry" />
  1630. </mxCell>
  1631. <mxCell id="EHfPEwggzIhnKUcyckGd-121" value="Key" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-120" vertex="1">
  1632. <mxGeometry width="60" height="34" as="geometry">
  1633. <mxRectangle width="60" height="34" as="alternateBounds" />
  1634. </mxGeometry>
  1635. </mxCell>
  1636. <mxCell id="EHfPEwggzIhnKUcyckGd-122" value="Title" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-120" vertex="1">
  1637. <mxGeometry x="60" width="133" height="34" as="geometry">
  1638. <mxRectangle width="133" height="34" as="alternateBounds" />
  1639. </mxGeometry>
  1640. </mxCell>
  1641. <mxCell id="EHfPEwggzIhnKUcyckGd-123" value="Data type" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-120" vertex="1">
  1642. <mxGeometry x="193" width="97" height="34" as="geometry">
  1643. <mxRectangle width="97" height="34" as="alternateBounds" />
  1644. </mxGeometry>
  1645. </mxCell>
  1646. <mxCell id="EHfPEwggzIhnKUcyckGd-207" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-119" vertex="1">
  1647. <mxGeometry y="64" width="290" height="32" as="geometry" />
  1648. </mxCell>
  1649. <mxCell id="EHfPEwggzIhnKUcyckGd-208" value="FK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-207" vertex="1">
  1650. <mxGeometry width="60" height="32" as="geometry">
  1651. <mxRectangle width="60" height="32" as="alternateBounds" />
  1652. </mxGeometry>
  1653. </mxCell>
  1654. <mxCell id="EHfPEwggzIhnKUcyckGd-209" value="tours" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-207" vertex="1">
  1655. <mxGeometry x="60" width="133" height="32" as="geometry">
  1656. <mxRectangle width="133" height="32" as="alternateBounds" />
  1657. </mxGeometry>
  1658. </mxCell>
  1659. <mxCell id="EHfPEwggzIhnKUcyckGd-210" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-207" vertex="1">
  1660. <mxGeometry x="193" width="97" height="32" as="geometry">
  1661. <mxRectangle width="97" height="32" as="alternateBounds" />
  1662. </mxGeometry>
  1663. </mxCell>
  1664. <mxCell id="EHfPEwggzIhnKUcyckGd-203" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-119" vertex="1">
  1665. <mxGeometry y="96" width="290" height="32" as="geometry" />
  1666. </mxCell>
  1667. <mxCell id="EHfPEwggzIhnKUcyckGd-204" value="FK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-203" vertex="1">
  1668. <mxGeometry width="60" height="32" as="geometry">
  1669. <mxRectangle width="60" height="32" as="alternateBounds" />
  1670. </mxGeometry>
  1671. </mxCell>
  1672. <mxCell id="EHfPEwggzIhnKUcyckGd-205" value="&lt;span style=&quot;text-wrap: nowrap;&quot;&gt;attractions&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-203" vertex="1">
  1673. <mxGeometry x="60" width="133" height="32" as="geometry">
  1674. <mxRectangle width="133" height="32" as="alternateBounds" />
  1675. </mxGeometry>
  1676. </mxCell>
  1677. <mxCell id="EHfPEwggzIhnKUcyckGd-206" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-203" vertex="1">
  1678. <mxGeometry x="193" width="97" height="32" as="geometry">
  1679. <mxRectangle width="97" height="32" as="alternateBounds" />
  1680. </mxGeometry>
  1681. </mxCell>
  1682. <mxCell id="EHfPEwggzIhnKUcyckGd-124" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-119" vertex="1">
  1683. <mxGeometry y="128" width="290" height="32" as="geometry" />
  1684. </mxCell>
  1685. <mxCell id="EHfPEwggzIhnKUcyckGd-125" value="FK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-124" vertex="1">
  1686. <mxGeometry width="60" height="32" as="geometry">
  1687. <mxRectangle width="60" height="32" as="alternateBounds" />
  1688. </mxGeometry>
  1689. </mxCell>
  1690. <mxCell id="EHfPEwggzIhnKUcyckGd-126" value="&lt;span style=&quot;text-wrap: nowrap;&quot;&gt;hotels&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-124" vertex="1">
  1691. <mxGeometry x="60" width="133" height="32" as="geometry">
  1692. <mxRectangle width="133" height="32" as="alternateBounds" />
  1693. </mxGeometry>
  1694. </mxCell>
  1695. <mxCell id="EHfPEwggzIhnKUcyckGd-127" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-124" vertex="1">
  1696. <mxGeometry x="193" width="97" height="32" as="geometry">
  1697. <mxRectangle width="97" height="32" as="alternateBounds" />
  1698. </mxGeometry>
  1699. </mxCell>
  1700. <mxCell id="EHfPEwggzIhnKUcyckGd-128" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-119" vertex="1">
  1701. <mxGeometry y="160" width="290" height="34" as="geometry" />
  1702. </mxCell>
  1703. <mxCell id="EHfPEwggzIhnKUcyckGd-129" value="FK" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-128" vertex="1">
  1704. <mxGeometry width="60" height="34" as="geometry">
  1705. <mxRectangle width="60" height="34" as="alternateBounds" />
  1706. </mxGeometry>
  1707. </mxCell>
  1708. <mxCell id="EHfPEwggzIhnKUcyckGd-130" value="&lt;span style=&quot;text-wrap: nowrap;&quot;&gt;restaurants&lt;/span&gt;" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-128" vertex="1">
  1709. <mxGeometry x="60" width="133" height="34" as="geometry">
  1710. <mxRectangle width="133" height="34" as="alternateBounds" />
  1711. </mxGeometry>
  1712. </mxCell>
  1713. <mxCell id="EHfPEwggzIhnKUcyckGd-131" value="int" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="EHfPEwggzIhnKUcyckGd-128" vertex="1">
  1714. <mxGeometry x="193" width="97" height="34" as="geometry">
  1715. <mxRectangle width="97" height="34" as="alternateBounds" />
  1716. </mxGeometry>
  1717. </mxCell>
  1718. <mxCell id="EHfPEwggzIhnKUcyckGd-145" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;endSize=12;startSize=12;endArrow=ERmany;endFill=0;startArrow=ERone;startFill=0;" parent="1" source="GCTWj422pI3h6kLligze-97" target="EHfPEwggzIhnKUcyckGd-207" edge="1">
  1719. <mxGeometry relative="1" as="geometry">
  1720. <mxPoint x="774.8600000000001" y="3183" as="targetPoint" />
  1721. </mxGeometry>
  1722. </mxCell>
  1723. <mxCell id="EHfPEwggzIhnKUcyckGd-147" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;endSize=12;startSize=12;endArrow=ERmany;endFill=0;startArrow=ERone;startFill=0;" parent="1" source="GCTWj422pI3h6kLligze-223" target="EHfPEwggzIhnKUcyckGd-207" edge="1">
  1724. <mxGeometry relative="1" as="geometry">
  1725. <mxPoint x="1539.86" y="2087" as="sourcePoint" />
  1726. <mxPoint x="1914.8600000000001" y="3183" as="targetPoint" />
  1727. </mxGeometry>
  1728. </mxCell>
  1729. <mxCell id="EHfPEwggzIhnKUcyckGd-148" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;endSize=12;startSize=12;endArrow=ERmany;endFill=0;startArrow=ERone;startFill=0;" parent="1" source="GCTWj422pI3h6kLligze-232" target="EHfPEwggzIhnKUcyckGd-124" edge="1">
  1730. <mxGeometry relative="1" as="geometry">
  1731. <mxPoint x="1129.86" y="1877" as="sourcePoint" />
  1732. <mxPoint x="1064.8600000000006" y="3149.9999999999995" as="targetPoint" />
  1733. </mxGeometry>
  1734. </mxCell>
  1735. <mxCell id="EHfPEwggzIhnKUcyckGd-152" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;endSize=12;startSize=12;endArrow=ERmany;endFill=0;startArrow=ERone;startFill=0;" parent="1" source="GCTWj422pI3h6kLligze-48" target="EHfPEwggzIhnKUcyckGd-21" edge="1">
  1736. <mxGeometry relative="1" as="geometry">
  1737. <mxPoint x="1150" y="2089" as="sourcePoint" />
  1738. <mxPoint x="1150" y="2305" as="targetPoint" />
  1739. </mxGeometry>
  1740. </mxCell>
  1741. <mxCell id="EHfPEwggzIhnKUcyckGd-153" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;endSize=12;startSize=12;endArrow=ERmany;endFill=0;startArrow=ERone;startFill=0;" parent="1" source="GCTWj422pI3h6kLligze-44" target="EHfPEwggzIhnKUcyckGd-1" edge="1">
  1742. <mxGeometry relative="1" as="geometry">
  1743. <mxPoint x="1094.8600000000001" y="1993" as="sourcePoint" />
  1744. <mxPoint x="1064.8600000000001" y="2282" as="targetPoint" />
  1745. <Array as="points">
  1746. <mxPoint x="1110" y="1942" />
  1747. <mxPoint x="1110" y="2342" />
  1748. </Array>
  1749. </mxGeometry>
  1750. </mxCell>
  1751. <mxCell id="EHfPEwggzIhnKUcyckGd-154" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;endSize=12;startSize=12;endArrow=ERmany;endFill=0;startArrow=ERone;startFill=0;" parent="1" source="GCTWj422pI3h6kLligze-56" target="EHfPEwggzIhnKUcyckGd-43" edge="1">
  1752. <mxGeometry relative="1" as="geometry">
  1753. <mxPoint x="1240" y="1993" as="sourcePoint" />
  1754. <mxPoint x="1210" y="2282" as="targetPoint" />
  1755. </mxGeometry>
  1756. </mxCell>
  1757. <mxCell id="EHfPEwggzIhnKUcyckGd-160" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;startArrow=ERone;startFill=0;endArrow=ERmany;endFill=0;endSize=12;startSize=12;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="GCTWj422pI3h6kLligze-311" target="GCTWj422pI3h6kLligze-101" edge="1">
  1758. <mxGeometry relative="1" as="geometry">
  1759. <mxPoint x="710" y="2180.06" as="sourcePoint" />
  1760. <mxPoint x="500" y="2391.06" as="targetPoint" />
  1761. <Array as="points">
  1762. <mxPoint x="620" y="2000" />
  1763. <mxPoint x="620" y="2374" />
  1764. </Array>
  1765. </mxGeometry>
  1766. </mxCell>
  1767. <mxCell id="EHfPEwggzIhnKUcyckGd-161" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;startArrow=ERone;startFill=0;endArrow=ERmany;endFill=0;endSize=12;startSize=12;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fillColor=#d5e8d4;strokeColor=#82b366;fontStyle=1;strokeWidth=2;" parent="1" source="GCTWj422pI3h6kLligze-311" target="GCTWj422pI3h6kLligze-179" edge="1">
  1768. <mxGeometry relative="1" as="geometry">
  1769. <mxPoint x="1010" y="2000.06" as="sourcePoint" />
  1770. <mxPoint x="1140" y="2374.06" as="targetPoint" />
  1771. <Array as="points">
  1772. <mxPoint x="990" y="2000" />
  1773. <mxPoint x="990" y="2120" />
  1774. <mxPoint x="1520" y="2120" />
  1775. <mxPoint x="1520" y="2374" />
  1776. </Array>
  1777. </mxGeometry>
  1778. </mxCell>
  1779. <mxCell id="EHfPEwggzIhnKUcyckGd-162" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;endSize=12;startSize=12;endArrow=ERmany;endFill=0;startArrow=ERone;startFill=0;" parent="1" source="EHfPEwggzIhnKUcyckGd-76" target="GCTWj422pI3h6kLligze-462" edge="1">
  1780. <mxGeometry relative="1" as="geometry" />
  1781. </mxCell>
  1782. <mxCell id="EHfPEwggzIhnKUcyckGd-211" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;endSize=12;startSize=12;endArrow=ERmany;endFill=0;startArrow=ERone;startFill=0;" parent="1" source="GCTWj422pI3h6kLligze-146" target="EHfPEwggzIhnKUcyckGd-120" edge="1">
  1783. <mxGeometry relative="1" as="geometry">
  1784. <mxPoint x="1010" y="3146" as="sourcePoint" />
  1785. <mxPoint x="1010" y="2960" as="targetPoint" />
  1786. </mxGeometry>
  1787. </mxCell>
  1788. </root>
  1789. </mxGraphModel>
  1790. </diagram>
  1791. </mxfile>