osbc 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (310) hide show
  1. checksums.yaml +7 -0
  2. data/.env +5 -0
  3. data/.rspec +1 -0
  4. data/.rubocop.yml +273 -0
  5. data/.ruby-version +1 -0
  6. data/CHANGELOG.md +5 -0
  7. data/CODE_OF_CONDUCT.md +84 -0
  8. data/Dockerfile +17 -0
  9. data/Gemfile +109 -0
  10. data/Gemfile.lock +343 -0
  11. data/LICENSE.md +21 -0
  12. data/LICENSE.txt +21 -0
  13. data/Procfile +3 -0
  14. data/Procfile.dev +2 -0
  15. data/README.md +185 -0
  16. data/Rakefile +6 -0
  17. data/app/assets/builds/.keep +0 -0
  18. data/app/assets/config/manifest.js +5 -0
  19. data/app/assets/images/.keep +0 -0
  20. data/app/assets/images/bg.png +0 -0
  21. data/app/assets/images/gimage.png +0 -0
  22. data/app/assets/images/image.png +0 -0
  23. data/app/assets/images/logo.png +0 -0
  24. data/app/assets/images/outerspc.jpg +0 -0
  25. data/app/assets/images/proxy.jpg +0 -0
  26. data/app/assets/images/space.jpg +0 -0
  27. data/app/assets/images/space_four.jpg +0 -0
  28. data/app/assets/images/space_t.jpg +0 -0
  29. data/app/assets/images/space_th.jpg +0 -0
  30. data/app/assets/images/space_two.jpg +0 -0
  31. data/app/assets/images/th.jpg +0 -0
  32. data/app/assets/stylesheets/application.css +344 -0
  33. data/app/assets/stylesheets/application.tailwind.css +13 -0
  34. data/app/assets/stylesheets/home.css +0 -0
  35. data/app/channels/application_cable/channel.rb +6 -0
  36. data/app/channels/application_cable/connection.rb +6 -0
  37. data/app/controllers/api/v1/block_confirmations_controller.rb +65 -0
  38. data/app/controllers/application_controller.rb +72 -0
  39. data/app/controllers/blocks_controller.rb +20 -0
  40. data/app/controllers/chains_controller.rb +72 -0
  41. data/app/controllers/concerns/.keep +0 -0
  42. data/app/controllers/contracts_controller.rb +25 -0
  43. data/app/controllers/pools_controller.rb +73 -0
  44. data/app/controllers/signatures_controller.rb +25 -0
  45. data/app/controllers/tickets_controller.rb +76 -0
  46. data/app/controllers/transactions_controller.rb +48 -0
  47. data/app/controllers/users/confirmations_controller.rb +30 -0
  48. data/app/controllers/users/omniauth_callbacks_controller.rb +30 -0
  49. data/app/controllers/users/passwords_controller.rb +34 -0
  50. data/app/controllers/users/registrations_controller.rb +61 -0
  51. data/app/controllers/users/sessions_controller.rb +27 -0
  52. data/app/controllers/users/unlocks_controller.rb +30 -0
  53. data/app/controllers/wallets_controller.rb +18 -0
  54. data/app/helpers/application_helper.rb +4 -0
  55. data/app/helpers/blocks_helper.rb +4 -0
  56. data/app/helpers/chains_helper.rb +4 -0
  57. data/app/helpers/contracts_helper.rb +4 -0
  58. data/app/helpers/pools_helper.rb +4 -0
  59. data/app/helpers/signatures_helper.rb +4 -0
  60. data/app/helpers/tickets_helper.rb +4 -0
  61. data/app/helpers/transactions_helper.rb +4 -0
  62. data/app/helpers/wallets_helper.rb +4 -0
  63. data/app/javascript/application.js +3 -0
  64. data/app/javascript/controllers/application.js +9 -0
  65. data/app/javascript/controllers/hello_controller.js +7 -0
  66. data/app/javascript/controllers/index.js +11 -0
  67. data/app/jobs/application_job.rb +9 -0
  68. data/app/mailers/application_mailer.rb +6 -0
  69. data/app/models/acceptable_number_sequence.rb +4 -0
  70. data/app/models/acceptable_symbol_sequence.rb +4 -0
  71. data/app/models/acceptable_word.rb +4 -0
  72. data/app/models/application_record.rb +5 -0
  73. data/app/models/block.rb +17 -0
  74. data/app/models/chain.rb +10 -0
  75. data/app/models/concerns/.keep +0 -0
  76. data/app/models/concerns/sequences_validator.rb +30 -0
  77. data/app/models/concerns/wallet_exists_validator.rb +13 -0
  78. data/app/models/contract.rb +7 -0
  79. data/app/models/pool.rb +5 -0
  80. data/app/models/signature.rb +12 -0
  81. data/app/models/ticket.rb +11 -0
  82. data/app/models/transaction.rb +25 -0
  83. data/app/models/user.rb +44 -0
  84. data/app/models/wallet.rb +33 -0
  85. data/app/services/application_service.rb +23 -0
  86. data/app/services/assign_contracts_service.rb +162 -0
  87. data/app/services/create_ticket_service.rb +87 -0
  88. data/app/services/create_wallet_service.rb +20 -0
  89. data/app/services/transaction_to_block_service.rb +62 -0
  90. data/app/views/application/_featured_board.html.erb +77 -0
  91. data/app/views/application/home.html.slim +1 -0
  92. data/app/views/application/mining_profile.html.slim +59 -0
  93. data/app/views/application/privacy_policy.html.erb +0 -0
  94. data/app/views/application/terms.html.erb +0 -0
  95. data/app/views/blocks/_block.html.slim +13 -0
  96. data/app/views/blocks/_block.json.jbuilder +4 -0
  97. data/app/views/blocks/_form.html.slim +26 -0
  98. data/app/views/blocks/edit.html.slim +10 -0
  99. data/app/views/blocks/index.html.slim +12 -0
  100. data/app/views/blocks/index.json.jbuilder +3 -0
  101. data/app/views/blocks/new.html.slim +8 -0
  102. data/app/views/blocks/show.html.slim +8 -0
  103. data/app/views/blocks/show.json.jbuilder +3 -0
  104. data/app/views/chains/_chain.html.slim +16 -0
  105. data/app/views/chains/_chain.json.jbuilder +4 -0
  106. data/app/views/chains/_form.html.slim +30 -0
  107. data/app/views/chains/edit.html.slim +10 -0
  108. data/app/views/chains/index.html.slim +11 -0
  109. data/app/views/chains/index.json.jbuilder +3 -0
  110. data/app/views/chains/new.html.slim +8 -0
  111. data/app/views/chains/show.html.slim +10 -0
  112. data/app/views/chains/show.json.jbuilder +3 -0
  113. data/app/views/contracts/_contract.html.slim +8 -0
  114. data/app/views/contracts/_contract.json.jbuilder +4 -0
  115. data/app/views/contracts/_form.html.slim +34 -0
  116. data/app/views/contracts/edit.html.slim +10 -0
  117. data/app/views/contracts/index.html.slim +12 -0
  118. data/app/views/contracts/index.json.jbuilder +3 -0
  119. data/app/views/contracts/new.html.slim +8 -0
  120. data/app/views/contracts/show.html.slim +8 -0
  121. data/app/views/contracts/show.json.jbuilder +3 -0
  122. data/app/views/layouts/_alert.html.slim +6 -0
  123. data/app/views/layouts/_navbar.html.slim +27 -0
  124. data/app/views/layouts/_notice.html.slim +6 -0
  125. data/app/views/layouts/application.html.erb +32 -0
  126. data/app/views/layouts/mailer.html.erb +13 -0
  127. data/app/views/layouts/mailer.text.erb +1 -0
  128. data/app/views/pools/_form.html.slim +30 -0
  129. data/app/views/pools/_pool.html.slim +16 -0
  130. data/app/views/pools/_pool.json.jbuilder +4 -0
  131. data/app/views/pools/edit.html.slim +10 -0
  132. data/app/views/pools/index.html.slim +12 -0
  133. data/app/views/pools/index.json.jbuilder +3 -0
  134. data/app/views/pools/new.html.slim +8 -0
  135. data/app/views/pools/show.html.slim +8 -0
  136. data/app/views/pools/show.json.jbuilder +3 -0
  137. data/app/views/signatures/_form.html.slim +46 -0
  138. data/app/views/signatures/_signature.html.slim +28 -0
  139. data/app/views/signatures/_signature.json.jbuilder +4 -0
  140. data/app/views/signatures/edit.html.slim +10 -0
  141. data/app/views/signatures/index.html.slim +10 -0
  142. data/app/views/signatures/index.json.jbuilder +3 -0
  143. data/app/views/signatures/new.html.slim +8 -0
  144. data/app/views/signatures/show.html.slim +10 -0
  145. data/app/views/signatures/show.json.jbuilder +3 -0
  146. data/app/views/tickets/_form.html.slim +26 -0
  147. data/app/views/tickets/_ticket.html.slim +10 -0
  148. data/app/views/tickets/_ticket.json.jbuilder +4 -0
  149. data/app/views/tickets/edit.html.slim +10 -0
  150. data/app/views/tickets/index.html.slim +16 -0
  151. data/app/views/tickets/index.json.jbuilder +3 -0
  152. data/app/views/tickets/new.html.slim +10 -0
  153. data/app/views/tickets/show.html.slim +8 -0
  154. data/app/views/tickets/show.json.jbuilder +3 -0
  155. data/app/views/transactions/_form.html.slim +16 -0
  156. data/app/views/transactions/_transaction.html.slim +24 -0
  157. data/app/views/transactions/_transaction.json.jbuilder +4 -0
  158. data/app/views/transactions/edit.html.slim +10 -0
  159. data/app/views/transactions/index.html.slim +19 -0
  160. data/app/views/transactions/index.json.jbuilder +3 -0
  161. data/app/views/transactions/new.html.slim +9 -0
  162. data/app/views/transactions/show.html.slim +8 -0
  163. data/app/views/transactions/show.json.jbuilder +3 -0
  164. data/app/views/users/confirmations/new.html.erb +16 -0
  165. data/app/views/users/mailer/confirmation_instructions.html.erb +5 -0
  166. data/app/views/users/mailer/email_changed.html.erb +7 -0
  167. data/app/views/users/mailer/password_change.html.erb +3 -0
  168. data/app/views/users/mailer/reset_password_instructions.html.erb +8 -0
  169. data/app/views/users/mailer/unlock_instructions.html.erb +7 -0
  170. data/app/views/users/passwords/edit.html.erb +25 -0
  171. data/app/views/users/passwords/new.html.erb +16 -0
  172. data/app/views/users/registrations/edit.html.erb +43 -0
  173. data/app/views/users/registrations/new.html.erb +37 -0
  174. data/app/views/users/sessions/new.html.erb +30 -0
  175. data/app/views/users/shared/_error_messages.html.erb +15 -0
  176. data/app/views/users/shared/_links.html.erb +25 -0
  177. data/app/views/users/unlocks/new.html.erb +16 -0
  178. data/app/views/wallets/_form.html.slim +30 -0
  179. data/app/views/wallets/_wallet.html.slim +13 -0
  180. data/app/views/wallets/_wallet.json.jbuilder +4 -0
  181. data/app/views/wallets/edit.html.slim +10 -0
  182. data/app/views/wallets/index.html.slim +18 -0
  183. data/app/views/wallets/index.json.jbuilder +3 -0
  184. data/app/views/wallets/new.html.slim +8 -0
  185. data/app/views/wallets/show.html.slim +11 -0
  186. data/app/views/wallets/show.json.jbuilder +3 -0
  187. data/app/workers/application_worker.rb +82 -0
  188. data/app/workers/assign_contract_worker.rb +27 -0
  189. data/app/workers/create_ticket_worker.rb +23 -0
  190. data/app/workers/create_wallet_worker.rb +21 -0
  191. data/app/workers/transaction_to_block_worker.rb +48 -0
  192. data/bin/bundle +114 -0
  193. data/bin/console +15 -0
  194. data/bin/dev +9 -0
  195. data/bin/importmap +5 -0
  196. data/bin/osbc +77 -0
  197. data/bin/rails +6 -0
  198. data/bin/rake +6 -0
  199. data/bin/setup +35 -0
  200. data/config/application.rb +25 -0
  201. data/config/boot.rb +6 -0
  202. data/config/cable.yml +10 -0
  203. data/config/credentials.yml.enc +1 -0
  204. data/config/database.yml +21 -0
  205. data/config/environment.rb +7 -0
  206. data/config/environments/development.rb +73 -0
  207. data/config/environments/production.rb +95 -0
  208. data/config/environments/test.rb +62 -0
  209. data/config/importmap.rb +9 -0
  210. data/config/initializers/assets.rb +14 -0
  211. data/config/initializers/content_security_policy.rb +26 -0
  212. data/config/initializers/devise.rb +311 -0
  213. data/config/initializers/filter_parameter_logging.rb +10 -0
  214. data/config/initializers/inflections.rb +17 -0
  215. data/config/initializers/permissions_policy.rb +12 -0
  216. data/config/locales/devise.en.yml +65 -0
  217. data/config/locales/en.yml +33 -0
  218. data/config/puma.rb +45 -0
  219. data/config/routes/api.rb +9 -0
  220. data/config/routes.rb +30 -0
  221. data/config/sidekiq.yml +10 -0
  222. data/config/storage.yml +34 -0
  223. data/config/tailwind.config.js +23 -0
  224. data/config.ru +8 -0
  225. data/coverage/.last_run.json +5 -0
  226. data/coverage/.resultset.json +1853 -0
  227. data/coverage/.resultset.json.lock +0 -0
  228. data/coverage/assets/0.12.3/DataTables-1.10.20/images/sort_asc.png +0 -0
  229. data/coverage/assets/0.12.3/DataTables-1.10.20/images/sort_asc_disabled.png +0 -0
  230. data/coverage/assets/0.12.3/DataTables-1.10.20/images/sort_both.png +0 -0
  231. data/coverage/assets/0.12.3/DataTables-1.10.20/images/sort_desc.png +0 -0
  232. data/coverage/assets/0.12.3/DataTables-1.10.20/images/sort_desc_disabled.png +0 -0
  233. data/coverage/assets/0.12.3/application.css +1 -0
  234. data/coverage/assets/0.12.3/application.js +7 -0
  235. data/coverage/assets/0.12.3/colorbox/border.png +0 -0
  236. data/coverage/assets/0.12.3/colorbox/controls.png +0 -0
  237. data/coverage/assets/0.12.3/colorbox/loading.gif +0 -0
  238. data/coverage/assets/0.12.3/colorbox/loading_background.png +0 -0
  239. data/coverage/assets/0.12.3/favicon_green.png +0 -0
  240. data/coverage/assets/0.12.3/favicon_red.png +0 -0
  241. data/coverage/assets/0.12.3/favicon_yellow.png +0 -0
  242. data/coverage/assets/0.12.3/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  243. data/coverage/assets/0.12.3/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  244. data/coverage/assets/0.12.3/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  245. data/coverage/assets/0.12.3/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  246. data/coverage/assets/0.12.3/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  247. data/coverage/assets/0.12.3/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  248. data/coverage/assets/0.12.3/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  249. data/coverage/assets/0.12.3/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  250. data/coverage/assets/0.12.3/images/ui-icons_222222_256x240.png +0 -0
  251. data/coverage/assets/0.12.3/images/ui-icons_2e83ff_256x240.png +0 -0
  252. data/coverage/assets/0.12.3/images/ui-icons_454545_256x240.png +0 -0
  253. data/coverage/assets/0.12.3/images/ui-icons_888888_256x240.png +0 -0
  254. data/coverage/assets/0.12.3/images/ui-icons_cd0a0a_256x240.png +0 -0
  255. data/coverage/assets/0.12.3/loading.gif +0 -0
  256. data/coverage/assets/0.12.3/magnify.png +0 -0
  257. data/coverage/index.html +20731 -0
  258. data/db/migrate/20221018053949_devise_create_users.rb +45 -0
  259. data/db/migrate/20221019002956_create_chains.rb +13 -0
  260. data/db/migrate/20221020112137_create_blocks.rb +12 -0
  261. data/db/migrate/20221020123102_add_chain_to_blocks.rb +5 -0
  262. data/db/migrate/20221020150504_create_wallets.rb +13 -0
  263. data/db/migrate/20221022221059_create_transactions.rb +20 -0
  264. data/db/migrate/20221023011005_add_block_to_transactions.rb +5 -0
  265. data/db/migrate/20221023014707_create_contracts.rb +11 -0
  266. data/db/migrate/20221023040749_create_pools.rb +13 -0
  267. data/db/migrate/20221023041015_create_tickets.rb +11 -0
  268. data/db/migrate/20221023103509_add_contracts_count_to_block.rb +6 -0
  269. data/db/migrate/20221023110613_add_acceptable_word_list_to_users.rb +7 -0
  270. data/db/migrate/20221023113539_create_signatures.rb +19 -0
  271. data/db/migrate/20221023113750_create_acceptable_words.rb +9 -0
  272. data/db/migrate/20221023114152_create_acceptable_number_sequences.rb +9 -0
  273. data/db/migrate/20221023114203_create_acceptable_symbol_sequences.rb +9 -0
  274. data/db/migrate/20221023114324_add_user_acceptable_hash_to_tickets.rb +7 -0
  275. data/db/migrate/20221023114408_add_time_ref_to_tickets.rb +5 -0
  276. data/db/migrate/20221024125047_add_master_hash_to_blocks.rb +5 -0
  277. data/db/migrate/20221109161845_add_transactions_count_to_blocks.rb +5 -0
  278. data/db/migrate/20221117135003_add_balance_to_chains.rb +5 -0
  279. data/db/migrate/20221117203417_add_transaction_id_list_to_tickets.rb +5 -0
  280. data/db/migrate/20221118080357_add_api_keys_to_users.rb +6 -0
  281. data/db/schema.rb +179 -0
  282. data/db/seeds.rb +134 -0
  283. data/docker-compose.yml +53 -0
  284. data/entrypoint.sh +8 -0
  285. data/lib/assets/.keep +0 -0
  286. data/lib/osbc/osbc.rb +9 -0
  287. data/lib/outerspace/blockchain/version.rb +7 -0
  288. data/lib/outerspace/blockchain.rb +10 -0
  289. data/lib/tasks/.keep +0 -0
  290. data/lib/tasks/compose.rake +92 -0
  291. data/lib/tasks/compose_db.rake +71 -0
  292. data/lib/tasks/compose_logs.rake +95 -0
  293. data/lib/tasks/compose_test.rake +62 -0
  294. data/log/.keep +0 -0
  295. data/mining_concept.ipynb +284 -0
  296. data/outerspace-blockchain.gemspec +50 -0
  297. data/public/404.html +67 -0
  298. data/public/422.html +67 -0
  299. data/public/500.html +66 -0
  300. data/public/apple-touch-icon-precomposed.png +0 -0
  301. data/public/apple-touch-icon.png +0 -0
  302. data/public/favicon.ico +0 -0
  303. data/public/robots.txt +1 -0
  304. data/storage/.keep +0 -0
  305. data/tmp/.keep +0 -0
  306. data/tmp/pids/.keep +0 -0
  307. data/tmp/storage/.keep +0 -0
  308. data/vendor/.keep +0 -0
  309. data/vendor/javascript/.keep +0 -0
  310. metadata +643 -0
