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,11 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2008-09-02 17:45:01</currentTime>
4
+ <result>
5
+ <rowset name="characters" key="shareholderID" columns="shareholderID,shareholderName,shareholderCorporationID,shareholderCorporationName,shares">
6
+ <row shareholderID="126891489" shareholderName="Dragonaire" shareholderCorporationID="632257314" shareholderCorporationName="Corax." shares="1" />
7
+ </rowset>
8
+ <rowset name="corporations" key="shareholderID" columns="shareholderID,shareholderName,shares" />
9
+ </result>
10
+ <cachedUntil>2008-09-02 18:45:01</cachedUntil>
11
+ </eveapi>
@@ -0,0 +1,33 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2008-09-02 18:08:40</currentTime>
4
+ <result>
5
+ <corporationStandings>
6
+ <standingsTo>
7
+ <rowset name="characters" key="toID" columns="toID,toName,standing">
8
+ </rowset>
9
+ <rowset name="corporations" key="toID" columns="toID,toName,standing">
10
+ </rowset>
11
+ <rowset name="alliances" key="toID" columns="toID,toName,standing">
12
+ </rowset>
13
+ </standingsTo>
14
+ <standingsFrom>
15
+ <rowset name="agents" key="fromID" columns="fromID,fromName,standing">
16
+ </rowset>
17
+ <rowset name="NPCCorporations" key="fromID" columns="fromID,fromName,standing">
18
+ </rowset>
19
+ <rowset name="factions" key="fromID" columns="fromID,fromName,standing">
20
+ </rowset>
21
+ </standingsFrom>
22
+ </corporationStandings>
23
+ <allianceStandings>
24
+ <standingsTo>
25
+ <rowset name="corporations" key="toID" columns="toID,toName,standing">
26
+ </rowset>
27
+ <rowset name="alliances" key="toID" columns="toID,toName,standing">
28
+ </rowset>
29
+ </standingsTo>
30
+ </allianceStandings>
31
+ </result>
32
+ <cachedUntil>2008-09-02 21:08:41</cachedUntil>
33
+ </eveapi>
@@ -0,0 +1,33 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2009-05-02 20:36:56</currentTime>
4
+ <result>
5
+ <state>4</state>
6
+ <stateTimestamp>2009-05-02 21:31:36</stateTimestamp>
7
+ <onlineTimestamp>2009-04-18 23:30:29</onlineTimestamp>
8
+ <generalSettings>
9
+ <usageFlags>3</usageFlags>
10
+ <deployFlags>0</deployFlags>
11
+ <allowCorporationMembers>1</allowCorporationMembers>
12
+ <allowAllianceMembers>1</allowAllianceMembers>
13
+ </generalSettings>
14
+ <combatSettings>
15
+ <onStandingDrop standing="10" />
16
+ <onStatusDrop enabled="0" standing="0" />
17
+ <onAggression enabled="0" />
18
+ <onCorporationWar enabled="1" />
19
+ </combatSettings>
20
+ <rowset name="fuel" key="typeID" columns="typeID,quantity">
21
+ <row typeID="16275" quantity="2447" />
22
+ <row typeID="16274" quantity="18758" />
23
+ <row typeID="9848" quantity="166" />
24
+ <row typeID="9832" quantity="332" />
25
+ <row typeID="3689" quantity="332" />
26
+ <row typeID="44" quantity="166" />
27
+ <row typeID="16273" quantity="6142" />
28
+ <row typeID="16272" quantity="5644" />
29
+ <row typeID="3683" quantity="1162" />
30
+ </rowset>
31
+ </result>
32
+ <cachedUntil>2009-05-02 21:36:56</cachedUntil>
33
+ </eveapi>
@@ -0,0 +1,17 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="1">
3
+ <currentTime>2007-12-02 19:52:12</currentTime>
4
+ <result>
5
+ <rowset name="starbases" key="itemID" columns="itemID,typeID,locationID,moonID,state,stateTimestamp,onlineTimestamp">
6
+ <row itemID="150354725" typeID="12235" locationID="30000380" moonID="40023754"
7
+ state="4" stateTimestamp="0001-01-01 00:00:00" onlineTimestamp="2007-08-06 13:43:16" />
8
+ <row itemID="150354773" typeID="20059" locationID="30001984" moonID="40126738"
9
+ state="1" stateTimestamp="0001-01-01 00:00:00" onlineTimestamp="0001-01-01 00:00:00" />
10
+ <row itemID="150357658" typeID="12235" locationID="30001984" moonID="40126713"
11
+ state="1" stateTimestamp="0001-01-01 00:00:00" onlineTimestamp="0001-01-01 00:00:00" />
12
+ <row itemID="150318232" typeID="16286" locationID="30003109" moonID="40197483"
13
+ state="4" stateTimestamp="0001-01-01 00:00:00" onlineTimestamp="2007-05-23 16:54:43" />
14
+ </rowset>
15
+ </result>
16
+ <cachedUntil>2007-12-03 01:52:12</cachedUntil>
17
+ </eveapi>
@@ -0,0 +1,34 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2008-09-02 17:38:02</currentTime>
4
+ <result>
5
+ <rowset name="titles" key="titleID" columns="titleID,titleName">
6
+ <row titleID="1" titleName="Member">
7
+ <rowset name="roles" key="roleID" columns="roleID,roleName">
8
+ </rowset>
9
+ <rowset name="grantableRoles" key="roleID" columns="roleID,roleName" />
10
+ <rowset name="rolesAtHQ" key="roleID" columns="roleID,roleName">
11
+ <row roleID="8192" roleName="roleHangarCanTake1" roleDescription="Can take items from this divisions hangar" />
12
+ </rowset>
13
+ <rowset name="grantableRolesAtHQ" key="roleID" columns="roleID,roleName" />
14
+ <rowset name="rolesAtBase" key="roleID" columns="roleID,roleName">
15
+ </rowset>
16
+ <rowset name="grantableRolesAtBase" key="roleID" columns="roleID,roleName" />
17
+ <rowset name="rolesAtOther" key="roleID" columns="roleID,roleName">
18
+ </rowset>
19
+ <rowset name="grantableRolesAtOther" key="roleID" columns="roleID,roleName" />
20
+ </row>
21
+ <row titleID="2" titleName="unused 1">
22
+ <rowset name="roles" key="roleID" columns="roleID,roleName" />
23
+ <rowset name="grantableRoles" key="roleID" columns="roleID,roleName" />
24
+ <rowset name="rolesAtHQ" key="roleID" columns="roleID,roleName" />
25
+ <rowset name="grantableRolesAtHQ" key="roleID" columns="roleID,roleName" />
26
+ <rowset name="rolesAtBase" key="roleID" columns="roleID,roleName" />
27
+ <rowset name="grantableRolesAtBase" key="roleID" columns="roleID,roleName" />
28
+ <rowset name="rolesAtOther" key="roleID" columns="roleID,roleName" />
29
+ <rowset name="grantableRolesAtOther" key="roleID" columns="roleID,roleName" />
30
+ </row>
31
+ </rowset>
32
+ </result>
33
+ <cachedUntil>2008-09-02 18:38:02</cachedUntil>
34
+ </eveapi>
@@ -0,0 +1,40 @@
1
+ <eveapi version="2">
2
+ <currentTime>2008-08-22 12:00:16</currentTime>
3
+ <result>
4
+ <rowset name="entries" key="refID"
5
+ columns="date,refID,refTypeID,ownerName1,ownerID1,ownerName2,ownerID2,argName1,argID1,amount,balance,reason">
6
+ <row date="2008-08-22 03:36:00" refID="1578932679" refTypeID="54" ownerName1="corpslave"
7
+ ownerID1="150337897" ownerName2="Secure Commerce Commission" ownerID2="1000132"
8
+ argName1="" argID1="0" amount="-8396.99" balance="576336941.61" reason="" />
9
+ <row date="2008-08-22 03:36:00" refID="1578932678" refTypeID="2" ownerName1="anonymous"
10
+ ownerID1="30497503" ownerName2="corpslave" ownerID2="150337897"
11
+ argName1="725524391" argID1="0" amount="1399498.50" balance="576345338.60" reason="" />
12
+ <row date="2008-08-21 22:18:00" refID="1578164958" refTypeID="42" ownerName1="corpslave"
13
+ ownerID1="150337897" ownerName2="" ownerID2="0"
14
+ argName1="" argID1="0" amount="-152939.40" balance="574647640.10" reason="" />
15
+ <row date="2008-08-21 21:42:00" refID="1578064292" refTypeID="46" ownerName1="corpslave"
16
+ ownerID1="150337897" ownerName2="Secure Commerce Commission" ownerID2="1000132"
17
+ argName1="" argID1="1" amount="-100.00" balance="576279220.79" reason="" />
18
+ <row date="2008-08-21 08:35:00" refID="1576226363" refTypeID="63" ownerName1="corpslave"
19
+ ownerID1="150337897" ownerName2="Secure Commerce Commission" ownerID2="1000132"
20
+ argName1="9956913" argID1="0" amount="-20200000.00" balance="573681668.81" reason="" />
21
+ <row date="2008-08-21 00:12:00" refID="1575178039" refTypeID="64" ownerName1="Secure Commerce Commission"
22
+ ownerID1="1000132" ownerName2="corpslave" ownerID2="150337897"
23
+ argName1="9956913" argID1="0" amount="5300000.00" balance="612310142.18" reason="" />
24
+ <row date="2008-08-20 05:14:00" refID="1572522021" refTypeID="85" ownerName1="CONCORD"
25
+ ownerID1="1000125" ownerName2="corpslave" ownerID2="150337897"
26
+ argName1="" argID1="30002672" amount="5891907.60" balance="609292267.52"
27
+ reason="17058:5,17066:3,24076:3,17071:2,24020:1,17082:1,24155:1,..." />
28
+ <row date="2008-08-20 05:19:00" refID="1572531631" refTypeID="34" ownerName1="anonymous"
29
+ ownerID1="30497503" ownerName2="corpslave" ownerID2="150337897"
30
+ argName1="" argID1="30497503" amount="911000.00" balance="611148267.52" reason="" />
31
+ <row date="2008-08-20 05:19:00" refID="1572531630" refTypeID="33" ownerName1="anonymous"
32
+ ownerID1="30497503" ownerName2="corpslave" ownerID2="150337897"
33
+ argName1="" argID1="30497503" amount="945000.00" balance="610237267.52" reason="" />
34
+ <row date="2008-08-20 04:15:00" refID="1572401485" refTypeID="15" ownerName1="corpslave"
35
+ ownerID1="150337897" ownerName2="Federal Intelligence Office" ownerID2="1000121"
36
+ argName1="" argID1="1" amount="-504.00" balance="597984259.02" reason="" />
37
+ </rowset>
38
+ </result>
39
+ <cachedUntil>2008-08-22 12:15:16</cachedUntil>
40
+ </eveapi>
@@ -0,0 +1,12 @@
1
+ <eveapi version="2">
2
+ <currentTime>2008-08-12 17:00:46</currentTime>
3
+ <result>
4
+ <rowset name="transactions" key="transactionID" columns="transactionDateTime,transactionID,quantity,typeName,typeID,price,clientID,clientName,characterID,characterName,stationID,stationName,transactionType,transactionFor">
5
+ <row transactionDateTime="2008-08-04 22:01:00" transactionID="705664738" quantity="50000" typeName="Oxygen Isotopes" typeID="17887" price="250.00" clientID="174312871" clientName="ACHAR" characterID="000000000" characterName="SELLER" stationID="60004375" stationName="SYSTEM IV - Moon 10 - Corporate Police Force Testing Facilities" transactionType="buy" transactionFor="corporation"/>
6
+ <row transactionDateTime="2008-08-03 09:21:00" transactionID="000000000" quantity="25000" typeName="Nitrogen Isotopes" typeID="17888" price="499.00" clientID="403173533" clientName="CHARACTER" characterID="000000000" characterName="SELLER" stationID="61000176" stationName="Hydrasphere" transactionType="buy" transactionFor="corporation"/>
7
+ <row transactionDateTime="2008-07-24 17:14:00" transactionID="698977440" quantity="2" typeName="Capacitor Power Relay II" typeID="1447" price="1039998.00" clientID="780902489" clientName="BUYER" characterID="789970839" characterName="SELLER" stationID="61000121" stationName="Sort Your Lives Out" transactionType="buy" transactionFor="corporation"/>
8
+ <row transactionDateTime="2008-07-17 19:53:00" transactionID="692346479" quantity="1" typeName="Bestower" typeID="1944" price="800000.00" clientID="1026681561" clientName="BUYER" characterID="789970839" characterName="SELLER" stationID="61000137" stationName="Cor Hydrae II" transactionType="buy" transactionFor="corporation"/>
9
+ </rowset>
10
+ </result>
11
+ <cachedUntil>2008-08-12 17:15:46</cachedUntil>
12
+ </eveapi>
@@ -0,0 +1,5 @@
1
+ <eveapi version="2">
2
+ <currentTime>2010-03-10 16:28:17</currentTime>
3
+ <error code="106">Must provide userID parameter for authentication.</error>
4
+ <cachedUntil>2010-03-10 16:33:17</cachedUntil>
5
+ </eveapi>
@@ -0,0 +1,5 @@
1
+ <eveapi version="2">
2
+ <currentTime>2010-03-11 15:22:35</currentTime>
3
+ <error code="516">Failed getting user information.</error>
4
+ <cachedUntil>2010-03-11 15:27:35</cachedUntil>
5
+ </eveapi>
@@ -0,0 +1,22 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="1">
3
+ <currentTime>2007-12-02 19:37:55</currentTime>
4
+ <result>
5
+ <rowset name="alliances" key="allianceID" columns="name,shortName,allianceID,executorCorpID,memberCount,startDate">
6
+ <row name="Starbase Anchoring Alliance" shortName="MATT" allianceID="150382481"
7
+ executorCorpID="150279367" memberCount="4" startDate="2007-09-18 11:04:00">
8
+ <rowset name="memberCorporations" key="corporationID" columns="corporationID,startDate">
9
+ <row corporationID="150279367" startDate="2007-09-18 11:04:00" />
10
+ <row corporationID="150333466" startDate="2007-09-19 11:04:00" />
11
+ </rowset>
12
+ </row>
13
+ <row name="The Dead Rabbits" shortName="TL.DR" allianceID="150430947"
14
+ executorCorpID="150212025" memberCount="3" startDate="2007-11-12 16:00:00">
15
+ <rowset name="memberCorporations" key="corporationID" columns="corporationID,startDate">
16
+ <row corporationID="150212025" startDate="2007-11-12 16:00:00" />
17
+ </rowset>
18
+ </row>
19
+ </rowset>
20
+ </result>
21
+ <cachedUntil>2007-12-02 20:37:55</cachedUntil>
22
+ </eveapi>
@@ -0,0 +1,49 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2008-11-13 20:21:45</currentTime>
4
+ <result>
5
+ <rowset name="categories" key="categoryID" columns="categoryID,categoryName">
6
+ <row categoryID="3" categoryName="Core">
7
+ <rowset name="classes" key="classID" columns="classID,className">
8
+ <row classID="2" className="Core Fitting">
9
+ <rowset name="certificates" key="certificateID" columns="certificateID,grade,corporationID,description">
10
+ <row certificateID="5" grade="1" corporationID="1000125" description="This certificate represents a basic level of competence in fitting ships. It certifies that the holder is able to use baseline modules which improve power and CPU capabilities such as Co-Processors, Power Diagnostic Systems and Reactor Control Units. This is the first step towards broadening your fitting options.">
11
+ <rowset name="requiredSkills" key="typeID" columns="typeID,skillLevel">
12
+ <row typeID="3413" level="3"/>
13
+ <row typeID="3424" level="2"/>
14
+ <row typeID="3426" level="3"/>
15
+ <row typeID="3432" level="1"/>
16
+ </rowset>
17
+ <rowset name="requiredCertificates" key="certificateID" columns="certificateID,grade"/>
18
+ </row>
19
+ <row certificateID="6" grade="2" corporationID="1000125" description="This certificate represents a standard level of competence in fitting ships. It certifies that the holder is able to use Micro Auxiliary Power Cores and many Tech 2 fitting modules. The holder knows that MAPCs are the best way to increase power output on Frigate-class ships. This provides you with a broad range of fitting options">
20
+ <rowset name="requiredSkills" key="typeID" columns="typeID,skillLevel">
21
+ <row typeID="3318" level="4"/>
22
+ <row typeID="3413" level="5"/>
23
+ <row typeID="3418" level="4"/>
24
+ <row typeID="3426" level="5"/>
25
+ <row typeID="3432" level="4"/>
26
+ </rowset>
27
+ <rowset name="requiredCertificates" key="certificateID" columns="certificateID,grade">
28
+ <row certificateID="5" grade="1"/>
29
+ </rowset>
30
+ </row>
31
+ <row certificateID="292" grade="5" corporationID="1000125" description="This certificate represents an elite level of competence in advanced trade skills. It certifies that the holder is able to work the market with minimal friction and massage the best deals out of any situation. With this level of skill you can run financial rings around smaller players without ever troubling your gargantuan bank balance.">
32
+ <rowset name="requiredSkills" key="typeID" columns="typeID,skillLevel">
33
+ <row typeID="18580" level="5"/>
34
+ <row typeID="16594" level="5"/>
35
+ <row typeID="16597" level="5"/>
36
+ <row typeID="16595" level="5"/>
37
+ </rowset>
38
+ <rowset name="requiredCertificates" key="certificateID" columns="certificateID,grade">
39
+ <row certificateID="291" grade="1"/>
40
+ </rowset>
41
+ </row>
42
+ </rowset>
43
+ </row>
44
+ </rowset>
45
+ </row>
46
+ </rowset>
47
+ </result>
48
+ <cachedUntil>2008-11-13 21:21:45</cachedUntil>
49
+ </eveapi>
@@ -0,0 +1,15 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2010-03-11 14:16:37</currentTime>
4
+ <result>
5
+ <rowset name="characters" key="characterID" columns="name,characterID">
6
+ <row name="Jolia Darkstrider" characterID="661196469" />
7
+ <row name="Murdock Jern" characterID="291344707" />
8
+ <row name="Frogs of Armageddon" characterID="1722047601" />
9
+ <row name="Gears of Progress" characterID="1196707484" />
10
+ <row name="Band of Brothers" characterID="394979878" />
11
+ <row name="The Dead Rabbits" characterID="1796285504" />
12
+ </rowset>
13
+ </result>
14
+ <cachedUntil>2010-04-11 14:16:37</cachedUntil>
15
+ </eveapi>
@@ -0,0 +1,24 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="1">
3
+ <currentTime>2007-12-02 19:55:38</currentTime>
4
+ <result>
5
+ <rowset name="outposts" key="stationID" columns="stationID,stationName,stationTypeID,solarSystemID,corporationID,corporationName">
6
+ <row stationID="60014862" stationName="0-G8NO VIII - Moon 1 - Manufacturing Outpost"
7
+ stationTypeID="12242" solarSystemID="30000480" corporationID="1000135"
8
+ corporationName="Serpentis Corporation" />
9
+ <row stationID="60014863" stationName="4-EFLU VII - Moon 3 - Manufacturing Outpost"
10
+ stationTypeID="12242" solarSystemID="30000576" corporationID="1000135"
11
+ corporationName="Serpentis Corporation" />
12
+ <row stationID="60014928" stationName="6T3I-L VII - Moon 5 - Cloning Outpost"
13
+ stationTypeID="12295" solarSystemID="30004908" corporationID="1000135"
14
+ corporationName="Serpentis Corporation" />
15
+ <row stationID="61000001" stationName="DB1R-4 II - duperTum Corp Minmatar Service Outpost"
16
+ stationTypeID="21646" solarSystemID="30004470" corporationID="150020944"
17
+ corporationName="duperTum Corp" />
18
+ <row stationID="61000002" stationName="ZS-2LT XI - duperTum Corp Minmatar Service Outpost"
19
+ stationTypeID="21646" solarSystemID="30004469" corporationID="150020944"
20
+ corporationName="duperTum Corp" />
21
+ </rowset>
22
+ </result>
23
+ <cachedUntil>2007-12-02 20:55:38</cachedUntil>
24
+ </eveapi>
@@ -0,0 +1,78 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2010-01-09 23:22:14</currentTime>
4
+ <result>
5
+ <rowset name="errors" key="errorCode" columns="errorCode,errorText">
6
+ <row errorCode="100" errorText="Expected before ref/trans ID = 0: wallet not previously loaded." />
7
+ <row errorCode="101" errorText="Wallet exhausted: retry after {0}." />
8
+ <row errorCode="102" errorText="Expected before ref/trans ID [{0}] but supplied [{1}]: wallet previously loaded." />
9
+ <row errorCode="103" errorText="Already returned one week of data: retry after {0}." />
10
+ <row errorCode="105" errorText="Invalid characterID." />
11
+ <row errorCode="106" errorText="Must provide userID parameter for authentication." />
12
+ <row errorCode="107" errorText="Invalid beforeRefID provided." />
13
+ <row errorCode="108" errorText="Invalid accountKey provided." />
14
+ <row errorCode="109" errorText="Invalid accountKey: must be in the range 1000 to 1006." />
15
+ <row errorCode="110" errorText="Invalid beforeTransID provided." />
16
+ <row errorCode="111" errorText="'{0}' is not a valid integer." />
17
+ <row errorCode="112" errorText="Version mismatch." />
18
+ <row errorCode="113" errorText="Version escalation is not allowed at this time." />
19
+ <row errorCode="114" errorText="Invalid itemID provided." />
20
+ <row errorCode="115" errorText="Assets already downloaded: retry after {0}." />
21
+ <row errorCode="116" errorText="Industry jobs already downloaded: retry after {0}." />
22
+ <row errorCode="117" errorText="Market orders already downloaded: retry after {0}." />
23
+ <row errorCode="118" errorText="Expected beforeKillID = 0: wallet not previously loaded." />
24
+ <row errorCode="119" errorText="Kills exhausted: retry after {0}." />
25
+ <row errorCode="120" errorText="Expected beforeKillID [{0}] but supplied [{1}]: kills previously loaded." />
26
+ <row errorCode="121" errorText="Invalid beforeKillID provided." />
27
+ <row errorCode="122" errorText="Invalid or missing list of names." />
28
+ <row errorCode="123" errorText="Invalid or missing list of IDs." />
29
+ <row errorCode="124" errorText="Character not enlisted in Factional Warfare." />
30
+ <row errorCode="125" errorText="Corporation not enlisted in Factional Warfare." />
31
+ <row errorCode="200" errorText="Current security level not high enough." />
32
+ <row errorCode="201" errorText="Character does not belong to account." />
33
+ <row errorCode="202" errorText="API key authentication failure." />
34
+ <row errorCode="203" errorText="Authentication failure." />
35
+ <row errorCode="204" errorText="Authentication failure." />
36
+ <row errorCode="205" errorText="Authentication failure (final pass)." />
37
+ <row errorCode="206" errorText="Character must have Accountant or Junior Accountant roles." />
38
+ <row errorCode="207" errorText="Not available for NPC corporations." />
39
+ <row errorCode="208" errorText="Character must have Accountant, Junior Accountant, or Trader roles." />
40
+ <row errorCode="209" errorText="Character must be a Director or CEO." />
41
+ <row errorCode="210" errorText="Authentication failure." />
42
+ <row errorCode="211" errorText="Login denied by account status." />
43
+ <row errorCode="212" errorText="Authentication failure (final pass)." />
44
+ <row errorCode="213" errorText="Character must have Factory Manager role." />
45
+ <row errorCode="214" errorText="Corporation is not part of alliance." />
46
+ <row errorCode="501" errorText="GetID({0}) is invalid or not loaded." />
47
+ <row errorCode="503" errorText="GetSkillpointsForLevel({0}, {1}): invalid input." />
48
+ <row errorCode="504" errorText="GetRace({0}): invalid race." />
49
+ <row errorCode="505" errorText="GetGender({0}): invalid gender." />
50
+ <row errorCode="506" errorText="GetBloodline({0}): invalid bloodline." />
51
+ <row errorCode="507" errorText="GetAttributeName({0}): invalid attribute." />
52
+ <row errorCode="508" errorText="GetRefType({0}): invalid reftype." />
53
+ <row errorCode="509" errorText="attributeID {0} has null data components." />
54
+ <row errorCode="510" errorText="Character does not appear to have a corporation. Not loaded?" />
55
+ <row errorCode="511" errorText="AccountCanQuery({0}): invalid accountKey." />
56
+ <row errorCode="512" errorText="Invalid charID passed to CharData.GetCharacter()." />
57
+ <row errorCode="513" errorText="Failed to get character roles in corporation." />
58
+ <row errorCode="514" errorText="Invalid corpID passed to CorpData.GetCorporation()." />
59
+ <row errorCode="516" errorText="Failed getting user information." />
60
+ <row errorCode="517" errorText="CSV header/row count mismatch." />
61
+ <row errorCode="518" errorText="Unable to get current TQ time." />
62
+ <row errorCode="519" errorText="Failed getting starbase detail information." />
63
+ <row errorCode="520" errorText="Unexpected failure accessing database." />
64
+ <row errorCode="521" errorText="Invalid username and/or password passed to UserData.LoginWebUser()." />
65
+ <row errorCode="522" errorText="Failed getting character information." />
66
+ <row errorCode="523" errorText="Failed getting corporation information." />
67
+ <row errorCode="524" errorText="Failed getting faction member information." />
68
+ <row errorCode="525" errorText="Failed getting medal information." />
69
+ <row errorCode="526" errorText="Notifications for this character is not yet accessible." />
70
+ <row errorCode="527" errorText="Mail for this character is not yet accessible." />
71
+ <row errorCode="901" errorText="Web site database temporarily disabled." />
72
+ <row errorCode="902" errorText="EVE backend database temporarily disabled." />
73
+ <row errorCode="903" errorText="Rate limited [{0}]: please obey all cachedUntil timers." />
74
+ <row errorCode="999" errorText="User forced test error condition." />
75
+ </rowset>
76
+ </result>
77
+ <cachedUntil>2010-01-10 00:22:14</cachedUntil>
78
+ </eveapi>
@@ -0,0 +1,31 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2009-10-25 12:37:01</currentTime>
4
+ <result>
5
+ <totals>
6
+ <killsYesterday>677</killsYesterday>
7
+ <killsLastWeek>3246</killsLastWeek>
8
+ <killsTotal>232772</killsTotal>
9
+ <victoryPointsYesterday>55087</victoryPointsYesterday>
10
+ <victoryPointsLastWeek>414049</victoryPointsLastWeek>
11
+ <victoryPointsTotal>44045189</victoryPointsTotal>
12
+ </totals>
13
+ <rowset name="factions" key="factionID" columns="factionID,factionName,pilots,systemsControlled,killsYesterday,killsLastWeek,killsTotal,victoryPointsYesterday,victoryPointsLastWeek,victoryPointsTotal">
14
+ <row factionID="500001" factionName="Caldari State" pilots="5324" systemsControlled="61" killsYesterday="115" killsLastWeek="627" killsTotal="59239" victoryPointsYesterday="9934" victoryPointsLastWeek="64548" victoryPointsTotal="4506493" />
15
+ <row factionID="500002" factionName="Minmatar Republic" pilots="4068" systemsControlled="0" killsYesterday="213" killsLastWeek="952" killsTotal="56736" victoryPointsYesterday="2925" victoryPointsLastWeek="51211" victoryPointsTotal="3627522" />
16
+ <row factionID="500003" factionName="Amarr Empire" pilots="3960" systemsControlled="11" killsYesterday="225" killsLastWeek="1000" killsTotal="55717" victoryPointsYesterday="3330" victoryPointsLastWeek="50518" victoryPointsTotal="3670190" />
17
+ <row factionID="500004" factionName="Gallente Federation" pilots="3663" systemsControlled="0" killsYesterday="124" killsLastWeek="667" killsTotal="61080" victoryPointsYesterday="10343" victoryPointsLastWeek="62118" victoryPointsTotal="4098366" />
18
+ </rowset>
19
+ <rowset name="factionWars" columns="factionID,factionName,againstID,againstName">
20
+ <row factionID="500001" factionName="Caldari State" againstID="500002" againstName="Minmatar Republic" />
21
+ <row factionID="500001" factionName="Caldari State" againstID="500004" againstName="Gallente Federation" />
22
+ <row factionID="500002" factionName="Minmatar Republic" againstID="500001" againstName="Caldari State" />
23
+ <row factionID="500002" factionName="Minmatar Republic" againstID="500003" againstName="Amarr Empire" />
24
+ <row factionID="500003" factionName="Amarr Empire" againstID="500002" againstName="Minmatar Republic" />
25
+ <row factionID="500003" factionName="Amarr Empire" againstID="500004" againstName="Gallente Federation" />
26
+ <row factionID="500004" factionName="Gallente Federation" againstID="500001" againstName="Caldari State" />
27
+ <row factionID="500004" factionName="Gallente Federation" againstID="500003" againstName="Amarr Empire" />
28
+ </rowset>
29
+ </result>
30
+ <cachedUntil>2009-10-25 13:37:03</cachedUntil>
31
+ </eveapi>
@@ -0,0 +1,238 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <eveapi version="2">
3
+ <currentTime>2010-03-11 13:47:30</currentTime>
4
+ <result>
5
+ <characters>
6
+ <rowset name="KillsYesterday" key="characterID" columns="characterID,characterName,kills">
7
+ <row characterID="1780475402" characterName="Loren Gallen" kills="15" />
8
+ <row characterID="903478014" characterName="Springhill" kills="8" />
9
+ <row characterID="1394672077" characterName="Adolf Ehrnrooth" kills="8" />
10
+ <row characterID="454040390" characterName="Blue Tudor" kills="8" />
11
+ <row characterID="429538068" characterName="BOCCO BREARLEY" kills="6" />
12
+ <row characterID="657963064" characterName="Cheiftan" kills="5" />
13
+ <row characterID="1554802621" characterName="Gin Doom" kills="5" />
14
+ <row characterID="139357228" characterName="Onin Ra" kills="5" />
15
+ <row characterID="867696408" characterName="Igo Heeled44" kills="5" />
16
+ <row characterID="1415477277" characterName="Voody Voodoo" kills="5" />
17
+ <row characterID="273960337" characterName="Jodo McFatty" kills="5" />
18
+ <row characterID="552211059" characterName="Too Ducky" kills="4" />
19
+ <row characterID="892887892" characterName="Markey" kills="4" />
20
+ </rowset>
21
+ <rowset name="KillsLastWeek" key="characterID" columns="characterID,characterName,kills">
22
+ <row characterID="1394672077" characterName="Adolf Ehrnrooth" kills="52" />
23
+ <row characterID="583637272" characterName="H5N1ONE" kills="38" />
24
+ <row characterID="1895234160" characterName="Daniqq" kills="33" />
25
+ <row characterID="506101850" characterName="Tobias Primus" kills="32" />
26
+ <row characterID="552211059" characterName="Too Ducky" kills="28" />
27
+ <row characterID="859158304" characterName="Snow Slug" kills="24" />
28
+ <row characterID="1984876673" characterName="tomtomtomtomtom" kills="23" />
29
+ <row characterID="1949415132" characterName="Joe Martin" kills="22" />
30
+ <row characterID="808406979" characterName="Hennya" kills="21" />
31
+ <row characterID="564745315" characterName="Scartacus" kills="21" />
32
+ <row characterID="854949459" characterName="Platekun" kills="20" />
33
+ <row characterID="1323136725" characterName="Fredricks Chow" kills="20" />
34
+ <row characterID="903478014" characterName="Springhill" kills="20" />
35
+ <row characterID="601444939" characterName="Kithaca" kills="19" />
36
+ <row characterID="279936473" characterName="Sinnek" kills="19" />
37
+ <row characterID="1415477277" characterName="Voody Voodoo" kills="18" />
38
+ <row characterID="454040390" characterName="Blue Tudor" kills="18" />
39
+ <row characterID="395923478" characterName="sasawong" kills="17" />
40
+ </rowset>
41
+ <rowset name="KillsTotal" key="characterID" columns="characterID,characterName,kills">
42
+ <row characterID="1780475402" characterName="Loren Gallen" kills="2400" />
43
+ <row characterID="673662188" characterName="Val Erian" kills="2012" />
44
+ <row characterID="960693087" characterName="Veshta Yoshida" kills="1138" />
45
+ <row characterID="1394672077" characterName="Adolf Ehrnrooth" kills="1031" />
46
+ <row characterID="184571914" characterName="Bad Messenger" kills="992" />
47
+ <row characterID="1294381007" characterName="vickers" kills="928" />
48
+ <row characterID="150785711" characterName="Nephilim Xeno" kills="884" />
49
+ <row characterID="395923478" characterName="sasawong" kills="810" />
50
+ <row characterID="710342864" characterName="Jodie Amille" kills="800" />
51
+ <row characterID="607884643" characterName="LuckyPunch" kills="750" />
52
+ <row characterID="1757467165" characterName="Popiejopie" kills="699" />
53
+ <row characterID="213080711" characterName="Dake Darkstalker" kills="694" />
54
+ <row characterID="1964888079" characterName="Galdornae" kills="635" />
55
+ <row characterID="1982802362" characterName="Jarowit" kills="634" />
56
+ <row characterID="1278563364" characterName="Khal Sebrar" kills="620" />
57
+ <row characterID="584474789" characterName="Bahamut420" kills="602" />
58
+ <row characterID="905511905" characterName="Talana Mershie" kills="579" />
59
+ <row characterID="1379947836" characterName="Reggie Kray" kills="539" />
60
+ </rowset>
61
+ <rowset name="VictoryPointsYesterday" key="characterID" columns="characterID,characterName,victoryPoints">
62
+ <row characterID="944011346" characterName="Carib Devist" victoryPoints="1535" />
63
+ <row characterID="791814182" characterName="Helotron" victoryPoints="1500" />
64
+ <row characterID="673662188" characterName="Val Erian" victoryPoints="1298" />
65
+ <row characterID="395923478" characterName="sasawong" victoryPoints="1190" />
66
+ <row characterID="1598857778" characterName="Lucius Vindictus" victoryPoints="1000" />
67
+ <row characterID="506101850" characterName="Tobias Primus" victoryPoints="926" />
68
+ <row characterID="396681379" characterName="Sinjin Mokk" victoryPoints="868" />
69
+ <row characterID="1352058648" characterName="Odelya d'Hanguest" victoryPoints="863" />
70
+ <row characterID="1641396368" characterName="Brocky McStocky" victoryPoints="857" />
71
+ <row characterID="2051766888" characterName="Lebaneur" victoryPoints="775" />
72
+ <row characterID="1393329761" characterName="xXxTisulixXx" victoryPoints="720" />
73
+ <row characterID="740739535" characterName="Master Consumer" victoryPoints="720" />
74
+ <row characterID="1928975361" characterName="Dreama U" victoryPoints="650" />
75
+ <row characterID="1641340073" characterName="accura define" victoryPoints="650" />
76
+ <row characterID="1408948861" characterName="Heimer Drago" victoryPoints="600" />
77
+ <row characterID="1931462605" characterName="Lola Solex" victoryPoints="588" />
78
+ <row characterID="1026766167" characterName="Wallinstar" victoryPoints="563" />
79
+ <row characterID="1169706390" characterName="Ramad Noinacor" victoryPoints="543" />
80
+ </rowset>
81
+ <rowset name="VictoryPointsLastWeek" key="characterID" columns="characterID,characterName,victoryPoints">
82
+ <row characterID="673662188" characterName="Val Erian" victoryPoints="8833" />
83
+ <row characterID="395923478" characterName="sasawong" victoryPoints="8471" />
84
+ <row characterID="1598857778" characterName="Lucius Vindictus" victoryPoints="6200" />
85
+ <row characterID="944011346" characterName="Carib Devist" victoryPoints="6195" />
86
+ <row characterID="1701088162" characterName="Carebear Huntress" victoryPoints="4716" />
87
+ <row characterID="1169706390" characterName="Ramad Noinacor" victoryPoints="4664" />
88
+ <row characterID="506101850" characterName="Tobias Primus" victoryPoints="4370" />
89
+ <row characterID="458489811" characterName="Koyo Zerin" victoryPoints="3537" />
90
+ <row characterID="611504620" characterName="Apophis Veldar" victoryPoints="3338" />
91
+ <row characterID="2078058901" characterName="Seriphyn Inhonores" victoryPoints="2985" />
92
+ <row characterID="595621391" characterName="Eran Mintor" victoryPoints="2968" />
93
+ <row characterID="222844749" characterName="Templar Dane" victoryPoints="2883" />
94
+ <row characterID="184571914" characterName="Bad Messenger" victoryPoints="2830" />
95
+ <row characterID="1275368746" characterName="S5family" victoryPoints="2613" />
96
+ <row characterID="791814182" characterName="Helotron" victoryPoints="2604" />
97
+ <row characterID="1384333221" characterName="Nauplius" victoryPoints="2351" />
98
+ <row characterID="1316429794" characterName="Billy Maze" victoryPoints="2330" />
99
+ <row characterID="1393329761" characterName="xXxTisulixXx" victoryPoints="2280" />
100
+ <row characterID="149185157" characterName="A'rdan Vulpayne" victoryPoints="2272" />
101
+ <row characterID="768752339" characterName="miloxus" victoryPoints="2271" />
102
+ </rowset>
103
+ <rowset name="VictoryPointsTotal" key="characterID" columns="characterID,characterName,victoryPoints">
104
+ <row characterID="395923478" characterName="sasawong" victoryPoints="663612" />
105
+ <row characterID="673662188" characterName="Val Erian" victoryPoints="401289" />
106
+ <row characterID="960693087" characterName="Veshta Yoshida" victoryPoints="345370" />
107
+ <row characterID="184571914" characterName="Bad Messenger" victoryPoints="290446" />
108
+ <row characterID="150785711" characterName="Nephilim Xeno" victoryPoints="184515" />
109
+ <row characterID="910567414" characterName="Lost InCogneto" victoryPoints="164321" />
110
+ <row characterID="690967141" characterName="Gangleri" victoryPoints="152537" />
111
+ <row characterID="454616611" characterName="Cosmic Raider" victoryPoints="148627" />
112
+ <row characterID="731952292" characterName="Mitara Newelle" victoryPoints="118028" />
113
+ <row characterID="148384619" characterName="Hussain" victoryPoints="105121" />
114
+ <row characterID="506101850" characterName="Tobias Primus" victoryPoints="104767" />
115
+ <row characterID="2051766888" characterName="Lebaneur" victoryPoints="102303" />
116
+ <row characterID="1026766167" characterName="Wallinstar" victoryPoints="98651" />
117
+ <row characterID="1621247441" characterName="Borakh Tieberius" victoryPoints="97226" />
118
+ <row characterID="117864186" characterName="Condor Amarr" victoryPoints="92759" />
119
+ <row characterID="1166662404" characterName="Seraphine Keratuus" victoryPoints="89388" />
120
+ <row characterID="1394672077" characterName="Adolf Ehrnrooth" victoryPoints="89086" />
121
+ <row characterID="1606416867" characterName="Nihil Magnus" victoryPoints="87322" />
122
+ </rowset>
123
+ </characters>
124
+ <corporations>
125
+ <rowset name="KillsYesterday" key="corporationID" columns="corporationID,corporationName,kills">
126
+ <row corporationID="207613888" corporationName="Space Perverts and Forum Warriors United" kills="23" />
127
+ <row corporationID="1000181" corporationName="Federal Defence Union" kills="16" />
128
+ <row corporationID="1677836928" corporationName="Royal Order of Security Specialists" kills="13" />
129
+ <row corporationID="1155731052" corporationName="The 8th Order" kills="12" />
130
+ <row corporationID="932398716" corporationName="Fraternitas Renatas" kills="11" />
131
+ <row corporationID="1006436612" corporationName="Epitome Militia" kills="9" />
132
+ <row corporationID="1000180" corporationName="State Protectorate" kills="8" />
133
+ <row corporationID="1000179" corporationName="24th Imperial Crusade" kills="8" />
134
+ <row corporationID="805828589" corporationName="Ice Fire Warriors" kills="8" />
135
+ <row corporationID="492990748" corporationName="Locus Industries" kills="7" />
136
+ </rowset>
137
+ <rowset name="KillsLastWeek" key="corporationID" columns="corporationID,corporationName,kills">
138
+ <row corporationID="207613888" corporationName="Space Perverts and Forum Warriors United" kills="144" />
139
+ <row corporationID="492990748" corporationName="Locus Industries" kills="135" />
140
+ <row corporationID="1000179" corporationName="24th Imperial Crusade" kills="101" />
141
+ <row corporationID="2080903038" corporationName="Shadows Of The Federation" kills="87" />
142
+ <row corporationID="2018817676" corporationName="Izanagi Orbital Fleet" kills="85" />
143
+ <row corporationID="805828589" corporationName="Ice Fire Warriors" kills="78" />
144
+ <row corporationID="1677836928" corporationName="Royal Order of Security Specialists" kills="77" />
145
+ <row corporationID="1000182" corporationName="Tribal Liberation Force" kills="64" />
146
+ <row corporationID="932398716" corporationName="Fraternitas Renatas" kills="60" />
147
+ <row corporationID="420259384" corporationName="CTRL-Q" kills="59" />
148
+ </rowset>
149
+ <rowset name="KillsTotal" key="corporationID" columns="corporationID,corporationName,kills">
150
+ <row corporationID="1000180" corporationName="State Protectorate" kills="13400" />
151
+ <row corporationID="1000182" corporationName="Tribal Liberation Force" kills="11289" />
152
+ <row corporationID="1000179" corporationName="24th Imperial Crusade" kills="8611" />
153
+ <row corporationID="207613888" corporationName="Space Perverts and Forum Warriors United" kills="8213" />
154
+ <row corporationID="1000181" corporationName="Federal Defence Union" kills="7989" />
155
+ <row corporationID="144544759" corporationName="PIE Inc." kills="5057" />
156
+ <row corporationID="329699206" corporationName="Mentally Unstable Enterprises" kills="5010" />
157
+ <row corporationID="1126669495" corporationName="Quantum Cats Syndicate" kills="3143" />
158
+ <row corporationID="805828589" corporationName="Ice Fire Warriors" kills="2839" />
159
+ <row corporationID="2080903038" corporationName="Shadows Of The Federation" kills="2816" />
160
+ </rowset>
161
+ <rowset name="VictoryPointsYesterday" key="corporationID" columns="corporationID,corporationName,victoryPoints">
162
+ <row corporationID="944307194" corporationName="1st Praetorian Guard" victoryPoints="2443" />
163
+ <row corporationID="642378365" corporationName="Azure Horizon Federate Militia" victoryPoints="1841" />
164
+ <row corporationID="1305983120" corporationName="Right to Rule" victoryPoints="1755" />
165
+ <row corporationID="1348357660" corporationName="Black Onyx Society" victoryPoints="1600" />
166
+ <row corporationID="687397724" corporationName="The Praxis Initiative" victoryPoints="1256" />
167
+ <row corporationID="637428501" corporationName="Independent Corp." victoryPoints="1190" />
168
+ <row corporationID="1148372015" corporationName="Knighthood of the Merciful Crown" victoryPoints="1000" />
169
+ <row corporationID="1000182" corporationName="Tribal Liberation Force" victoryPoints="994" />
170
+ <row corporationID="1000180" corporationName="State Protectorate" victoryPoints="901" />
171
+ <row corporationID="1788516673" corporationName="Tribal Core" victoryPoints="875" />
172
+ </rowset>
173
+ <rowset name="VictoryPointsLastWeek" key="corporationID" columns="corporationID,corporationName,victoryPoints">
174
+ <row corporationID="1000180" corporationName="State Protectorate" victoryPoints="13449" />
175
+ <row corporationID="642378365" corporationName="Azure Horizon Federate Militia" victoryPoints="13055" />
176
+ <row corporationID="944307194" corporationName="1st Praetorian Guard" victoryPoints="12450" />
177
+ <row corporationID="1148372015" corporationName="Knighthood of the Merciful Crown" victoryPoints="8792" />
178
+ <row corporationID="637428501" corporationName="Independent Corp." victoryPoints="8471" />
179
+ <row corporationID="1000182" corporationName="Tribal Liberation Force" victoryPoints="8278" />
180
+ <row corporationID="1000181" corporationName="Federal Defence Union" victoryPoints="8216" />
181
+ <row corporationID="1305983120" corporationName="Right to Rule" victoryPoints="7185" />
182
+ <row corporationID="1000179" corporationName="24th Imperial Crusade" victoryPoints="7034" />
183
+ <row corporationID="687397724" corporationName="The Praxis Initiative" victoryPoints="4791" />
184
+ </rowset>
185
+ <rowset name="VictoryPointsTotal" key="corporationID" columns="corporationID,corporationName,victoryPoints">
186
+ <row corporationID="1000180" corporationName="State Protectorate" victoryPoints="1634106" />
187
+ <row corporationID="1000181" corporationName="Federal Defence Union" victoryPoints="1452195" />
188
+ <row corporationID="1000182" corporationName="Tribal Liberation Force" victoryPoints="1403846" />
189
+ <row corporationID="144544759" corporationName="PIE Inc." victoryPoints="1301854" />
190
+ <row corporationID="1000179" corporationName="24th Imperial Crusade" victoryPoints="1026723" />
191
+ <row corporationID="1354346821" corporationName="Emperor Throne Guards" victoryPoints="778026" />
192
+ <row corporationID="1788516673" corporationName="Tribal Core" victoryPoints="683965" />
193
+ <row corporationID="637428501" corporationName="Independent Corp." victoryPoints="663612" />
194
+ <row corporationID="207613888" corporationName="Space Perverts and Forum Warriors United" victoryPoints="646389" />
195
+ <row corporationID="642378365" corporationName="Azure Horizon Federate Militia" victoryPoints="485596" />
196
+ </rowset>
197
+ </corporations>
198
+ <factions>
199
+ <rowset name="KillsYesterday" key="factionID" columns="factionID,factionName,kills">
200
+ <row factionID="500003" factionName="Amarr Empire" kills="91" />
201
+ <row factionID="500001" factionName="Caldari State" kills="76" />
202
+ <row factionID="500002" factionName="Minmatar Republic" kills="75" />
203
+ <row factionID="500004" factionName="Gallente Federation" kills="52" />
204
+ </rowset>
205
+ <rowset name="KillsLastWeek" key="factionID" columns="factionID,factionName,kills">
206
+ <row factionID="500003" factionName="Amarr Empire" kills="956" />
207
+ <row factionID="500002" factionName="Minmatar Republic" kills="763" />
208
+ <row factionID="500001" factionName="Caldari State" kills="551" />
209
+ <row factionID="500004" factionName="Gallente Federation" kills="524" />
210
+ </rowset>
211
+ <rowset name="KillsTotal" key="factionID" columns="factionID,factionName,kills">
212
+ <row factionID="500004" factionName="Gallente Federation" kills="76472" />
213
+ <row factionID="500002" factionName="Minmatar Republic" kills="73062" />
214
+ <row factionID="500001" factionName="Caldari State" kills="71939" />
215
+ <row factionID="500003" factionName="Amarr Empire" kills="70963" />
216
+ </rowset>
217
+ <rowset name="VictoryPointsYesterday" key="factionID" columns="factionID,factionName,victoryPoints">
218
+ <row factionID="500002" factionName="Minmatar Republic" victoryPoints="6659" />
219
+ <row factionID="500003" factionName="Amarr Empire" victoryPoints="5383" />
220
+ <row factionID="500001" factionName="Caldari State" victoryPoints="4867" />
221
+ <row factionID="500004" factionName="Gallente Federation" victoryPoints="4709" />
222
+ </rowset>
223
+ <rowset name="VictoryPointsLastWeek" key="factionID" columns="factionID,factionName,victoryPoints">
224
+ <row factionID="500002" factionName="Minmatar Republic" victoryPoints="46412" />
225
+ <row factionID="500003" factionName="Amarr Empire" victoryPoints="43685" />
226
+ <row factionID="500004" factionName="Gallente Federation" victoryPoints="37654" />
227
+ <row factionID="500001" factionName="Caldari State" victoryPoints="33652" />
228
+ </rowset>
229
+ <rowset name="VictoryPointsTotal" key="factionID" columns="factionID,factionName,victoryPoints">
230
+ <row factionID="500001" factionName="Caldari State" victoryPoints="5598080" />
231
+ <row factionID="500004" factionName="Gallente Federation" victoryPoints="5159973" />
232
+ <row factionID="500002" factionName="Minmatar Republic" victoryPoints="4657609" />
233
+ <row factionID="500003" factionName="Amarr Empire" victoryPoints="4596076" />
234
+ </rowset>
235
+ </factions>
236
+ </result>
237
+ <cachedUntil>2010-03-11 14:47:30</cachedUntil>
238
+ </eveapi>