eve-4 2.0.1 → 2.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (182) hide show
  1. checksums.yaml +4 -4
  2. data/.DS_Store +0 -0
  3. data/.gitignore +0 -0
  4. data/.idea/.name +1 -0
  5. data/.idea/.rakeTasks +7 -0
  6. data/.idea/dictionaries/tylercollins.xml +3 -0
  7. data/.idea/encodings.xml +5 -0
  8. data/.idea/eve-updated.iml +58 -0
  9. data/.idea/misc.xml +5 -0
  10. data/.idea/modules.xml +9 -0
  11. data/.idea/scopes/scope_settings.xml +5 -0
  12. data/.idea/vcs.xml +7 -0
  13. data/.idea/workspace.xml +554 -0
  14. data/Gemfile +2 -0
  15. data/Gemfile.lock +108 -0
  16. data/History.txt +7 -0
  17. data/Rakefile +37 -0
  18. data/eve.gemspec +36 -0
  19. data/lib/eve.rb +26 -0
  20. data/lib/eve/api.rb +249 -0
  21. data/lib/eve/api/connectivity.rb +39 -0
  22. data/lib/eve/api/request.rb +80 -0
  23. data/lib/eve/api/response.rb +34 -0
  24. data/lib/eve/api/response/result.rb +87 -0
  25. data/lib/eve/api/response/row.rb +42 -0
  26. data/lib/eve/api/response/rowset.rb +18 -0
  27. data/lib/eve/api/services.rb +20 -0
  28. data/lib/eve/api/services/account.rb +12 -0
  29. data/lib/eve/api/services/character.rb +96 -0
  30. data/lib/eve/api/services/corporation.rb +150 -0
  31. data/lib/eve/api/services/eve.rb +76 -0
  32. data/lib/eve/api/services/map.rb +45 -0
  33. data/lib/eve/api/services/misc.rb +24 -0
  34. data/lib/eve/api/services/server.rb +20 -0
  35. data/lib/eve/dependencies.rb +48 -0
  36. data/lib/eve/deprecation.rb +3 -0
  37. data/lib/eve/errors.rb +129 -0
  38. data/lib/eve/errors/authentication_errors.rb +33 -0
  39. data/lib/eve/errors/internal_errors.rb +64 -0
  40. data/lib/eve/errors/miscellaneous_errors.rb +19 -0
  41. data/lib/eve/errors/user_input_errors.rb +62 -0
  42. data/lib/eve/javascript_helper.rb +196 -0
  43. data/lib/eve/trust.rb +87 -0
  44. data/lib/eve/trust/controller_helpers.rb +86 -0
  45. data/lib/eve/trust/igb_interface.rb +92 -0
  46. data/lib/eve/trust/mime_types.rb +4 -0
  47. data/lib/eve/version.rb +8 -0
  48. data/log/development.log +30 -0
  49. data/spec/controllers/controller_helpers_spec.rb +91 -0
  50. data/spec/helpers/javascript_helper_spec.rb +80 -0
  51. data/spec/helpers/view_helper_spec.rb +7 -0
  52. data/spec/lib/eve/api/calls/account/characters_spec.rb +22 -0
  53. data/spec/lib/eve/api/calls/character/account_balance_spec.rb +21 -0
  54. data/spec/lib/eve/api/calls/character/asset_list_spec.rb +23 -0
  55. data/spec/lib/eve/api/calls/character/character_sheet_spec.rb +51 -0
  56. data/spec/lib/eve/api/calls/character/fac_war_stats_spec.rb +31 -0
  57. data/spec/lib/eve/api/calls/character/industry_jobs_spec.rb +27 -0
  58. data/spec/lib/eve/api/calls/character/kill_log_spec.rb +27 -0
  59. data/spec/lib/eve/api/calls/character/mail_messages_spec.rb +21 -0
  60. data/spec/lib/eve/api/calls/character/mailing_lists_spec.rb +21 -0
  61. data/spec/lib/eve/api/calls/character/market_orders_spec.rb +21 -0
  62. data/spec/lib/eve/api/calls/character/medals_spec.rb +24 -0
  63. data/spec/lib/eve/api/calls/character/research_spec.rb +21 -0
  64. data/spec/lib/eve/api/calls/character/skill_in_training_spec.rb +44 -0
  65. data/spec/lib/eve/api/calls/character/skill_queue_spec.rb +21 -0
  66. data/spec/lib/eve/api/calls/character/standings_spec.rb +26 -0
  67. data/spec/lib/eve/api/calls/character/wallet_journal_spec.rb +21 -0
  68. data/spec/lib/eve/api/calls/character/wallet_transactions_spec.rb +21 -0
  69. data/spec/lib/eve/api/calls/character_portrait_spec.rb +17 -0
  70. data/spec/lib/eve/api/calls/corporation/account_balances_spec.rb +21 -0
  71. data/spec/lib/eve/api/calls/corporation/asset_list_spec.rb +25 -0
  72. data/spec/lib/eve/api/calls/corporation/container_log_spec.rb +23 -0
  73. data/spec/lib/eve/api/calls/corporation/corporation_sheet_spec.rb +36 -0
  74. data/spec/lib/eve/api/calls/corporation/fac_war_stats_spec.rb +23 -0
  75. data/spec/lib/eve/api/calls/corporation/industry_jobs_spec.rb +30 -0
  76. data/spec/lib/eve/api/calls/corporation/kill_log_spec.rb +27 -0
  77. data/spec/lib/eve/api/calls/corporation/market_orders_spec.rb +22 -0
  78. data/spec/lib/eve/api/calls/corporation/medals_spec.rb +21 -0
  79. data/spec/lib/eve/api/calls/corporation/member_medals_spec.rb +21 -0
  80. data/spec/lib/eve/api/calls/corporation/member_security_log_spec.rb +24 -0
  81. data/spec/lib/eve/api/calls/corporation/member_security_spec.rb +25 -0
  82. data/spec/lib/eve/api/calls/corporation/member_tracking_spec.rb +22 -0
  83. data/spec/lib/eve/api/calls/corporation/shareholders_spec.rb +23 -0
  84. data/spec/lib/eve/api/calls/corporation/standings_spec.rb +30 -0
  85. data/spec/lib/eve/api/calls/corporation/starbase_detail_spec.rb +32 -0
  86. data/spec/lib/eve/api/calls/corporation/starbase_list_spec.rb +22 -0
  87. data/spec/lib/eve/api/calls/corporation/titles_spec.rb +26 -0
  88. data/spec/lib/eve/api/calls/corporation/wallet_journal_spec.rb +22 -0
  89. data/spec/lib/eve/api/calls/corporation/wallet_transactions_spec.rb +22 -0
  90. data/spec/lib/eve/api/calls/empty_call_spec.rb +29 -0
  91. data/spec/lib/eve/api/calls/eve/alliance_list_spec.rb +26 -0
  92. data/spec/lib/eve/api/calls/eve/certificate_tree_spec.rb +18 -0
  93. data/spec/lib/eve/api/calls/eve/character_id_spec.rb +27 -0
  94. data/spec/lib/eve/api/calls/eve/conquerable_station_list_spec.rb +11 -0
  95. data/spec/lib/eve/api/calls/eve/error_list_spec.rb +21 -0
  96. data/spec/lib/eve/api/calls/eve/fac_war_stats_spec.rb +25 -0
  97. data/spec/lib/eve/api/calls/eve/fac_war_top_stats_spec.rb +54 -0
  98. data/spec/lib/eve/api/calls/eve/ref_types_spec.rb +11 -0
  99. data/spec/lib/eve/api/calls/eve/skill_tree_spec.rb +17 -0
  100. data/spec/lib/eve/api/calls/map/fac_war_systems_spec.rb +11 -0
  101. data/spec/lib/eve/api/calls/map/jumps_spec.rb +11 -0
  102. data/spec/lib/eve/api/calls/map/kills_spec.rb +11 -0
  103. data/spec/lib/eve/api/calls/map/sovereignty_spec.rb +11 -0
  104. data/spec/lib/eve/api/calls/server_status_spec.rb +28 -0
  105. data/spec/lib/eve/api/request_spec.rb +18 -0
  106. data/spec/lib/eve/api/response/error_spec.rb +13 -0
  107. data/spec/lib/eve/api/response_spec.rb +79 -0
  108. data/spec/lib/eve/api_spec.rb +13 -0
  109. data/spec/lib/eve/core_extensions/hash_spec.rb +23 -0
  110. data/spec/lib/eve/core_extensions/string_spec.rb +8 -0
  111. data/spec/lib/eve/trust/igb_interface_spec.rb +112 -0
  112. data/spec/log/development.log +0 -0
  113. data/spec/rcov.opts +2 -0
  114. data/spec/readme_spec.rb +36 -0
  115. data/spec/sample_api_key.yml +20 -0
  116. data/spec/spec.opts +4 -0
  117. data/spec/spec_helper.rb +63 -0
  118. data/spec/support/behaves_like_rowset.rb +50 -0
  119. data/spec/support/controllers/trust_controller.rb +24 -0
  120. data/spec/support/jpg/mock_portrait.jpg +0 -0
  121. data/spec/support/mock_api_helpers.rb +46 -0
  122. data/spec/support/views/trust/html_and_igb.html.erb +1 -0
  123. data/spec/support/views/trust/html_and_igb.igb.erb +1 -0
  124. data/spec/support/views/trust/html_only.html.erb +1 -0
  125. data/spec/support/views/trust/igb_only.igb.erb +1 -0
  126. data/spec/support/xml/account/characters.xml +15 -0
  127. data/spec/support/xml/character/account_balance.xml +10 -0
  128. data/spec/support/xml/character/asset_list.xml +50 -0
  129. data/spec/support/xml/character/character_sheet.xml +65 -0
  130. data/spec/support/xml/character/fac_war_stats.xml +20 -0
  131. data/spec/support/xml/character/industry_jobs.xml +70 -0
  132. data/spec/support/xml/character/kill_log.xml +51 -0
  133. data/spec/support/xml/character/mail_messages.xml +12 -0
  134. data/spec/support/xml/character/mailing_lists.xml +12 -0
  135. data/spec/support/xml/character/market_orders.xml +11 -0
  136. data/spec/support/xml/character/medals.xml +13 -0
  137. data/spec/support/xml/character/research.xml +13 -0
  138. data/spec/support/xml/character/skill_in_training.xml +14 -0
  139. data/spec/support/xml/character/skill_not_in_training.xml +7 -0
  140. data/spec/support/xml/character/skill_queue.xml +11 -0
  141. data/spec/support/xml/character/standings.xml +32 -0
  142. data/spec/support/xml/character/wallet_journal.xml +39 -0
  143. data/spec/support/xml/character/wallet_transactions.xml +44 -0
  144. data/spec/support/xml/corporation/account_balance.xml +15 -0
  145. data/spec/support/xml/corporation/asset_list.xml +50 -0
  146. data/spec/support/xml/corporation/container_log.xml +32 -0
  147. data/spec/support/xml/corporation/fac_war_stats.xml +19 -0
  148. data/spec/support/xml/corporation/industry_jobs.xml +70 -0
  149. data/spec/support/xml/corporation/kill_log.xml +51 -0
  150. data/spec/support/xml/corporation/market_orders.xml +37 -0
  151. data/spec/support/xml/corporation/medals.xml +8 -0
  152. data/spec/support/xml/corporation/member_corporation_sheet.xml +51 -0
  153. data/spec/support/xml/corporation/member_medals.xml +10 -0
  154. data/spec/support/xml/corporation/member_security.xml +21 -0
  155. data/spec/support/xml/corporation/member_security_log.xml +55 -0
  156. data/spec/support/xml/corporation/member_tracking.xml +18 -0
  157. data/spec/support/xml/corporation/non_member_corporation_sheet.xml +30 -0
  158. data/spec/support/xml/corporation/shareholders.xml +11 -0
  159. data/spec/support/xml/corporation/standings.xml +33 -0
  160. data/spec/support/xml/corporation/starbase_detail.xml +33 -0
  161. data/spec/support/xml/corporation/starbase_list.xml +17 -0
  162. data/spec/support/xml/corporation/titles.xml +34 -0
  163. data/spec/support/xml/corporation/wallet_journal.xml +40 -0
  164. data/spec/support/xml/corporation/wallet_transactions.xml +12 -0
  165. data/spec/support/xml/errors/106.xml +5 -0
  166. data/spec/support/xml/errors/516.xml +5 -0
  167. data/spec/support/xml/eve/alliance_list.xml +22 -0
  168. data/spec/support/xml/eve/certificate_tree.xml +49 -0
  169. data/spec/support/xml/eve/character_id.xml +15 -0
  170. data/spec/support/xml/eve/conquerable_station_list.xml +24 -0
  171. data/spec/support/xml/eve/error_list.xml +78 -0
  172. data/spec/support/xml/eve/fac_war_stats.xml +31 -0
  173. data/spec/support/xml/eve/fac_war_top_stats.xml +238 -0
  174. data/spec/support/xml/eve/ref_types.xml +105 -0
  175. data/spec/support/xml/eve/skill_tree.xml +52 -0
  176. data/spec/support/xml/map/fac_war_systems.xml +180 -0
  177. data/spec/support/xml/map/jumps.xml +166 -0
  178. data/spec/support/xml/map/kills.xml +191 -0
  179. data/spec/support/xml/map/sovereignty.xml +20 -0
  180. data/spec/support/xml/rowset_with_mismatched_attributes.xml +6 -0
  181. data/spec/support/xml/server/server_status.xml +9 -0
  182. metadata +310 -2