@@ -0,0 +1,1853 @@
1
+ {
2
+ "RSpec": {
3
+ "coverage": {
4
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/models/user.rb": {
5
+ "lines": [
6
+ null,
7
+ null,
8
+ 1,
9
+ null,
10
+ null,
11
+ 1,
12
+ 1,
13
+ null,
14
+ null,
15
+ 1,
16
+ 1,
17
+ 1,
18
+ 1,
19
+ 1,
20
+ 1,
21
+ 1,
22
+ 1,
23
+ null,
24
+ 1,
25
+ 1,
26
+ 0,
27
+ null,
28
+ null,
29
+ 1,
30
+ 0,
31
+ 0,
32
+ 0,
33
+ null,
34
+ 0,
35
+ null,
36
+ 0,
37
+ null,
38
+ 0,
39
+ null,
40
+ 0,
41
+ 0,
42
+ 0,
43
+ null,
44
+ null,
45
+ 1,
46
+ 0,
47
+ 0,
48
+ null,
49
+ null
50
+ ]
51
+ },
52
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/models/application_record.rb": {
53
+ "lines": [
54
+ null,
55
+ null,
56
+ 1,
57
+ 1,
58
+ null
59
+ ]
60
+ },
61
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/helpers/application_helper.rb": {
62
+ "lines": [
63
+ null,
64
+ null,
65
+ 1,
66
+ null
67
+ ]
68
+ },
69
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/helpers/blocks_helper.rb": {
70
+ "lines": [
71
+ null,
72
+ null,
73
+ 1,
74
+ null
75
+ ]
76
+ },
77
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/helpers/chains_helper.rb": {
78
+ "lines": [
79
+ null,
80
+ null,
81
+ 1,
82
+ null
83
+ ]
84
+ },
85
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/helpers/contracts_helper.rb": {
86
+ "lines": [
87
+ null,
88
+ null,
89
+ 1,
90
+ null
91
+ ]
92
+ },
93
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/helpers/pools_helper.rb": {
94
+ "lines": [
95
+ null,
96
+ null,
97
+ 1,
98
+ null
99
+ ]
100
+ },
101
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/helpers/signatures_helper.rb": {
102
+ "lines": [
103
+ null,
104
+ null,
105
+ 1,
106
+ null
107
+ ]
108
+ },
109
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/helpers/tickets_helper.rb": {
110
+ "lines": [
111
+ null,
112
+ null,
113
+ 1,
114
+ null
115
+ ]
116
+ },
117
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/helpers/transactions_helper.rb": {
118
+ "lines": [
119
+ null,
120
+ null,
121
+ 1,
122
+ null
123
+ ]
124
+ },
125
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/helpers/wallets_helper.rb": {
126
+ "lines": [
127
+ null,
128
+ null,
129
+ 1,
130
+ null
131
+ ]
132
+ },
133
+ "/home/jesusgautamah/Projects/outerspace-blockchain/lib/osbc/osbc.rb": {
134
+ "lines": [
135
+ null,
136
+ null,
137
+ 1,
138
+ 1,
139
+ 1,
140
+ null,
141
+ null,
142
+ 1,
143
+ null
144
+ ]
145
+ },
146
+ "/home/jesusgautamah/Projects/outerspace-blockchain/lib/outerspace/blockchain.rb": {
147
+ "lines": [
148
+ null,
149
+ null,
150
+ 1,
151
+ null,
152
+ 1,
153
+ 1,
154
+ 1,
155
+ null,
156
+ null,
157
+ null
158
+ ]
159
+ },
160
+ "/home/jesusgautamah/Projects/outerspace-blockchain/lib/outerspace/blockchain/version.rb": {
161
+ "lines": [
162
+ null,
163
+ null,
164
+ 1,
165
+ 1,
166
+ 1,
167
+ null,
168
+ null
169
+ ]
170
+ },
171
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/controllers/api/v1/block_confirmations_controller.rb": {
172
+ "lines": [
173
+ null,
174
+ null,
175
+ 0,
176
+ 0,
177
+ 0,
178
+ 0,
179
+ 0,
180
+ 0,
181
+ 0,
182
+ 0,
183
+ 0,
184
+ 0,
185
+ null,
186
+ 0,
187
+ 0,
188
+ 0,
189
+ 0,
190
+ 0,
191
+ 0,
192
+ 0,
193
+ 0,
194
+ 0,
195
+ null,
196
+ 0,
197
+ 0,
198
+ 0,
199
+ 0,
200
+ 0,
201
+ 0,
202
+ 0,
203
+ null,
204
+ 0,
205
+ 0,
206
+ 0,
207
+ 0,
208
+ 0,
209
+ 0,
210
+ 0,
211
+ 0,
212
+ null,
213
+ 0,
214
+ 0,
215
+ 0,
216
+ null,
217
+ 0,
218
+ 0,
219
+ 0,
220
+ null,
221
+ 0,
222
+ 0,
223
+ 0,
224
+ null,
225
+ 0,
226
+ 0,
227
+ 0,
228
+ 0,
229
+ null,
230
+ 0,
231
+ 0,
232
+ 0,
233
+ null,
234
+ 0,
235
+ 0,
236
+ 0,
237
+ 0
238
+ ],
239
+ "branches": {
240
+ }
241
+ },
242
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/controllers/application_controller.rb": {
243
+ "lines": [
244
+ null,
245
+ null,
246
+ null,
247
+ 0,
248
+ 0,
249
+ 0,
250
+ 0,
251
+ 0,
252
+ null,
253
+ null,
254
+ 0,
255
+ 0,
256
+ 0,
257
+ null,
258
+ 0,
259
+ 0,
260
+ 0,
261
+ 0,
262
+ 0,
263
+ 0,
264
+ null,
265
+ 0,
266
+ null,
267
+ null,
268
+ 0,
269
+ null,
270
+ 0,
271
+ 0,
272
+ 0,
273
+ 0,
274
+ null,
275
+ 0,
276
+ 0,
277
+ 0,
278
+ null,
279
+ 0,
280
+ 0,
281
+ 0,
282
+ null,
283
+ 0,
284
+ 0,
285
+ 0,
286
+ null,
287
+ 0,
288
+ 0,
289
+ 0,
290
+ null,
291
+ 0,
292
+ 0,
293
+ 0,
294
+ null,
295
+ 0,
296
+ 0,
297
+ 0,
298
+ null,
299
+ 0,
300
+ 0,
301
+ 0,
302
+ null,
303
+ 0,
304
+ 0,
305
+ 0,
306
+ null,
307
+ 0,
308
+ 0,
309
+ 0,
310
+ null,
311
+ 0,
312
+ 0,
313
+ 0,
314
+ 0,
315
+ 0
316
+ ],
317
+ "branches": {
318
+ }
319
+ },
320
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/controllers/blocks_controller.rb": {
321
+ "lines": [
322
+ null,
323
+ null,
324
+ 0,
325
+ 0,
326
+ null,
327
+ null,
328
+ 0,
329
+ 0,
330
+ 0,
331
+ null,
332
+ null,
333
+ 0,
334
+ 0,
335
+ null,
336
+ 0,
337
+ null,
338
+ 0,
339
+ 0,
340
+ 0,
341
+ 0
342
+ ],
343
+ "branches": {
344
+ }
345
+ },
346
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/controllers/chains_controller.rb": {
347
+ "lines": [
348
+ null,
349
+ null,
350
+ 0,
351
+ 0,
352
+ null,
353
+ null,
354
+ 0,
355
+ 0,
356
+ 0,
357
+ null,
358
+ null,
359
+ 0,
360
+ 0,
361
+ null,
362
+ null,
363
+ 0,
364
+ 0,
365
+ 0,
366
+ null,
367
+ null,
368
+ 0,
369
+ 0,
370
+ null,
371
+ null,
372
+ 0,
373
+ 0,
374
+ null,
375
+ 0,
376
+ 0,
377
+ 0,
378
+ 0,
379
+ 0,
380
+ 0,
381
+ 0,
382
+ 0,
383
+ 0,
384
+ 0,
385
+ null,
386
+ null,
387
+ 0,
388
+ 0,
389
+ 0,
390
+ 0,
391
+ 0,
392
+ 0,
393
+ 0,
394
+ 0,
395
+ 0,
396
+ 0,
397
+ 0,
398
+ null,
399
+ null,
400
+ 0,
401
+ 0,
402
+ null,
403
+ 0,
404
+ 0,
405
+ 0,
406
+ 0,
407
+ 0,
408
+ null,
409
+ 0,
410
+ null,
411
+ 0,
412
+ 0,
413
+ 0,
414
+ null,
415
+ null,
416
+ 0,
417
+ 0,
418
+ 0,
419
+ 0
420
+ ],
421
+ "branches": {
422
+ }
423
+ },
424
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/controllers/contracts_controller.rb": {
425
+ "lines": [
426
+ null,
427
+ null,
428
+ 0,
429
+ 0,
430
+ null,
431
+ null,
432
+ 0,
433
+ 0,
434
+ 0,
435
+ null,
436
+ null,
437
+ 0,
438
+ 0,
439
+ null,
440
+ 0,
441
+ null,
442
+ 0,
443
+ 0,
444
+ 0,
445
+ null,
446
+ null,
447
+ 0,
448
+ 0,
449
+ 0,
450
+ 0
451
+ ],
452
+ "branches": {
453
+ }
454
+ },
455
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/controllers/pools_controller.rb": {
456
+ "lines": [
457
+ null,
458
+ null,
459
+ 0,
460
+ 0,
461
+ 0,
462
+ null,
463
+ null,
464
+ 0,
465
+ 0,
466
+ 0,
467
+ null,
468
+ null,
469
+ 0,
470
+ 0,
471
+ null,
472
+ null,
473
+ 0,
474
+ 0,
475
+ 0,
476
+ null,
477
+ null,
478
+ 0,
479
+ 0,
480
+ null,
481
+ null,
482
+ 0,
483
+ 0,
484
+ null,
485
+ 0,
486
+ 0,
487
+ 0,
488
+ 0,
489
+ 0,
490
+ 0,
491
+ 0,
492
+ 0,
493
+ 0,
494
+ 0,
495
+ null,
496
+ null,
497
+ 0,
498
+ 0,
499
+ 0,
500
+ 0,
501
+ 0,
502
+ 0,
503
+ 0,
504
+ 0,
505
+ 0,
506
+ 0,
507
+ 0,
508
+ null,
509
+ null,
510
+ 0,
511
+ 0,
512
+ null,
513
+ 0,
514
+ 0,
515
+ 0,
516
+ 0,
517
+ 0,
518
+ null,
519
+ 0,
520
+ null,
521
+ 0,
522
+ 0,
523
+ 0,
524
+ null,
525
+ null,
526
+ 0,
527
+ 0,
528
+ 0,
529
+ 0
530
+ ],
531
+ "branches": {
532
+ }
533
+ },
534
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/controllers/signatures_controller.rb": {
535
+ "lines": [
536
+ null,
537
+ null,
538
+ 0,
539
+ 0,
540
+ null,
541
+ null,
542
+ 0,
543
+ 0,
544
+ 0,
545
+ null,
546
+ null,
547
+ 0,
548
+ 0,
549
+ null,
550
+ 0,
551
+ null,
552
+ 0,
553
+ 0,
554
+ 0,
555
+ null,
556
+ null,
557
+ 0,
558
+ 0,
559
+ 0,
560
+ 0
561
+ ],
562
+ "branches": {
563
+ }
564
+ },
565
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/controllers/tickets_controller.rb": {
566
+ "lines": [
567
+ null,
568
+ null,
569
+ 0,
570
+ 0,
571
+ 0,
572
+ null,
573
+ null,
574
+ 0,
575
+ 0,
576
+ 0,
577
+ null,
578
+ null,
579
+ 0,
580
+ 0,
581
+ null,
582
+ null,
583
+ 0,
584
+ 0,
585
+ 0,
586
+ null,
587
+ null,
588
+ 0,
589
+ 0,
590
+ null,
591
+ null,
592
+ 0,
593
+ 0,
594
+ 0,
595
+ 0,
596
+ 0,
597
+ null,
598
+ null,
599
+ 0,
600
+ 0,
601
+ 0,
602
+ 0,
603
+ 0,
604
+ 0,
605
+ 0,
606
+ 0,
607
+ 0,
608
+ 0,
609
+ 0,
610
+ null,
611
+ null,
612
+ 0,
613
+ 0,
614
+ null,
615
+ 0,
616
+ 0,
617
+ 0,
618
+ 0,
619
+ 0,
620
+ null,
621
+ 0,
622
+ 0,
623
+ 0,
624
+ 0,
625
+ null,
626
+ 0,
627
+ 0,
628
+ 0,
629
+ null,
630
+ 0,
631
+ 0,
632
+ 0,
633
+ null,
634
+ 0,
635
+ 0,
636
+ 0,
637
+ null,
638
+ null,
639
+ 0,
640
+ 0,
641
+ 0,
642
+ 0
643
+ ],
644
+ "branches": {
645
+ }
646
+ },
647
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/controllers/transactions_controller.rb": {
648
+ "lines": [
649
+ null,
650
+ null,
651
+ 0,
652
+ 0,
653
+ 0,
654
+ null,
655
+ null,
656
+ 0,
657
+ 0,
658
+ 0,
659
+ null,
660
+ null,
661
+ 0,
662
+ 0,
663
+ null,
664
+ null,
665
+ 0,
666
+ 0,
667
+ 0,
668
+ null,
669
+ null,
670
+ 0,
671
+ 0,
672
+ 0,
673
+ 0,
674
+ 0,
675
+ 0,
676
+ 0,
677
+ null,
678
+ 0,
679
+ 0,
680
+ 0,
681
+ 0,
682
+ 0,
683
+ null,
684
+ 0,
685
+ 0,
686
+ 0,
687
+ null,
688
+ 0,
689
+ 0,
690
+ 0,
691
+ null,
692
+ null,
693
+ 0,
694
+ 0,
695
+ 0,
696
+ 0
697
+ ],
698
+ "branches": {
699
+ }
700
+ },
701
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/controllers/users/confirmations_controller.rb": {
702
+ "lines": [
703
+ null,
704
+ null,
705
+ 0,
706
+ null,
707
+ null,
708
+ null,
709
+ null,
710
+ null,
711
+ null,
712
+ null,
713
+ null,
714
+ null,
715
+ null,
716
+ null,
717
+ null,
718
+ null,
719
+ null,
720
+ null,
721
+ null,
722
+ null,
723
+ null,
724
+ null,
725
+ null,
726
+ null,
727
+ null,
728
+ null,
729
+ null,
730
+ null,
731
+ null,
732
+ 0
733
+ ],
734
+ "branches": {
735
+ }
736
+ },
737
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/controllers/users/omniauth_callbacks_controller.rb": {
738
+ "lines": [
739
+ null,
740
+ null,
741
+ 0,
742
+ null,
743
+ null,
744
+ null,
745
+ null,
746
+ null,
747
+ null,
748
+ null,
749
+ null,
750
+ null,
751
+ null,
752
+ null,
753
+ null,
754
+ null,
755
+ null,
756
+ null,
757
+ null,
758
+ null,
759
+ null,
760
+ null,
761
+ null,
762
+ null,
763
+ null,
764
+ null,
765
+ null,
766
+ null,
767
+ null,
768
+ 0
769
+ ],
770
+ "branches": {
771
+ }
772
+ },
773
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/controllers/users/passwords_controller.rb": {
774
+ "lines": [
775
+ null,
776
+ null,
777
+ 0,
778
+ null,
779
+ null,
780
+ null,
781
+ null,
782
+ null,
783
+ null,
784
+ null,
785
+ null,
786
+ null,
787
+ null,
788
+ null,
789
+ null,
790
+ null,
791
+ null,
792
+ null,
793
+ null,
794
+ null,
795
+ null,
796
+ null,
797
+ null,
798
+ null,
799
+ null,
800
+ null,
801
+ null,
802
+ null,
803
+ null,
804
+ null,
805
+ null,
806
+ null,
807
+ null,
808
+ 0
809
+ ],
810
+ "branches": {
811
+ }
812
+ },
813
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/controllers/users/registrations_controller.rb": {
814
+ "lines": [
815
+ null,
816
+ null,
817
+ 0,
818
+ 0,
819
+ null,
820
+ null,
821
+ null,
822
+ null,
823
+ null,
824
+ null,
825
+ null,
826
+ null,
827
+ 0,
828
+ 0,
829
+ 0,
830
+ null,
831
+ null,
832
+ null,
833
+ null,
834
+ null,
835
+ null,
836
+ null,
837
+ null,
838
+ null,
839
+ null,
840
+ null,
841
+ null,
842
+ null,
843
+ null,
844
+ null,
845
+ null,
846
+ null,
847
+ null,
848
+ null,
849
+ null,
850
+ null,
851
+ null,
852
+ null,
853
+ null,
854
+ null,
855
+ 0,
856
+ null,
857
+ 0,
858
+ 0,
859
+ 0,
860
+ null,
861
+ null,
862
+ null,
863
+ null,
864
+ null,
865
+ null,
866
+ null,
867
+ 0,
868
+ 0,
869
+ 0,
870
+ null,
871
+ null,
872
+ null,
873
+ null,
874
+ null,
875
+ 0
876
+ ],
877
+ "branches": {
878
+ }
879
+ },
880
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/controllers/users/sessions_controller.rb": {
881
+ "lines": [
882
+ null,
883
+ null,
884
+ 0,
885
+ null,
886
+ null,
887
+ null,
888
+ null,
889
+ null,
890
+ null,
891
+ null,
892
+ null,
893
+ null,
894
+ null,
895
+ null,
896
+ null,
897
+ null,
898
+ null,
899
+ null,
900
+ null,
901
+ null,
902
+ null,
903
+ null,
904
+ null,
905
+ null,
906
+ null,
907
+ null,
908
+ 0
909
+ ],
910
+ "branches": {
911
+ }
912
+ },
913
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/controllers/users/unlocks_controller.rb": {
914
+ "lines": [
915
+ null,
916
+ null,
917
+ 0,
918
+ null,
919
+ null,
920
+ null,
921
+ null,
922
+ null,
923
+ null,
924
+ null,
925
+ null,
926
+ null,
927
+ null,
928
+ null,
929
+ null,
930
+ null,
931
+ null,
932
+ null,
933
+ null,
934
+ null,
935
+ null,
936
+ null,
937
+ null,
938
+ null,
939
+ null,
940
+ null,
941
+ null,
942
+ null,
943
+ null,
944
+ 0
945
+ ],
946
+ "branches": {
947
+ }
948
+ },
949
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/controllers/wallets_controller.rb": {
950
+ "lines": [
951
+ null,
952
+ null,
953
+ 0,
954
+ 0,
955
+ 0,
956
+ null,
957
+ 0,
958
+ 0,
959
+ 0,
960
+ null,
961
+ 0,
962
+ 0,
963
+ null,
964
+ 0,
965
+ 0,
966
+ 0,
967
+ 0,
968
+ 0
969
+ ],
970
+ "branches": {
971
+ }
972
+ },
973
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/mailers/application_mailer.rb": {
974
+ "lines": [
975
+ null,
976
+ null,
977
+ 0,
978
+ 0,
979
+ 0,
980
+ 0
981
+ ],
982
+ "branches": {
983
+ }
984
+ },
985
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/models/acceptable_number_sequence.rb": {
986
+ "lines": [
987
+ null,
988
+ null,
989
+ 0,
990
+ 0
991
+ ],
992
+ "branches": {
993
+ }
994
+ },
995
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/models/acceptable_symbol_sequence.rb": {
996
+ "lines": [
997
+ null,
998
+ null,
999
+ 0,
1000
+ 0
1001
+ ],
1002
+ "branches": {
1003
+ }
1004
+ },
1005
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/models/acceptable_word.rb": {
1006
+ "lines": [
1007
+ null,
1008
+ null,
1009
+ 0,
1010
+ 0
1011
+ ],
1012
+ "branches": {
1013
+ }
1014
+ },
1015
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/models/block.rb": {
1016
+ "lines": [
1017
+ null,
1018
+ null,
1019
+ 0,
1020
+ 0,
1021
+ 0,
1022
+ 0,
1023
+ 0,
1024
+ 0,
1025
+ 0,
1026
+ 0,
1027
+ 0,
1028
+ null,
1029
+ 0,
1030
+ 0,
1031
+ 0,
1032
+ 0,
1033
+ 0
1034
+ ],
1035
+ "branches": {
1036
+ }
1037
+ },
1038
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/models/chain.rb": {
1039
+ "lines": [
1040
+ null,
1041
+ null,
1042
+ 0,
1043
+ 0,
1044
+ 0,
1045
+ 0,
1046
+ 0,
1047
+ null,
1048
+ 0,
1049
+ 0
1050
+ ],
1051
+ "branches": {
1052
+ }
1053
+ },
1054
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/models/concerns/sequences_validator.rb": {
1055
+ "lines": [
1056
+ null,
1057
+ null,
1058
+ 0,
1059
+ 0,
1060
+ 0,
1061
+ 0,
1062
+ 0,
1063
+ 0,
1064
+ 0,
1065
+ 0,
1066
+ null,
1067
+ 0,
1068
+ 0,
1069
+ null,
1070
+ 0,
1071
+ 0,
1072
+ 0,
1073
+ null,
1074
+ 0,
1075
+ 0,
1076
+ 0,
1077
+ null,
1078
+ 0,
1079
+ 0,
1080
+ 0,
1081
+ null,
1082
+ 0,
1083
+ 0,
1084
+ 0,
1085
+ 0
1086
+ ],
1087
+ "branches": {
1088
+ }
1089
+ },
1090
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/models/concerns/wallet_exists_validator.rb": {
1091
+ "lines": [
1092
+ null,
1093
+ null,
1094
+ 0,
1095
+ 0,
1096
+ 0,
1097
+ 0,
1098
+ 0,
1099
+ null,
1100
+ 0,
1101
+ 0,
1102
+ 0,
1103
+ 0,
1104
+ 0
1105
+ ],
1106
+ "branches": {
1107
+ }
1108
+ },
1109
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/models/contract.rb": {
1110
+ "lines": [
1111
+ null,
1112
+ null,
1113
+ 0,
1114
+ 0,
1115
+ 0,
1116
+ 0,
1117
+ 0
1118
+ ],
1119
+ "branches": {
1120
+ }
1121
+ },
1122
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/models/pool.rb": {
1123
+ "lines": [
1124
+ null,
1125
+ null,
1126
+ 0,
1127
+ 0,
1128
+ 0
1129
+ ],
1130
+ "branches": {
1131
+ }
1132
+ },
1133
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/models/signature.rb": {
1134
+ "lines": [
1135
+ null,
1136
+ null,
1137
+ 0,
1138
+ 0,
1139
+ 0,
1140
+ 0,
1141
+ 0,
1142
+ null,
1143
+ null,
1144
+ null,
1145
+ null,
1146
+ 0
1147
+ ],
1148
+ "branches": {
1149
+ }
1150
+ },
1151
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/models/ticket.rb": {
1152
+ "lines": [
1153
+ null,
1154
+ null,
1155
+ 0,
1156
+ 0,
1157
+ 0,
1158
+ 0,
1159
+ 0,
1160
+ 0,
1161
+ null,
1162
+ 0,
1163
+ 0
1164
+ ],
1165
+ "branches": {
1166
+ }
1167
+ },
1168
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/models/transaction.rb": {
1169
+ "lines": [
1170
+ null,
1171
+ null,
1172
+ 0,
1173
+ 0,
1174
+ 0,
1175
+ 0,
1176
+ 0,
1177
+ 0,
1178
+ 0,
1179
+ 0,
1180
+ 0,
1181
+ 0,
1182
+ null,
1183
+ 0,
1184
+ 0,
1185
+ 0,
1186
+ null,
1187
+ 0,
1188
+ 0,
1189
+ 0,
1190
+ null,
1191
+ 0,
1192
+ 0,
1193
+ 0,
1194
+ 0
1195
+ ],
1196
+ "branches": {
1197
+ }
1198
+ },
1199
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/models/wallet.rb": {
1200
+ "lines": [
1201
+ null,
1202
+ null,
1203
+ 0,
1204
+ 0,
1205
+ null,
1206
+ 0,
1207
+ 0,
1208
+ 0,
1209
+ null,
1210
+ 0,
1211
+ null,
1212
+ 0,
1213
+ null,
1214
+ null,
1215
+ 0,
1216
+ null,
1217
+ 0,
1218
+ 0,
1219
+ 0,
1220
+ 0,
1221
+ 0,
1222
+ null,
1223
+ 0,
1224
+ 0,
1225
+ null,
1226
+ 0,
1227
+ 0,
1228
+ 0,
1229
+ 0,
1230
+ 0,
1231
+ 0,
1232
+ 0,
1233
+ 0
1234
+ ],
1235
+ "branches": {
1236
+ }
1237
+ },
1238
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/services/application_service.rb": {
1239
+ "lines": [
1240
+ null,
1241
+ null,
1242
+ 0,
1243
+ 0,
1244
+ 0,
1245
+ 0,
1246
+ 0,
1247
+ 0,
1248
+ 0,
1249
+ 0,
1250
+ null,
1251
+ 0,
1252
+ 0,
1253
+ 0,
1254
+ null,
1255
+ 0,
1256
+ 0,
1257
+ 0,
1258
+ null,
1259
+ 0,
1260
+ 0,
1261
+ 0,
1262
+ 0
1263
+ ],
1264
+ "branches": {
1265
+ }
1266
+ },
1267
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/services/assign_contracts_service.rb": {
1268
+ "lines": [
1269
+ null,
1270
+ null,
1271
+ 0,
1272
+ 0,
1273
+ 0,
1274
+ 0,
1275
+ 0,
1276
+ null,
1277
+ 0,
1278
+ 0,
1279
+ 0,
1280
+ null,
1281
+ 0,
1282
+ 0,
1283
+ null,
1284
+ 0,
1285
+ 0,
1286
+ 0,
1287
+ null,
1288
+ 0,
1289
+ 0,
1290
+ 0,
1291
+ null,
1292
+ 0,
1293
+ 0,
1294
+ 0,
1295
+ null,
1296
+ 0,
1297
+ 0,
1298
+ 0,
1299
+ null,
1300
+ 0,
1301
+ 0,
1302
+ 0,
1303
+ null,
1304
+ 0,
1305
+ 0,
1306
+ 0,
1307
+ null,
1308
+ 0,
1309
+ 0,
1310
+ 0,
1311
+ 0,
1312
+ 0,
1313
+ null,
1314
+ 0,
1315
+ 0,
1316
+ 0,
1317
+ 0,
1318
+ 0,
1319
+ 0,
1320
+ 0,
1321
+ 0,
1322
+ 0,
1323
+ null,
1324
+ 0,
1325
+ 0,
1326
+ 0,
1327
+ null,
1328
+ 0,
1329
+ 0,
1330
+ 0,
1331
+ null,
1332
+ 0,
1333
+ 0,
1334
+ 0,
1335
+ null,
1336
+ null,
1337
+ 0,
1338
+ 0,
1339
+ 0,
1340
+ null,
1341
+ 0,
1342
+ 0,
1343
+ 0,
1344
+ null,
1345
+ 0,
1346
+ 0,
1347
+ 0,
1348
+ null,
1349
+ 0,
1350
+ 0,
1351
+ 0,
1352
+ 0,
1353
+ 0,
1354
+ 0,
1355
+ 0,
1356
+ 0,
1357
+ 0,
1358
+ 0,
1359
+ 0,
1360
+ 0,
1361
+ 0,
1362
+ 0,
1363
+ 0,
1364
+ null,
1365
+ 0,
1366
+ 0,
1367
+ null,
1368
+ 0,
1369
+ 0,
1370
+ 0,
1371
+ null,
1372
+ 0,
1373
+ 0,
1374
+ 0,
1375
+ 0,
1376
+ 0,
1377
+ 0,
1378
+ 0,
1379
+ 0,
1380
+ 0,
1381
+ 0,
1382
+ 0,
1383
+ 0,
1384
+ 0,
1385
+ 0,
1386
+ 0,
1387
+ 0,
1388
+ 0,
1389
+ 0,
1390
+ 0,
1391
+ 0,
1392
+ 0,
1393
+ 0,
1394
+ null,
1395
+ 0,
1396
+ 0,
1397
+ 0,
1398
+ 0,
1399
+ null,
1400
+ 0,
1401
+ 0,
1402
+ 0,
1403
+ 0,
1404
+ null,
1405
+ 0,
1406
+ 0,
1407
+ 0,
1408
+ 0,
1409
+ 0,
1410
+ null,
1411
+ 0,
1412
+ 0,
1413
+ 0,
1414
+ 0,
1415
+ null,
1416
+ 0,
1417
+ 0,
1418
+ 0,
1419
+ 0,
1420
+ null,
1421
+ 0,
1422
+ 0,
1423
+ 0,
1424
+ 0,
1425
+ 0,
1426
+ 0,
1427
+ 0,
1428
+ 0,
1429
+ 0,
1430
+ 0,
1431
+ 0
1432
+ ],
1433
+ "branches": {
1434
+ }
1435
+ },
1436
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/services/create_ticket_service.rb": {
1437
+ "lines": [
1438
+ null,
1439
+ null,
1440
+ 0,
1441
+ 0,
1442
+ 0,
1443
+ 0,
1444
+ 0,
1445
+ 0,
1446
+ null,
1447
+ 0,
1448
+ 0,
1449
+ 0,
1450
+ 0,
1451
+ 0,
1452
+ 0,
1453
+ 0,
1454
+ 0,
1455
+ 0,
1456
+ 0,
1457
+ null,
1458
+ 0,
1459
+ 0,
1460
+ null,
1461
+ 0,
1462
+ 0,
1463
+ 0,
1464
+ null,
1465
+ 0,
1466
+ 0,
1467
+ 0,
1468
+ null,
1469
+ 0,
1470
+ 0,
1471
+ 0,
1472
+ null,
1473
+ 0,
1474
+ 0,
1475
+ 0,
1476
+ null,
1477
+ 0,
1478
+ 0,
1479
+ 0,
1480
+ null,
1481
+ 0,
1482
+ 0,
1483
+ 0,
1484
+ null,
1485
+ 0,
1486
+ 0,
1487
+ 0,
1488
+ null,
1489
+ 0,
1490
+ 0,
1491
+ 0,
1492
+ 0,
1493
+ 0,
1494
+ 0,
1495
+ null,
1496
+ 0,
1497
+ 0,
1498
+ 0,
1499
+ 0,
1500
+ 0,
1501
+ 0,
1502
+ 0,
1503
+ null,
1504
+ 0,
1505
+ 0,
1506
+ 0,
1507
+ null,
1508
+ 0,
1509
+ 0,
1510
+ 0,
1511
+ 0,
1512
+ 0,
1513
+ 0,
1514
+ 0,
1515
+ 0,
1516
+ null,
1517
+ 0,
1518
+ 0,
1519
+ 0,
1520
+ 0
1521
+ ],
1522
+ "branches": {
1523
+ }
1524
+ },
1525
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/services/create_wallet_service.rb": {
1526
+ "lines": [
1527
+ null,
1528
+ null,
1529
+ 0,
1530
+ 0,
1531
+ 0,
1532
+ 0,
1533
+ null,
1534
+ null,
1535
+ 0,
1536
+ 0,
1537
+ 0,
1538
+ 0,
1539
+ null,
1540
+ 0,
1541
+ 0,
1542
+ null,
1543
+ 0,
1544
+ 0,
1545
+ 0,
1546
+ 0
1547
+ ],
1548
+ "branches": {
1549
+ }
1550
+ },
1551
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/services/transaction_to_block_service.rb": {
1552
+ "lines": [
1553
+ null,
1554
+ null,
1555
+ 0,
1556
+ 0,
1557
+ 0,
1558
+ 0,
1559
+ 0,
1560
+ 0,
1561
+ 0,
1562
+ null,
1563
+ 0,
1564
+ 0,
1565
+ 0,
1566
+ null,
1567
+ 0,
1568
+ 0,
1569
+ null,
1570
+ 0,
1571
+ 0,
1572
+ 0,
1573
+ 0,
1574
+ 0,
1575
+ 0,
1576
+ 0,
1577
+ 0,
1578
+ 0,
1579
+ 0,
1580
+ 0,
1581
+ 0,
1582
+ null,
1583
+ 0,
1584
+ 0,
1585
+ 0,
1586
+ null,
1587
+ 0,
1588
+ 0,
1589
+ 0,
1590
+ null,
1591
+ 0,
1592
+ 0,
1593
+ 0,
1594
+ null,
1595
+ 0,
1596
+ 0,
1597
+ 0,
1598
+ null,
1599
+ 0,
1600
+ 0,
1601
+ 0,
1602
+ null,
1603
+ 0,
1604
+ 0,
1605
+ 0,
1606
+ null,
1607
+ 0,
1608
+ 0,
1609
+ 0,
1610
+ null,
1611
+ 0,
1612
+ 0,
1613
+ 0,
1614
+ 0
1615
+ ],
1616
+ "branches": {
1617
+ }
1618
+ },
1619
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/workers/application_worker.rb": {
1620
+ "lines": [
1621
+ null,
1622
+ null,
1623
+ 0,
1624
+ 0,
1625
+ 0,
1626
+ null,
1627
+ 0,
1628
+ 0,
1629
+ 0,
1630
+ 0,
1631
+ 0,
1632
+ null,
1633
+ 0,
1634
+ 0,
1635
+ 0,
1636
+ 0,
1637
+ 0,
1638
+ null,
1639
+ 0,
1640
+ 0,
1641
+ 0,
1642
+ 0,
1643
+ 0,
1644
+ null,
1645
+ 0,
1646
+ 0,
1647
+ 0,
1648
+ 0,
1649
+ 0,
1650
+ null,
1651
+ 0,
1652
+ 0,
1653
+ 0,
1654
+ 0,
1655
+ 0,
1656
+ null,
1657
+ 0,
1658
+ null,
1659
+ 0,
1660
+ 0,
1661
+ 0,
1662
+ 0,
1663
+ 0,
1664
+ null,
1665
+ 0,
1666
+ 0,
1667
+ 0,
1668
+ null,
1669
+ 0,
1670
+ 0,
1671
+ 0,
1672
+ null,
1673
+ 0,
1674
+ 0,
1675
+ 0,
1676
+ 0,
1677
+ 0,
1678
+ 0,
1679
+ 0,
1680
+ null,
1681
+ 0,
1682
+ 0,
1683
+ 0,
1684
+ null,
1685
+ 0,
1686
+ 0,
1687
+ 0,
1688
+ null,
1689
+ 0,
1690
+ 0,
1691
+ 0,
1692
+ 0,
1693
+ 0,
1694
+ null,
1695
+ 0,
1696
+ 0,
1697
+ 0,
1698
+ null,
1699
+ 0,
1700
+ 0,
1701
+ 0,
1702
+ 0
1703
+ ],
1704
+ "branches": {
1705
+ }
1706
+ },
1707
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/workers/assign_contract_worker.rb": {
1708
+ "lines": [
1709
+ null,
1710
+ null,
1711
+ 0,
1712
+ 0,
1713
+ 0,
1714
+ 0,
1715
+ 0,
1716
+ null,
1717
+ 0,
1718
+ 0,
1719
+ null,
1720
+ 0,
1721
+ 0,
1722
+ 0,
1723
+ null,
1724
+ 0,
1725
+ 0,
1726
+ 0,
1727
+ null,
1728
+ 0,
1729
+ 0,
1730
+ 0,
1731
+ null,
1732
+ 0,
1733
+ 0,
1734
+ 0,
1735
+ 0
1736
+ ],
1737
+ "branches": {
1738
+ }
1739
+ },
1740
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/workers/create_ticket_worker.rb": {
1741
+ "lines": [
1742
+ null,
1743
+ null,
1744
+ 0,
1745
+ 0,
1746
+ null,
1747
+ 0,
1748
+ 0,
1749
+ 0,
1750
+ 0,
1751
+ 0,
1752
+ 0,
1753
+ 0,
1754
+ 0,
1755
+ 0,
1756
+ 0,
1757
+ null,
1758
+ 0,
1759
+ 0,
1760
+ null,
1761
+ 0,
1762
+ 0,
1763
+ 0,
1764
+ 0
1765
+ ],
1766
+ "branches": {
1767
+ }
1768
+ },
1769
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/workers/create_wallet_worker.rb": {
1770
+ "lines": [
1771
+ null,
1772
+ null,
1773
+ null,
1774
+ 0,
1775
+ 0,
1776
+ null,
1777
+ 0,
1778
+ 0,
1779
+ 0,
1780
+ 0,
1781
+ 0,
1782
+ 0,
1783
+ 0,
1784
+ null,
1785
+ 0,
1786
+ 0,
1787
+ null,
1788
+ 0,
1789
+ 0,
1790
+ 0,
1791
+ 0
1792
+ ],
1793
+ "branches": {
1794
+ }
1795
+ },
1796
+ "/home/jesusgautamah/Projects/outerspace-blockchain/app/workers/transaction_to_block_worker.rb": {
1797
+ "lines": [
1798
+ null,
1799
+ null,
1800
+ 0,
1801
+ 0,
1802
+ null,
1803
+ 0,
1804
+ 0,
1805
+ 0,
1806
+ 0,
1807
+ 0,
1808
+ 0,
1809
+ 0,
1810
+ null,
1811
+ 0,
1812
+ 0,
1813
+ null,
1814
+ 0,
1815
+ 0,
1816
+ 0,
1817
+ 0,
1818
+ 0,
1819
+ 0,
1820
+ 0,
1821
+ 0,
1822
+ 0,
1823
+ null,
1824
+ 0,
1825
+ 0,
1826
+ 0,
1827
+ null,
1828
+ 0,
1829
+ 0,
1830
+ 0,
1831
+ 0,
1832
+ null,
1833
+ 0,
1834
+ 0,
1835
+ 0,
1836
+ null,
1837
+ 0,
1838
+ 0,
1839
+ 0,
1840
+ 0,
1841
+ null,
1842
+ 0,
1843
+ 0,
1844
+ 0,
1845
+ 0
1846
+ ],
1847
+ "branches": {
1848
+ }
1849
+ }
1850
+ },
1851
+ "timestamp": 1668993590
1852
+ }
1853
+ }