@@ -0,0 +1,105 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2010-03-11 14:41:55</currentTime>
4
+ <result>
5
+ <rowset name="refTypes" key="refTypeID" columns="refTypeID,refTypeName">
6
+ <row refTypeID="0" refTypeName="Undefined" />
7
+ <row refTypeID="1" refTypeName="Player Trading" />
8
+ <row refTypeID="2" refTypeName="Market Transaction" />
9
+ <row refTypeID="3" refTypeName="GM Cash Transfer" />
10
+ <row refTypeID="4" refTypeName="ATM Withdraw" />
11
+ <row refTypeID="5" refTypeName="ATM Deposit" />
12
+ <row refTypeID="6" refTypeName="Backward Compatible" />
13
+ <row refTypeID="7" refTypeName="Mission Reward" />
14
+ <row refTypeID="8" refTypeName="Clone Activation" />
15
+ <row refTypeID="9" refTypeName="Inheritance" />
16
+ <row refTypeID="10" refTypeName="Player Donation" />
17
+ <row refTypeID="11" refTypeName="Corporation Payment" />
18
+ <row refTypeID="12" refTypeName="Docking Fee" />
19
+ <row refTypeID="13" refTypeName="Office Rental Fee" />
20
+ <row refTypeID="14" refTypeName="Factory Slot Rental Fee" />
21
+ <row refTypeID="15" refTypeName="Repair Bill" />
22
+ <row refTypeID="16" refTypeName="Bounty" />
23
+ <row refTypeID="17" refTypeName="Bounty Prize" />
24
+ <row refTypeID="18" refTypeName="Agents_temporary" />
25
+ <row refTypeID="19" refTypeName="Insurance" />
26
+ <row refTypeID="20" refTypeName="Mission Expiration" />
27
+ <row refTypeID="21" refTypeName="Mission Completion" />
28
+ <row refTypeID="22" refTypeName="Shares" />
29
+ <row refTypeID="23" refTypeName="Courier Mission Escrow" />
30
+ <row refTypeID="24" refTypeName="Mission Cost" />
31
+ <row refTypeID="25" refTypeName="Agent Miscellaneous" />
32
+ <row refTypeID="26" refTypeName="LP Store" />
33
+ <row refTypeID="27" refTypeName="Agent Location Services" />
34
+ <row refTypeID="28" refTypeName="Agent Donation" />
35
+ <row refTypeID="29" refTypeName="Agent Security Services" />
36
+ <row refTypeID="30" refTypeName="Agent Mission Collateral Paid" />
37
+ <row refTypeID="31" refTypeName="Agent Mission Collateral Refunded" />
38
+ <row refTypeID="32" refTypeName="Agents_preward" />
39
+ <row refTypeID="33" refTypeName="Agent Mission Reward" />
40
+ <row refTypeID="34" refTypeName="Agent Mission Time Bonus Reward" />
41
+ <row refTypeID="35" refTypeName="CSPA" />
42
+ <row refTypeID="36" refTypeName="CSPAOfflineRefund" />
43
+ <row refTypeID="37" refTypeName="Corporation Account Withdrawal" />
44
+ <row refTypeID="38" refTypeName="Corporation Dividend Payment" />
45
+ <row refTypeID="39" refTypeName="Corporation Registration Fee" />
46
+ <row refTypeID="40" refTypeName="Corporation Logo Change Cost" />
47
+ <row refTypeID="41" refTypeName="Release Of Impounded Property" />
48
+ <row refTypeID="42" refTypeName="Market Escrow" />
49
+ <row refTypeID="43" refTypeName="Agent Services Rendered" />
50
+ <row refTypeID="44" refTypeName="Market Fine Paid" />
51
+ <row refTypeID="45" refTypeName="Corporation Liquidation" />
52
+ <row refTypeID="46" refTypeName="Brokers Fee" />
53
+ <row refTypeID="47" refTypeName="Corporation Bulk Payment" />
54
+ <row refTypeID="48" refTypeName="Alliance Registration Fee" />
55
+ <row refTypeID="49" refTypeName="War Fee" />
56
+ <row refTypeID="50" refTypeName="Alliance Maintainance Fee" />
57
+ <row refTypeID="51" refTypeName="Contraband Fine" />
58
+ <row refTypeID="52" refTypeName="Clone Transfer" />
59
+ <row refTypeID="53" refTypeName="Acceleration Gate Fee" />
60
+ <row refTypeID="54" refTypeName="Transaction Tax" />
61
+ <row refTypeID="55" refTypeName="Jump Clone Installation Fee" />
62
+ <row refTypeID="56" refTypeName="Manufacturing" />
63
+ <row refTypeID="57" refTypeName="Researching Technology" />
64
+ <row refTypeID="58" refTypeName="Researching Time Productivity" />
65
+ <row refTypeID="59" refTypeName="Researching Material Productivity" />
66
+ <row refTypeID="60" refTypeName="Copying" />
67
+ <row refTypeID="61" refTypeName="Duplicating" />
68
+ <row refTypeID="62" refTypeName="Reverse Engineering" />
69
+ <row refTypeID="63" refTypeName="Contract Auction Bid" />
70
+ <row refTypeID="64" refTypeName="Contract Auction Bid Refund" />
71
+ <row refTypeID="65" refTypeName="Contract Collateral" />
72
+ <row refTypeID="66" refTypeName="Contract Reward Refund" />
73
+ <row refTypeID="67" refTypeName="Contract Auction Sold" />
74
+ <row refTypeID="68" refTypeName="Contract Reward" />
75
+ <row refTypeID="69" refTypeName="Contract Collateral Refund" />
76
+ <row refTypeID="70" refTypeName="Contract Collateral Payout" />
77
+ <row refTypeID="71" refTypeName="Contract Price" />
78
+ <row refTypeID="72" refTypeName="Contract Brokers Fee" />
79
+ <row refTypeID="73" refTypeName="Contract Sales Tax" />
80
+ <row refTypeID="74" refTypeName="Contract Deposit" />
81
+ <row refTypeID="75" refTypeName="Contract Deposit Sales Tax" />
82
+ <row refTypeID="76" refTypeName="Secure EVE Time Code Exchange" />
83
+ <row refTypeID="77" refTypeName="Contract Auction Bid (corp)" />
84
+ <row refTypeID="78" refTypeName="Contract Collateral Deposited (corp)" />
85
+ <row refTypeID="79" refTypeName="Contract Price Payment (corp)" />
86
+ <row refTypeID="80" refTypeName="Contract Brokers Fee (corp)" />
87
+ <row refTypeID="81" refTypeName="Contract Deposit (corp)" />
88
+ <row refTypeID="82" refTypeName="Contract Deposit Refund" />
89
+ <row refTypeID="83" refTypeName="Contract Reward Deposited" />
90
+ <row refTypeID="84" refTypeName="Contract Reward Deposited (corp)" />
91
+ <row refTypeID="85" refTypeName="Bounty Prizes" />
92
+ <row refTypeID="86" refTypeName="Advertisement Listing Fee" />
93
+ <row refTypeID="87" refTypeName="Medal Creation" />
94
+ <row refTypeID="88" refTypeName="Medal Issued" />
95
+ <row refTypeID="89" refTypeName="Betting" />
96
+ <row refTypeID="90" refTypeName="DNA Modification Fee" />
97
+ <row refTypeID="91" refTypeName="Sovereignity bill" />
98
+ <row refTypeID="92" refTypeName="Bounty Prize Corporation Tax" />
99
+ <row refTypeID="93" refTypeName="Agent Mission Reward Corporation Tax" />
100
+ <row refTypeID="94" refTypeName="Agent Mission Time Bonus Reward Corporation Tax" />
101
+ <row refTypeID="95" refTypeName="Upkeep adjustment fee" />
102
+ </rowset>
103
+ </result>
104
+ <cachedUntil>2010-03-12 14:41:55</cachedUntil>
105
+ </eveapi>
@@ -0,0 +1,52 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2007-12-22 21:51:40</currentTime>
4
+ <result>
5
+ <rowset name="skillGroups" key="groupID" columns="groupName,groupID">
6
+ <row groupName="Corporation Management" groupID="266">
7
+ <rowset name="skills" key="typeID" columns="typeName,groupID,typeID">
8
+ <row typeName="Anchoring" groupID="266" typeID="11584">
9
+ <description>Skill at Anchoring Deployables. Can not be trained on Trial Accounts.</description>
10
+ <rank>3</rank>
11
+ <rowset name="requiredSkills" key="typeID" columns="typeID,skillLevel" />
12
+ <requiredAttributes>
13
+ <primaryAttribute>memory</primaryAttribute>
14
+ <secondaryAttribute>charisma</secondaryAttribute>
15
+ </requiredAttributes>
16
+ <rowset name="skillBonusCollection" key="bonusType" columns="bonusType,bonusValue">
17
+ <row bonusType="canNotBeTrainedOnTrial" bonusValue="1" />
18
+ </rowset>
19
+ </row>
20
+ <row typeName="CFO Training" groupID="266" typeID="3369">
21
+ <description>Skill at managing corp finances. 5% discount on all fees at non-hostile NPC station if acting as CFO of a corp. </description>
22
+ <rank>3</rank>
23
+ <rowset name="requiredSkills" key="typeID" columns="typeID,skillLevel">
24
+ <row typeID="3363" skillLevel="2" />
25
+ <row typeID="3444" skillLevel="3" />
26
+ </rowset>
27
+ <requiredAttributes>
28
+ <primaryAttribute>memory</primaryAttribute>
29
+ <secondaryAttribute>charisma</secondaryAttribute>
30
+ </requiredAttributes>
31
+ <rowset name="skillBonusCollection" key="bonusType" columns="bonusType,bonusValue" />
32
+ </row>
33
+ <row typeName="Corporation Management" groupID="266" typeID="3363">
34
+ <description>Basic corporation operation. +10 corporation members allowed per level.
35
+
36
+ Notice: the CEO must update his corporation through the corporation user interface before the skill takes effect</description>
37
+ <rank>1</rank>
38
+ <rowset name="requiredSkills" key="typeID" columns="typeID,skillLevel" />
39
+ <requiredAttributes>
40
+ <primaryAttribute>memory</primaryAttribute>
41
+ <secondaryAttribute>charisma</secondaryAttribute>
42
+ </requiredAttributes>
43
+ <rowset name="skillBonusCollection" key="bonusType" columns="bonusType,bonusValue">
44
+ <row bonusType="corporationMemberBonus" bonusValue="10" />
45
+ </rowset>
46
+ </row>
47
+ </rowset>
48
+ </row>
49
+ </rowset>
50
+ </result>
51
+ <cachedUntil>2007-12-23 21:51:40</cachedUntil>
52
+ </eveapi>
@@ -0,0 +1,180 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2010-03-10 18:32:20</currentTime>
4
+ <result>
5
+ <rowset name="solarSystems" key="solarSystemID" columns="solarSystemID,solarSystemName,occupyingFactionID,occupyingFactionName,contested">
6
+ <row solarSystemID="30002057" solarSystemName="Hadozeko" occupyingFactionID="0" occupyingFactionName="" contested="False" />
7
+ <row solarSystemID="30002058" solarSystemName="Ardar" occupyingFactionID="0" occupyingFactionName="" contested="False" />
8
+ <row solarSystemID="30002060" solarSystemName="Evati" occupyingFactionID="0" occupyingFactionName="" contested="True" />
9
+ <row solarSystemID="30002061" solarSystemName="Ofstold" occupyingFactionID="0" occupyingFactionName="" contested="False" />
10
+ <row solarSystemID="30002062" solarSystemName="Todifrauan" occupyingFactionID="0" occupyingFactionName="" contested="False" />
11
+ <row solarSystemID="30002065" solarSystemName="Lasleinur" occupyingFactionID="0" occupyingFactionName="" contested="False" />
12
+ <row solarSystemID="30002067" solarSystemName="Brin" occupyingFactionID="0" occupyingFactionName="" contested="False" />
13
+ <row solarSystemID="30002090" solarSystemName="Frerstorn" occupyingFactionID="0" occupyingFactionName="" contested="False" />
14
+ <row solarSystemID="30002091" solarSystemName="Ontorn" occupyingFactionID="0" occupyingFactionName="" contested="False" />
15
+ <row solarSystemID="30002092" solarSystemName="Sirekur" occupyingFactionID="0" occupyingFactionName="" contested="False" />
16
+ <row solarSystemID="30002093" solarSystemName="Gebuladi" occupyingFactionID="0" occupyingFactionName="" contested="False" />
17
+ <row solarSystemID="30002094" solarSystemName="Ebolfer" occupyingFactionID="0" occupyingFactionName="" contested="False" />
18
+ <row solarSystemID="30002095" solarSystemName="Eszur" occupyingFactionID="0" occupyingFactionName="" contested="False" />
19
+ <row solarSystemID="30002096" solarSystemName="Hofjaldgund" occupyingFactionID="0" occupyingFactionName="" contested="False" />
20
+ <row solarSystemID="30002098" solarSystemName="Orfrold" occupyingFactionID="0" occupyingFactionName="" contested="False" />
21
+ <row solarSystemID="30002514" solarSystemName="Bosboger" occupyingFactionID="0" occupyingFactionName="" contested="True" />
22
+ <row solarSystemID="30002516" solarSystemName="Lulm" occupyingFactionID="0" occupyingFactionName="" contested="False" />
23
+ <row solarSystemID="30002517" solarSystemName="Gulmorogod" occupyingFactionID="0" occupyingFactionName="" contested="True" />
24
+ <row solarSystemID="30002537" solarSystemName="Amamake" occupyingFactionID="0" occupyingFactionName="" contested="False" />
25
+ <row solarSystemID="30002538" solarSystemName="Vard" occupyingFactionID="0" occupyingFactionName="" contested="True" />
26
+ <row solarSystemID="30002541" solarSystemName="Dal" occupyingFactionID="0" occupyingFactionName="" contested="False" />
27
+ <row solarSystemID="30002542" solarSystemName="Auga" occupyingFactionID="0" occupyingFactionName="" contested="False" />
28
+ <row solarSystemID="30002756" solarSystemName="Ishomilken" occupyingFactionID="0" occupyingFactionName="" contested="False" />
29
+ <row solarSystemID="30002757" solarSystemName="Nikkishina" occupyingFactionID="0" occupyingFactionName="" contested="False" />
30
+ <row solarSystemID="30002758" solarSystemName="Hasama" occupyingFactionID="0" occupyingFactionName="" contested="False" />
31
+ <row solarSystemID="30002759" solarSystemName="Uuna" occupyingFactionID="0" occupyingFactionName="" contested="False" />
32
+ <row solarSystemID="30002760" solarSystemName="Manjonakko" occupyingFactionID="0" occupyingFactionName="" contested="False" />
33
+ <row solarSystemID="30002796" solarSystemName="Hysera" occupyingFactionID="0" occupyingFactionName="" contested="False" />
34
+ <row solarSystemID="30002806" solarSystemName="Hasmijaala" occupyingFactionID="0" occupyingFactionName="" contested="False" />
35
+ <row solarSystemID="30002807" solarSystemName="Nagamanen" occupyingFactionID="0" occupyingFactionName="" contested="False" />
36
+ <row solarSystemID="30002808" solarSystemName="Oto" occupyingFactionID="0" occupyingFactionName="" contested="False" />
37
+ <row solarSystemID="30002809" solarSystemName="Sujarento" occupyingFactionID="0" occupyingFactionName="" contested="False" />
38
+ <row solarSystemID="30002810" solarSystemName="Eranakko" occupyingFactionID="0" occupyingFactionName="" contested="False" />
39
+ <row solarSystemID="30002811" solarSystemName="Onatoh" occupyingFactionID="0" occupyingFactionName="" contested="False" />
40
+ <row solarSystemID="30002812" solarSystemName="Tannolen" occupyingFactionID="0" occupyingFactionName="" contested="True" />
41
+ <row solarSystemID="30002813" solarSystemName="Tama" occupyingFactionID="0" occupyingFactionName="" contested="True" />
42
+ <row solarSystemID="30002957" solarSystemName="Tzvi" occupyingFactionID="0" occupyingFactionName="" contested="True" />
43
+ <row solarSystemID="30002958" solarSystemName="Raa" occupyingFactionID="0" occupyingFactionName="" contested="False" />
44
+ <row solarSystemID="30002959" solarSystemName="Sifilar" occupyingFactionID="0" occupyingFactionName="" contested="False" />
45
+ <row solarSystemID="30002961" solarSystemName="Oyeman" occupyingFactionID="0" occupyingFactionName="" contested="False" />
46
+ <row solarSystemID="30002976" solarSystemName="Labapi" occupyingFactionID="0" occupyingFactionName="" contested="False" />
47
+ <row solarSystemID="30002977" solarSystemName="Arayar" occupyingFactionID="0" occupyingFactionName="" contested="False" />
48
+ <row solarSystemID="30002978" solarSystemName="Asghed" occupyingFactionID="0" occupyingFactionName="" contested="True" />
49
+ <row solarSystemID="30002980" solarSystemName="Sosan" occupyingFactionID="0" occupyingFactionName="" contested="False" />
50
+ <row solarSystemID="30003070" solarSystemName="Sosala" occupyingFactionID="0" occupyingFactionName="" contested="True" />
51
+ <row solarSystemID="30003071" solarSystemName="Anka" occupyingFactionID="0" occupyingFactionName="" contested="False" />
52
+ <row solarSystemID="30003079" solarSystemName="Saikamon" occupyingFactionID="0" occupyingFactionName="" contested="False" />
53
+ <row solarSystemID="30003087" solarSystemName="Haras" occupyingFactionID="0" occupyingFactionName="" contested="False" />
54
+ <row solarSystemID="30003088" solarSystemName="Oyonata" occupyingFactionID="0" occupyingFactionName="" contested="False" />
55
+ <row solarSystemID="30045314" solarSystemName="Kinakka" occupyingFactionID="0" occupyingFactionName="" contested="False" />
56
+ <row solarSystemID="30045315" solarSystemName="Raihbaka" occupyingFactionID="0" occupyingFactionName="" contested="False" />
57
+ <row solarSystemID="30045317" solarSystemName="Iralaja" occupyingFactionID="0" occupyingFactionName="" contested="False" />
58
+ <row solarSystemID="30045318" solarSystemName="Martoh" occupyingFactionID="0" occupyingFactionName="" contested="True" />
59
+ <row solarSystemID="30045319" solarSystemName="Eha" occupyingFactionID="0" occupyingFactionName="" contested="False" />
60
+ <row solarSystemID="30045320" solarSystemName="Pavanakka" occupyingFactionID="0" occupyingFactionName="" contested="False" />
61
+ <row solarSystemID="30045330" solarSystemName="Okkamon" occupyingFactionID="0" occupyingFactionName="" contested="False" />
62
+ <row solarSystemID="30045331" solarSystemName="Vaaralen" occupyingFactionID="0" occupyingFactionName="" contested="False" />
63
+ <row solarSystemID="30045332" solarSystemName="Asakai" occupyingFactionID="0" occupyingFactionName="" contested="False" />
64
+ <row solarSystemID="30045333" solarSystemName="Prism" occupyingFactionID="0" occupyingFactionName="" contested="False" />
65
+ <row solarSystemID="30045334" solarSystemName="Mushikegi" occupyingFactionID="0" occupyingFactionName="" contested="False" />
66
+ <row solarSystemID="30045335" solarSystemName="Teskanen" occupyingFactionID="0" occupyingFactionName="" contested="False" />
67
+ <row solarSystemID="30045336" solarSystemName="Elunala" occupyingFactionID="0" occupyingFactionName="" contested="False" />
68
+ <row solarSystemID="30045337" solarSystemName="Ikoskio" occupyingFactionID="0" occupyingFactionName="" contested="False" />
69
+ <row solarSystemID="30045338" solarSystemName="Hikkoken" occupyingFactionID="0" occupyingFactionName="" contested="True" />
70
+ <row solarSystemID="30045340" solarSystemName="Aivonen" occupyingFactionID="0" occupyingFactionName="" contested="False" />
71
+ <row solarSystemID="30045345" solarSystemName="Hirri" occupyingFactionID="0" occupyingFactionName="" contested="False" />
72
+ <row solarSystemID="30045346" solarSystemName="Kedama" occupyingFactionID="0" occupyingFactionName="" contested="False" />
73
+ <row solarSystemID="30045347" solarSystemName="Oinasiken" occupyingFactionID="0" occupyingFactionName="" contested="True" />
74
+ <row solarSystemID="30045348" solarSystemName="Notoras" occupyingFactionID="0" occupyingFactionName="" contested="True" />
75
+ <row solarSystemID="30045349" solarSystemName="Rakapas" occupyingFactionID="0" occupyingFactionName="" contested="False" />
76
+ <row solarSystemID="30045350" solarSystemName="Teimo" occupyingFactionID="0" occupyingFactionName="" contested="True" />
77
+ <row solarSystemID="30045351" solarSystemName="Iwisoda" occupyingFactionID="0" occupyingFactionName="" contested="False" />
78
+ <row solarSystemID="30045352" solarSystemName="Nisuwa" occupyingFactionID="0" occupyingFactionName="" contested="True" />
79
+ <row solarSystemID="30045353" solarSystemName="Pynekastoh" occupyingFactionID="0" occupyingFactionName="" contested="False" />
80
+ <row solarSystemID="30045354" solarSystemName="Reitsato" occupyingFactionID="0" occupyingFactionName="" contested="False" />
81
+ <row solarSystemID="30004979" solarSystemName="Heydieles" occupyingFactionID="500001" occupyingFactionName="Caldari State" contested="False" />
82
+ <row solarSystemID="30004980" solarSystemName="Fliet" occupyingFactionID="500001" occupyingFactionName="Caldari State" contested="False" />
83
+ <row solarSystemID="30004985" solarSystemName="Deven" occupyingFactionID="500001" occupyingFactionName="Caldari State" contested="False" />
84
+ <row solarSystemID="30004999" solarSystemName="Ladistier" occupyingFactionID="500001" occupyingFactionName="Caldari State" contested="False" />
85
+ <row solarSystemID="30005000" solarSystemName="Old Man Star" occupyingFactionID="500001" occupyingFactionName="Caldari State" contested="False" />
86
+ <row solarSystemID="30005297" solarSystemName="Ouelletta" occupyingFactionID="500001" occupyingFactionName="Caldari State" contested="True" />
87
+ <row solarSystemID="30045306" solarSystemName="Hykanima" occupyingFactionID="500001" occupyingFactionName="Caldari State" contested="False" />
88
+ <row solarSystemID="30045307" solarSystemName="Okagaiken" occupyingFactionID="500001" occupyingFactionName="Caldari State" contested="True" />
89
+ <row solarSystemID="30045308" solarSystemName="Kehjari" occupyingFactionID="500001" occupyingFactionName="Caldari State" contested="False" />
90
+ <row solarSystemID="30045309" solarSystemName="Villasen" occupyingFactionID="500001" occupyingFactionName="Caldari State" contested="False" />
91
+ <row solarSystemID="30045310" solarSystemName="Sarenemi" occupyingFactionID="500001" occupyingFactionName="Caldari State" contested="False" />
92
+ <row solarSystemID="30045311" solarSystemName="Ashitsu" occupyingFactionID="500001" occupyingFactionName="Caldari State" contested="False" />
93
+ <row solarSystemID="30045312" solarSystemName="Korasen" occupyingFactionID="500001" occupyingFactionName="Caldari State" contested="False" />
94
+ <row solarSystemID="30045313" solarSystemName="Ienakkamon" occupyingFactionID="500001" occupyingFactionName="Caldari State" contested="False" />
95
+ <row solarSystemID="30045316" solarSystemName="Innia" occupyingFactionID="500001" occupyingFactionName="Caldari State" contested="False" />
96
+ <row solarSystemID="30045339" solarSystemName="Enaluri" occupyingFactionID="500001" occupyingFactionName="Caldari State" contested="False" />
97
+ <row solarSystemID="30045341" solarSystemName="Hallanen" occupyingFactionID="500001" occupyingFactionName="Caldari State" contested="False" />
98
+ <row solarSystemID="30045342" solarSystemName="Akidagi" occupyingFactionID="500001" occupyingFactionName="Caldari State" contested="False" />
99
+ <row solarSystemID="30045343" solarSystemName="Immuri" occupyingFactionID="500001" occupyingFactionName="Caldari State" contested="False" />
100
+ <row solarSystemID="30045344" solarSystemName="Nennamaila" occupyingFactionID="500001" occupyingFactionName="Caldari State" contested="False" />
101
+ <row solarSystemID="30002056" solarSystemName="Resbroko" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
102
+ <row solarSystemID="30002059" solarSystemName="Auner" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
103
+ <row solarSystemID="30002063" solarSystemName="Helgatild" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
104
+ <row solarSystemID="30002064" solarSystemName="Arnstur" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
105
+ <row solarSystemID="30002066" solarSystemName="Arnher" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
106
+ <row solarSystemID="30002082" solarSystemName="Floseswin" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="True" />
107
+ <row solarSystemID="30002083" solarSystemName="Uisper" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
108
+ <row solarSystemID="30002084" solarSystemName="Aset" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="True" />
109
+ <row solarSystemID="30002085" solarSystemName="Eytjangard" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
110
+ <row solarSystemID="30002086" solarSystemName="Turnur" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
111
+ <row solarSystemID="30002087" solarSystemName="Isbrabata" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="True" />
112
+ <row solarSystemID="30002088" solarSystemName="Vimeini" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
113
+ <row solarSystemID="30002089" solarSystemName="Avenod" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
114
+ <row solarSystemID="30002097" solarSystemName="Klogori" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
115
+ <row solarSystemID="30002099" solarSystemName="Egmar" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
116
+ <row solarSystemID="30002100" solarSystemName="Taff" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
117
+ <row solarSystemID="30002101" solarSystemName="Ualkin" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
118
+ <row solarSystemID="30002102" solarSystemName="Gukarla" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
119
+ <row solarSystemID="30002539" solarSystemName="Siseide" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
120
+ <row solarSystemID="30002540" solarSystemName="Lantorn" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="True" />
121
+ <row solarSystemID="30002962" solarSystemName="Ezzara" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="True" />
122
+ <row solarSystemID="30003068" solarSystemName="Kourmonen" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="True" />
123
+ <row solarSystemID="30003072" solarSystemName="Iesa" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
124
+ <row solarSystemID="30003077" solarSystemName="Uusanen" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
125
+ <row solarSystemID="30003086" solarSystemName="Sahtogas" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="True" />
126
+ <row solarSystemID="30003089" solarSystemName="Kurniainen" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
127
+ <row solarSystemID="30003090" solarSystemName="Saidusairos" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
128
+ <row solarSystemID="30003091" solarSystemName="Tannakan" occupyingFactionID="500002" occupyingFactionName="Minmatar Republic" contested="False" />
129
+ <row solarSystemID="30002960" solarSystemName="Arzad" occupyingFactionID="500003" occupyingFactionName="Amarr Empire" contested="True" />
130
+ <row solarSystemID="30002975" solarSystemName="Roushzar" occupyingFactionID="500003" occupyingFactionName="Amarr Empire" contested="False" />
131
+ <row solarSystemID="30002979" solarSystemName="Tararan" occupyingFactionID="500003" occupyingFactionName="Amarr Empire" contested="False" />
132
+ <row solarSystemID="30002981" solarSystemName="Halmah" occupyingFactionID="500003" occupyingFactionName="Amarr Empire" contested="False" />
133
+ <row solarSystemID="30003063" solarSystemName="Lamaa" occupyingFactionID="500003" occupyingFactionName="Amarr Empire" contested="False" />
134
+ <row solarSystemID="30003067" solarSystemName="Huola" occupyingFactionID="500003" occupyingFactionName="Amarr Empire" contested="True" />
135
+ <row solarSystemID="30003069" solarSystemName="Kamela" occupyingFactionID="500003" occupyingFactionName="Amarr Empire" contested="True" />
136
+ <row solarSystemID="30003787" solarSystemName="Agoze" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
137
+ <row solarSystemID="30003788" solarSystemName="Intaki" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
138
+ <row solarSystemID="30003789" solarSystemName="Brarel" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
139
+ <row solarSystemID="30003790" solarSystemName="Vey" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
140
+ <row solarSystemID="30003791" solarSystemName="Annancale" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
141
+ <row solarSystemID="30003792" solarSystemName="Ostingele" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
142
+ <row solarSystemID="30003793" solarSystemName="Harroule" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
143
+ <row solarSystemID="30003795" solarSystemName="Covryn" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
144
+ <row solarSystemID="30003796" solarSystemName="Iges" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
145
+ <row solarSystemID="30003797" solarSystemName="Dastryns" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
146
+ <row solarSystemID="30003799" solarSystemName="Uphallant" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
147
+ <row solarSystemID="30003825" solarSystemName="Eugales" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
148
+ <row solarSystemID="30003826" solarSystemName="Frarie" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
149
+ <row solarSystemID="30003827" solarSystemName="Aubenall" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
150
+ <row solarSystemID="30003828" solarSystemName="Moclinamaud" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
151
+ <row solarSystemID="30003829" solarSystemName="Renarelle" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
152
+ <row solarSystemID="30003836" solarSystemName="Vlillirier" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
153
+ <row solarSystemID="30003837" solarSystemName="Aldranette" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="True" />
154
+ <row solarSystemID="30003838" solarSystemName="Oicx" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
155
+ <row solarSystemID="30003839" solarSystemName="Evaulon" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
156
+ <row solarSystemID="30003840" solarSystemName="Anchauttes" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
157
+ <row solarSystemID="30003841" solarSystemName="Alsavoinon" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
158
+ <row solarSystemID="30003842" solarSystemName="Esesier" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
159
+ <row solarSystemID="30003850" solarSystemName="Alparena" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
160
+ <row solarSystemID="30003851" solarSystemName="Reschard" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
161
+ <row solarSystemID="30003852" solarSystemName="Arderonne" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
162
+ <row solarSystemID="30003853" solarSystemName="Mercomesier" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
163
+ <row solarSystemID="30003854" solarSystemName="Alamel" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
164
+ <row solarSystemID="30003855" solarSystemName="Mantenault" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
165
+ <row solarSystemID="30003856" solarSystemName="Athounon" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
166
+ <row solarSystemID="30003857" solarSystemName="Odamia" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
167
+ <row solarSystemID="30004982" solarSystemName="Indregulle" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="True" />
168
+ <row solarSystemID="30004984" solarSystemName="Abune" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="True" />
169
+ <row solarSystemID="30004997" solarSystemName="Vifrevaert" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="True" />
170
+ <row solarSystemID="30005295" solarSystemName="Murethand" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
171
+ <row solarSystemID="30005296" solarSystemName="Melmaniel" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
172
+ <row solarSystemID="30005298" solarSystemName="Costolle" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
173
+ <row solarSystemID="30005299" solarSystemName="Muetralle" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
174
+ <row solarSystemID="30005300" solarSystemName="Loes" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
175
+ <row solarSystemID="30005320" solarSystemName="Hevrice" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
176
+ <row solarSystemID="30005321" solarSystemName="Jovainnon" occupyingFactionID="500004" occupyingFactionName="Gallente Federation" contested="False" />
177
+ </rowset>
178
+ </result>
179
+ <cachedUntil>2010-03-10 19:32:20</cachedUntil>
180
+ </eveapi>
@@ -0,0 +1,166 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2010-03-10 18:32:17</currentTime>
4
+ <result>
5
+ <rowset name="solarSystems" key="solarSystemID" columns="solarSystemID,shipJumps">
6
+ <row solarSystemID="30001746" shipJumps="4" />
7
+ <row solarSystemID="30002410" shipJumps="19" />
8
+ <row solarSystemID="30003999" shipJumps="7" />
9
+ <row solarSystemID="30004663" shipJumps="8" />
10
+ <row solarSystemID="30005327" shipJumps="21" />
11
+ <row solarSystemID="30035042" shipJumps="8" />
12
+ <row solarSystemID="30001082" shipJumps="1" />
13
+ <row solarSystemID="30002433" shipJumps="9" />
14
+ <row solarSystemID="30003312" shipJumps="48" />
15
+ <row solarSystemID="30005304" shipJumps="720" />
16
+ <row solarSystemID="30004640" shipJumps="6" />
17
+ <row solarSystemID="30001105" shipJumps="2" />
18
+ <row solarSystemID="30003976" shipJumps="1" />
19
+ <row solarSystemID="30001723" shipJumps="41" />
20
+ <row solarSystemID="31001881" shipJumps="15" />
21
+ <row solarSystemID="30000249" shipJumps="9" />
22
+ <row solarSystemID="30000913" shipJumps="16" />
23
+ <row solarSystemID="30000226" shipJumps="4" />
24
+ <row solarSystemID="30002748" shipJumps="55" />
25
+ <row solarSystemID="30002997" shipJumps="12" />
26
+ <row solarSystemID="30004076" shipJumps="7" />
27
+ <row solarSystemID="31000158" shipJumps="2" />
28
+ <row solarSystemID="30004325" shipJumps="15" />
29
+ <row solarSystemID="30000103" shipJumps="10" />
30
+ <row solarSystemID="30003435" shipJumps="12" />
31
+ <row solarSystemID="31000845" shipJumps="6" />
32
+ <row solarSystemID="31002173" shipJumps="11" />
33
+ <row solarSystemID="30004763" shipJumps="1" />
34
+ <row solarSystemID="30000541" shipJumps="1" />
35
+ <row solarSystemID="30000790" shipJumps="2" />
36
+ <row solarSystemID="30001869" shipJumps="19" />
37
+ <row solarSystemID="30004122" shipJumps="41" />
38
+ <row solarSystemID="30005204" shipJumps="122" />
39
+ <row solarSystemID="30002951" shipJumps="20" />
40
+ <row solarSystemID="30004955" shipJumps="9" />
41
+ <row solarSystemID="30000149" shipJumps="360" />
42
+ <row solarSystemID="30001182" shipJumps="38" />
43
+ <row solarSystemID="30002264" shipJumps="19" />
44
+ <row solarSystemID="30002805" shipJumps="380" />
45
+ <row solarSystemID="30004268" shipJumps="49" />
46
+ <row solarSystemID="30004809" shipJumps="2" />
47
+ <row solarSystemID="31001094" shipJumps="20" />
48
+ <row solarSystemID="30000936" shipJumps="12" />
49
+ <row solarSystemID="30001328" shipJumps="10" />
50
+ <row solarSystemID="30002164" shipJumps="9" />
51
+ <row solarSystemID="30003830" shipJumps="378" />
52
+ <row solarSystemID="30004909" shipJumps="19" />
53
+ <row solarSystemID="30005158" shipJumps="27" />
54
+ <row solarSystemID="30011407" shipJumps="200" />
55
+ <row solarSystemID="30003492" shipJumps="233" />
56
+ <row solarSystemID="31001240" shipJumps="2" />
57
+ <row solarSystemID="30001915" shipJumps="1" />
58
+ <row solarSystemID="30003243" shipJumps="2" />
59
+ <row solarSystemID="30003581" shipJumps="3" />
60
+ <row solarSystemID="30000687" shipJumps="5" />
61
+ <row solarSystemID="30001228" shipJumps="13" />
62
+ <row solarSystemID="30002015" shipJumps="33" />
63
+ <row solarSystemID="30002556" shipJumps="160" />
64
+ <row solarSystemID="30004179" shipJumps="5" />
65
+ <row solarSystemID="30004222" shipJumps="120" />
66
+ <row solarSystemID="30045344" shipJumps="76" />
67
+ <row solarSystemID="30002851" shipJumps="5" />
68
+ <row solarSystemID="30004517" shipJumps="8" />
69
+ <row solarSystemID="30005058" shipJumps="96" />
70
+ <row solarSystemID="30001374" shipJumps="809" />
71
+ <row solarSystemID="30002207" shipJumps="15" />
72
+ <row solarSystemID="30002702" shipJumps="6" />
73
+ <row solarSystemID="30003289" shipJumps="13" />
74
+ <row solarSystemID="30003535" shipJumps="11" />
75
+ <row solarSystemID="30003538" shipJumps="39" />
76
+ <row solarSystemID="30004371" shipJumps="10" />
77
+ <row solarSystemID="30004617" shipJumps="52" />
78
+ <row solarSystemID="30004866" shipJumps="4" />
79
+ <row solarSystemID="30003784" shipJumps="3" />
80
+ <row solarSystemID="30003389" shipJumps="280" />
81
+ <row solarSystemID="30004225" shipJumps="119" />
82
+ <row solarSystemID="30002061" shipJumps="5" />
83
+ <row solarSystemID="30003930" shipJumps="17" />
84
+ <row solarSystemID="30005012" shipJumps="3" />
85
+ <row solarSystemID="30002848" shipJumps="3" />
86
+ <row solarSystemID="30003143" shipJumps="1" />
87
+ <row solarSystemID="30000003" shipJumps="195" />
88
+ <row solarSystemID="30004912" shipJumps="9" />
89
+ <row solarSystemID="30005078" shipJumps="3" />
90
+ <row solarSystemID="30002161" shipJumps="2" />
91
+ <row solarSystemID="30000146" shipJumps="560" />
92
+ <row solarSystemID="30000644" shipJumps="9" />
93
+ <row solarSystemID="30004935" shipJumps="18" />
94
+ <row solarSystemID="30000787" shipJumps="10" />
95
+ <row solarSystemID="30003040" shipJumps="57" />
96
+ <row solarSystemID="30003704" shipJumps="56" />
97
+ <row solarSystemID="30004033" shipJumps="7" />
98
+ <row solarSystemID="30045324" shipJumps="347" />
99
+ <row solarSystemID="30000123" shipJumps="13" />
100
+ <row solarSystemID="30003369" shipJumps="15" />
101
+ <row solarSystemID="31001612" shipJumps="1" />
102
+ <row solarSystemID="31000945" shipJumps="4" />
103
+ <row solarSystemID="30002018" shipJumps="10" />
104
+ <row solarSystemID="30005055" shipJumps="90" />
105
+ <row solarSystemID="30012715" shipJumps="17" />
106
+ <row solarSystemID="30045347" shipJumps="61" />
107
+ <row solarSystemID="31000971" shipJumps="3" />
108
+ <row solarSystemID="30001354" shipJumps="1" />
109
+ <row solarSystemID="30001162" shipJumps="73" />
110
+ <row solarSystemID="30005247" shipJumps="22" />
111
+ <row solarSystemID="31000161" shipJumps="1" />
112
+ <row solarSystemID="31002153" shipJumps="1" />
113
+ <row solarSystemID="30001185" shipJumps="43" />
114
+ <row solarSystemID="31000261" shipJumps="1" />
115
+ <row solarSystemID="30000521" shipJumps="2" />
116
+ <row solarSystemID="30000621" shipJumps="3" />
117
+ <row solarSystemID="30003412" shipJumps="353" />
118
+ <row solarSystemID="30000080" shipJumps="15" />
119
+ <row solarSystemID="31000573" shipJumps="1" />
120
+ <row solarSystemID="30003163" shipJumps="2" />
121
+ <row solarSystemID="31000822" shipJumps="2" />
122
+ <row solarSystemID="30001646" shipJumps="182" />
123
+ <row solarSystemID="30002771" shipJumps="147" />
124
+ <row solarSystemID="30003269" shipJumps="33" />
125
+ <row solarSystemID="30003804" shipJumps="5" />
126
+ <row solarSystemID="31002388" shipJumps="3" />
127
+ <row solarSystemID="30001205" shipJumps="23" />
128
+ <row solarSystemID="30002536" shipJumps="3" />
129
+ <row solarSystemID="30004537" shipJumps="1" />
130
+ <row solarSystemID="30004786" shipJumps="6" />
131
+ <row solarSystemID="30002287" shipJumps="2" />
132
+ <row solarSystemID="30000813" shipJumps="21" />
133
+ <row solarSystemID="30001895" shipJumps="48" />
134
+ <row solarSystemID="30005178" shipJumps="21" />
135
+ <row solarSystemID="30000272" shipJumps="1" />
136
+ <row solarSystemID="31000430" shipJumps="4" />
137
+ <row solarSystemID="30002330" shipJumps="1" />
138
+ <row solarSystemID="30004245" shipJumps="61" />
139
+ <row solarSystemID="30004494" shipJumps="6" />
140
+ <row solarSystemID="30000664" shipJumps="16" />
141
+ <row solarSystemID="30004743" shipJumps="5" />
142
+ <row solarSystemID="31001655" shipJumps="6" />
143
+ <row solarSystemID="30002828" shipJumps="2" />
144
+ <row solarSystemID="30000023" shipJumps="80" />
145
+ <row solarSystemID="30000564" shipJumps="5" />
146
+ <row solarSystemID="30001689" shipJumps="143" />
147
+ <row solarSystemID="30002187" shipJumps="1840" />
148
+ <row solarSystemID="30002728" shipJumps="35" />
149
+ <row solarSystemID="30003853" shipJumps="5" />
150
+ <row solarSystemID="30004345" shipJumps="9" />
151
+ <row solarSystemID="30002230" shipJumps="2" />
152
+ <row solarSystemID="30004394" shipJumps="3" />
153
+ <row solarSystemID="30000956" shipJumps="11" />
154
+ <row solarSystemID="30001789" shipJumps="13" />
155
+ <row solarSystemID="30002038" shipJumps="5" />
156
+ <row solarSystemID="30003120" shipJumps="9" />
157
+ <row solarSystemID="30003953" shipJumps="12" />
158
+ <row solarSystemID="30004202" shipJumps="14" />
159
+ <row solarSystemID="30005035" shipJumps="51" />
160
+ <row solarSystemID="31001114" shipJumps="10" />
161
+ <row solarSystemID="30005284" shipJumps="2" />
162
+ </rowset>
163
+ <dataTime>2010-03-10 18:32:18</dataTime>
164
+ </result>
165
+ <cachedUntil>2010-03-10 19:32:18</cachedUntil>
166
+ </eveapi>