├── core0
└── us
│ ├── BUILD.bazel
│ ├── api
│ ├── data
│ │ ├── gov
│ │ │ ├── auth
│ │ │ ├── peer
│ │ │ ├── sys
│ │ │ ├── relay
│ │ │ ├── dfs
│ │ │ ├── engine_auth
│ │ │ ├── socket
│ │ │ ├── traders
│ │ │ ├── id
│ │ │ ├── cash
│ │ │ └── engine
│ │ ├── device
│ │ └── wallet
│ │ │ ├── r2r
│ │ │ └── pairing
│ └── BUILD.bazel
│ ├── COPYING
│ ├── gui
│ ├── .watchmanconfig
│ ├── .ruby-version
│ ├── app.json
│ ├── .bundle
│ │ └── config
│ ├── 2025sdk9.0.jar
│ ├── .eslintrc.js
│ ├── babel.config.js
│ ├── android
│ │ ├── app
│ │ │ ├── debug.keystore
│ │ │ ├── src
│ │ │ │ ├── main
│ │ │ │ │ └── res
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ ├── strings.xml
│ │ │ │ │ │ └── styles.xml
│ │ │ │ │ │ ├── mipmap-hdpi
│ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ └── ic_launcher_round.png
│ │ │ │ │ │ ├── mipmap-mdpi
│ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ └── ic_launcher_round.png
│ │ │ │ │ │ ├── mipmap-xhdpi
│ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ └── ic_launcher_round.png
│ │ │ │ │ │ ├── mipmap-xxhdpi
│ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ └── ic_launcher_round.png
│ │ │ │ │ │ └── mipmap-xxxhdpi
│ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ └── ic_launcher_round.png
│ │ │ │ └── debug
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ ├── proguard-rules.pro
│ │ │ └── build_defs.bzl
│ │ └── gradle
│ │ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ ├── ios
│ │ ├── gui
│ │ │ ├── Images.xcassets
│ │ │ │ └── Contents.json
│ │ │ └── main.m
│ │ └── guiTests
│ │ │ └── Info.plist
│ ├── .buckconfig
│ ├── doc
│ │ └── deps
│ │ │ └── README.txt
│ ├── .prettierrc.js
│ ├── Gemfile
│ ├── index.js
│ ├── App.js
│ ├── __tests__
│ │ └── App-test.js
│ ├── metro.config.js
│ └── package.json
│ ├── bin
│ ├── srctool
│ └── node_sys
│ │ └── perf
│ ├── doc
│ ├── us
│ │ ├── index
│ │ ├── gov
│ │ │ ├── index
│ │ │ ├── socket
│ │ │ │ ├── gc
│ │ │ │ ├── bgtask
│ │ │ │ └── daemon
│ │ │ ├── cli
│ │ │ │ └── hmi
│ │ │ └── relay
│ │ │ │ └── daemon
│ │ ├── bgtask
│ │ ├── bin
│ │ │ └── apply_brand
│ │ └── wallet
│ │ │ ├── traders
│ │ │ └── wallet_local_api
│ └── header
│ ├── android
│ ├── app
│ │ ├── .gitignore
│ │ ├── src
│ │ │ └── main
│ │ │ │ ├── res
│ │ │ │ ├── raw
│ │ │ │ │ ├── cert.png
│ │ │ │ │ ├── gear.png
│ │ │ │ │ ├── info.png
│ │ │ │ │ ├── basket.png
│ │ │ │ │ ├── coins.png
│ │ │ │ │ ├── create.png
│ │ │ │ │ ├── doc_up.png
│ │ │ │ │ ├── r2rtab.png
│ │ │ │ │ ├── redled.png
│ │ │ │ │ ├── amberled.png
│ │ │ │ │ ├── catalogue.png
│ │ │ │ │ ├── conn_ico.png
│ │ │ │ │ ├── doc_down.png
│ │ │ │ │ ├── greenled.png
│ │ │ │ │ ├── loading_role_img.png
│ │ │ │ │ └── under_construction.jpg
│ │ │ │ ├── xml
│ │ │ │ │ ├── provider_paths.xml
│ │ │ │ │ └── apduservice.xml
│ │ │ │ ├── values
│ │ │ │ │ ├── languajes.xml
│ │ │ │ │ ├── attrs.xml
│ │ │ │ │ └── dimens.xml
│ │ │ │ ├── drawable
│ │ │ │ │ ├── led.xml
│ │ │ │ │ ├── ic_arrow_drop_down.xml
│ │ │ │ │ ├── ic_arrow_drop_up.xml
│ │ │ │ │ ├── splash.xml
│ │ │ │ │ ├── ic_send56.xml
│ │ │ │ │ ├── ic_load56.xml
│ │ │ │ │ ├── ic_send_48dp.xml
│ │ │ │ │ ├── conn.xml
│ │ │ │ │ ├── ic_done.xml
│ │ │ │ │ ├── ic_back.xml
│ │ │ │ │ ├── ic_arrow_left_48.xml
│ │ │ │ │ ├── ic_arrow_view.xml
│ │ │ │ │ ├── ic_bookmark.xml
│ │ │ │ │ ├── sheet_head_bg.xml
│ │ │ │ │ ├── ic_crypto.xml
│ │ │ │ │ ├── ic_log.xml
│ │ │ │ │ ├── ic_transfer.xml
│ │ │ │ │ ├── drawer_item.xml
│ │ │ │ │ ├── ic_random.xml
│ │ │ │ │ ├── sheet_bg.xml
│ │ │ │ │ ├── ic_drag.xml
│ │ │ │ │ ├── ic_email.xml
│ │ │ │ │ ├── ic_mail_48dp.xml
│ │ │ │ │ ├── ic_open_doc.xml
│ │ │ │ │ ├── ic_chat.xml
│ │ │ │ │ ├── resolveip.xml
│ │ │ │ │ ├── ic_pay_48dp.xml
│ │ │ │ │ ├── ic_send.xml
│ │ │ │ │ ├── ic_invoice.xml
│ │ │ │ │ ├── ic_save_24dp.xml
│ │ │ │ │ ├── ic_save_56dp.xml
│ │ │ │ │ ├── ic_cancel.xml
│ │ │ │ │ ├── ic_download_24dp.xml
│ │ │ │ │ ├── ic_exit.xml
│ │ │ │ │ ├── ic_prescription.xml
│ │ │ │ │ ├── item_count.xml
│ │ │ │ │ ├── ic_redirection_48.xml
│ │ │ │ │ ├── ic_refresh.xml
│ │ │ │ │ ├── ic_pay56.xml
│ │ │ │ │ ├── ic_vieweye.xml
│ │ │ │ │ ├── ic_bill.xml
│ │ │ │ │ ├── ic_invoice48.xml
│ │ │ │ │ ├── ic_avatar.xml
│ │ │ │ │ ├── ic_reset.xml
│ │ │ │ │ ├── ic_archive.xml
│ │ │ │ │ ├── ic_archive_big.xml
│ │ │ │ │ ├── ic_sign.xml
│ │ │ │ │ ├── ic_airesult_48.xml
│ │ │ │ │ ├── ic_crypto24.xml
│ │ │ │ │ ├── ic_personality.xml
│ │ │ │ │ ├── ic_productitem_24.xml
│ │ │ │ │ ├── ic_bill_48.xml
│ │ │ │ │ ├── ic_itemlist.xml
│ │ │ │ │ ├── ic_update.xml
│ │ │ │ │ ├── ic_pill.xml
│ │ │ │ │ ├── ic_tip_24.xml
│ │ │ │ │ ├── drawer_item_bg.xml
│ │ │ │ │ ├── ic_appointment.xml
│ │ │ │ │ ├── ic_basket_24.xml
│ │ │ │ │ ├── ic_new.xml
│ │ │ │ │ ├── ic_checkout_24.xml
│ │ │ │ │ ├── ic_addbasket_24.xml
│ │ │ │ │ ├── ic_show_my_endpoint.xml
│ │ │ │ │ ├── ic_world.xml
│ │ │ │ │ ├── ic_notification_24dp.xml
│ │ │ │ │ └── ic_settings.xml
│ │ │ │ ├── drawable-xhdpi
│ │ │ │ │ ├── enter_message_shape.xml
│ │ │ │ │ ├── file_send_shape.xml
│ │ │ │ │ ├── ic_send_24dp.xml
│ │ │ │ │ ├── ic_play_circle_filled_black_24dp.xml
│ │ │ │ │ ├── ic_pause_circle_filled_black_24dp.xml
│ │ │ │ │ └── ic_attach_file_black_24dp.xml
│ │ │ │ ├── color
│ │ │ │ │ └── button_states.xml
│ │ │ │ ├── anim
│ │ │ │ │ ├── fadein.xml
│ │ │ │ │ ├── fadeout.xml
│ │ │ │ │ └── slide_from_bottom.xml
│ │ │ │ ├── layout
│ │ │ │ │ ├── simple_spinner_item.xml
│ │ │ │ │ ├── simple_spinner_dropdown_item.xml
│ │ │ │ │ ├── fragment_a2a.xml
│ │ │ │ │ ├── fragment_fan2fan.xml
│ │ │ │ │ ├── fragment_pat2ai_pat.xml
│ │ │ │ │ ├── fragment_pat2slt_pat.xml
│ │ │ │ │ ├── trades_listitem.xml
│ │ │ │ │ ├── fragment_fan2club_club.xml
│ │ │ │ │ ├── fragment_fan2club_fan.xml
│ │ │ │ │ ├── activity_main.xml
│ │ │ │ │ ├── content_files.xml
│ │ │ │ │ ├── content_trades.xml
│ │ │ │ │ ├── consumer_workflow.xml
│ │ │ │ │ ├── content_game.xml
│ │ │ │ │ ├── activity_position.xml
│ │ │ │ │ └── logo.xml
│ │ │ │ ├── menu
│ │ │ │ │ ├── activity_menu.xml
│ │ │ │ │ ├── menu_modal.xml
│ │ │ │ │ ├── menu_hmi_off.xml
│ │ │ │ │ └── menu_hmi_on.xml
│ │ │ │ └── drawable-anydpi
│ │ │ │ │ ├── ic_balance.xml
│ │ │ │ │ ├── ic_files.xml
│ │ │ │ │ ├── ic_qr.xml
│ │ │ │ │ └── ic_basket.xml
│ │ │ │ └── ic_launcher-web.png
│ │ └── proguard-rules.pro
│ ├── licenses
│ │ ├── google-gdk-license
│ │ ├── android-googletv-license
│ │ ├── android-sdk-arm-dbt-license
│ │ ├── android-sdk-preview-license
│ │ ├── mips-android-sysimage-license
│ │ └── android-sdk-license
│ ├── art
│ │ └── splash.xcf
│ ├── files
│ │ ├── brand.png
│ │ ├── icoapp.png
│ │ ├── splash.png
│ │ ├── settings.xml
│ │ └── colors.xml
│ ├── .settings
│ │ └── org.eclipse.buildship.core.prefs
│ ├── blesdk_2025
│ │ └── src
│ │ │ └── main
│ │ │ ├── res
│ │ │ └── values
│ │ │ │ └── strings.xml
│ │ │ └── AndroidManifest.xml
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ ├── wearable_JClife
│ │ └── src
│ │ │ └── main
│ │ │ ├── res
│ │ │ ├── values
│ │ │ │ └── colors.xml
│ │ │ ├── menu
│ │ │ │ └── activity_home_navigation.xml
│ │ │ └── layout
│ │ │ │ ├── item_cmd.xml
│ │ │ │ ├── activity_ble.xml
│ │ │ │ └── activity_device_scan.xml
│ │ │ └── AndroidManifest.xml
│ ├── .gitignore
│ ├── bin
│ │ └── install_gradle
│ ├── .project
│ ├── getdeps
│ └── gradle.properties
│ ├── raspbian
│ ├── 10-us
│ │ ├── 00-packages-nr
│ │ ├── 01-run.sh
│ │ ├── 00-packages
│ │ └── files
│ │ │ └── rc.local.in
│ └── OS.png
│ ├── testx
│ ├── nodes
│ │ ├── bank1
│ │ │ ├── name
│ │ │ ├── ico.png
│ │ │ └── logo.png
│ │ └── bank2
│ │ │ ├── name
│ │ │ ├── ico.png
│ │ │ └── logo.png
│ └── verser
│ │ ├── 8
│ │ └── blocks
│ │ │ ├── 9zy2Tv5aqp2ud9pvDLZey2vC9rJ
│ │ │ ├── BskeTpevBT8Ji9KK4EmHc5qM84X
│ │ │ ├── GpV8CEJz37u4yixXY3uNYVStkCT
│ │ │ ├── H21FnLCJSoUFEiit5GEYHkSmPxw
│ │ │ ├── MaPTJH79TyGAnZPxABtbN17bZmg
│ │ │ ├── QNCMwBLXQBs2ompPXEasxfPvHJB
│ │ │ ├── TWXqGxkseMuznkEvHPDpwTQunUu
│ │ │ ├── gHQL9hKhKjW2rqXpzSZrpPkH7T5
│ │ │ ├── h8UL8vaBVSrZBgY4AXhTy6Pd1hU
│ │ │ ├── qeN1b4bpsmxsbbuJ63GUVYM5K6Y
│ │ │ ├── qixUGvpXqY3tLuTfiezFeKGhYVz
│ │ │ ├── rqpZxZXxEGRLQ1rEVs2pmaqcLJH
│ │ │ ├── sdPRTbuNdWP8vLN9XZ9F26LcVyV
│ │ │ ├── tXnSoYoXVchXBykDj9Q6LSm3DGw
│ │ │ ├── 21kLvNL2kW8Paay39kdZBPCS3vmX
│ │ │ ├── 2DuE9osLJQw7u251xVRNarQkDCdL
│ │ │ ├── 2Gz2PnnsuMVNfbUDZvDYisVm34PX
│ │ │ ├── 2NBHibaNtM2858Ss5ffbdWm3ZdFB
│ │ │ ├── 2VgDWFQJiWGxnVaGnFS6kLWphseS
│ │ │ ├── 2jL1b969S8tiVTMApMXekcJbVTgW
│ │ │ ├── 2m2ww98oNHqU3qK7PYCnXr2feyWj
│ │ │ ├── 2qoo59ksf1j6hpGg7ULSgPAmX9gk
│ │ │ ├── 2zwDJj2E9fKfohSEULTR5gaFEgCW
│ │ │ ├── 3A73G3itXs5Wo6fNQCBUTkppUa5C
│ │ │ ├── 3DqaMHLkTZcxgYt82CE3gJhBBV2e
│ │ │ ├── 3FkRHHG3uyGwfguBHRMiGYWMepT1
│ │ │ ├── 3fCSb35Mt92CHULZJBxWA8fnypPj
│ │ │ ├── 3hq97rQwJ2EYBvaHvU1LrCGqztNh
│ │ │ ├── 3iuYMwLGzM1BSQWsCDAnFGeW9u6W
│ │ │ ├── 3jkkzm5st25AXbdgq8NjKAYYbUec
│ │ │ ├── 45nVhZjKhPM4yLhNWFuLKx6B1P92
│ │ │ ├── 481YNrD5CK2EWYGg4BCZmUhzHsz9
│ │ │ ├── 4NCTRjfNDdoX2UmKqYcSZ9paBR8Y
│ │ │ └── 4PHNfDjtwHoGBjGeqpoWJuMDmGbY
│ │ ├── 9
│ │ ├── local_deltas_1
│ │ ├── local_deltas_2
│ │ └── blocks
│ │ │ ├── 1MEMWafzZFFjCmvaZyrRkD8XNVA
│ │ │ ├── 5B3VUCjXkwYT6DtfJ1wQoTuaW3o
│ │ │ ├── 5Nd3PJKM79GS9c3UPf2a1LoqFda
│ │ │ ├── ggHud5y1yLJ4FDsMsFg6zdTtyFw
│ │ │ ├── pHxTfHhfnX1qaZQ8ShDERWU9wPT
│ │ │ ├── rTyhh1xEQLifeYBqqRB9niU3LsZ
│ │ │ ├── 2FBGFW1SmvUEyNJs9zSXBbgtGTiQ
│ │ │ ├── 2RsZaUoozFG2tteNVEfytofjCmKV
│ │ │ ├── 35AvmanUqk9NFTaNtVJKhamJE4Be
│ │ │ ├── 3YLtn8JULFhGN1KiFoBahhBykG9a
│ │ │ ├── 3fXi6dx1ePybQ1UJVc1hfz2R84aX
│ │ │ ├── 3mGQQmndZwAE8GTDHnwPBhqpGS4K
│ │ │ ├── 3nwJqY6WMcR8xh21goenQER4s5BK
│ │ │ ├── 3tm4LxLzMzdQrfyNKJjcPcKrEm26
│ │ │ └── 44Zpjh3zmTXREzRJk94oRM1ATQJz
│ │ └── 10
│ │ ├── local_deltas_1
│ │ └── local_deltas_2
│ ├── test
│ ├── .gitignore
│ ├── db_analyst
│ │ ├── set1_expected
│ │ ├── set10
│ │ │ ├── 3KodzmKDFgwnRADyRyraEz4oVLiS
│ │ │ ├── 23zY9A5b3Wf6ns34rvbpLNCftvWY
│ │ │ ├── 2RrRc57rW4x1W21RVxyENjcfVuTw
│ │ │ ├── 2SbyVrcqM8E4WaU3FUL3atuMuQKf
│ │ │ ├── 2evg9ULJWaV66CdKBsMBuYkrHzCj
│ │ │ ├── 2xWLsodXotVbeYJRFDcp8v62jNYo
│ │ │ ├── 3KQoMqZBuBHcy6mYbcZY3cj13kYF
│ │ │ ├── 3TMuBruxndy9N1SNsvZrFkSx5mRP
│ │ │ ├── 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu
│ │ │ ├── 3z3CjyzjX8K9vPGLrWraX6pD9YjB
│ │ │ ├── 44EXtjjBcRpPGvfvxAoYFK9wuu9A
│ │ │ ├── QFopAtyvNEAFLCuYmjQoAwuQ2bh
│ │ │ └── 3yBE35YWZWPuAwUKaCyiWez28tUR
│ │ ├── set2
│ │ │ └── 3KodzmKDFgwnRADyRyraEz4oVLiS
│ │ ├── set3
│ │ │ ├── 3KodzmKDFgwnRADyRyraEz4oVLiS
│ │ │ └── 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu
│ │ ├── set4
│ │ │ ├── 3KodzmKDFgwnRADyRyraEz4oVLiS
│ │ │ ├── 3APvESao9P1zkchuX8GesqjAgS3L
│ │ │ └── 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu
│ │ ├── set5
│ │ │ ├── 3KodzmKDFgwnRADyRyraEz4oVLiS
│ │ │ ├── 2xWLsodXotVbeYJRFDcp8v62jNYo
│ │ │ └── 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu
│ │ ├── set6
│ │ │ ├── 3KodzmKDFgwnRADyRyraEz4oVLiS
│ │ │ ├── 2xWLsodXotVbeYJRFDcp8v62jNYo
│ │ │ ├── 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu
│ │ │ └── 3z3CjyzjX8K9vPGLrWraX6pD9YjB
│ │ ├── set7
│ │ │ ├── 3KodzmKDFgwnRADyRyraEz4oVLiS
│ │ │ ├── 2xWLsodXotVbeYJRFDcp8v62jNYo
│ │ │ ├── 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu
│ │ │ ├── 3z3CjyzjX8K9vPGLrWraX6pD9YjB
│ │ │ └── 3yBE35YWZWPuAwUKaCyiWez28tUR
│ │ ├── set8
│ │ │ ├── 3KodzmKDFgwnRADyRyraEz4oVLiS
│ │ │ ├── 2evg9ULJWaV66CdKBsMBuYkrHzCj
│ │ │ ├── 2xWLsodXotVbeYJRFDcp8v62jNYo
│ │ │ ├── 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu
│ │ │ ├── 3z3CjyzjX8K9vPGLrWraX6pD9YjB
│ │ │ └── 3yBE35YWZWPuAwUKaCyiWez28tUR
│ │ ├── set9
│ │ │ ├── 3KodzmKDFgwnRADyRyraEz4oVLiS
│ │ │ ├── 23zY9A5b3Wf6ns34rvbpLNCftvWY
│ │ │ ├── 2RrRc57rW4x1W21RVxyENjcfVuTw
│ │ │ ├── 2SbyVrcqM8E4WaU3FUL3atuMuQKf
│ │ │ ├── 2evg9ULJWaV66CdKBsMBuYkrHzCj
│ │ │ ├── 2xWLsodXotVbeYJRFDcp8v62jNYo
│ │ │ ├── 3KQoMqZBuBHcy6mYbcZY3cj13kYF
│ │ │ ├── 3TMuBruxndy9N1SNsvZrFkSx5mRP
│ │ │ ├── 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu
│ │ │ ├── 3z3CjyzjX8K9vPGLrWraX6pD9YjB
│ │ │ ├── 44EXtjjBcRpPGvfvxAoYFK9wuu9A
│ │ │ └── 3yBE35YWZWPuAwUKaCyiWez28tUR
│ │ ├── set2_expected
│ │ ├── set3_expected
│ │ ├── set5_expected
│ │ ├── set4_expected
│ │ ├── set6_expected
│ │ └── set7_expected
│ ├── img
│ │ └── ico.png
│ ├── symmetric_encryption_dir
│ │ ├── test_cpp
│ │ ├── Main.class
│ │ ├── do_symmetric_encryption_test
│ │ └── do_test_with_args
│ ├── serialization
│ │ └── prev
│ │ │ ├── 3XcsvEZQM7md8W92ictRgoywWX6h
│ │ │ └── 3zdrD4vWohxRLNd9qMp49MsXTsUn
│ └── bin
│ │ └── run_tests
│ ├── var
│ ├── us
│ │ ├── LICENSE
│ │ ├── commands
│ │ │ ├── blockchain
│ │ │ ├── broadcast
│ │ │ │ ├── uptime
│ │ │ │ └── upgrade_distr
│ │ │ ├── journal
│ │ │ ├── close-open-ports
│ │ │ ├── uptime
│ │ │ ├── clean
│ │ │ ├── set_gov_passwd
│ │ │ ├── ps_ssh
│ │ │ ├── geo
│ │ │ ├── ping
│ │ │ ├── reverse_connect
│ │ │ ├── change_oanode
│ │ │ ├── proc_1.2
│ │ │ ├── write_torrc
│ │ │ └── adduser_othernode
│ │ └── geonodes
│ └── www
│ │ └── html
│ │ ├── us-c.png
│ │ └── motd.html
│ ├── wallet
│ └── trader
│ │ └── r2r
│ │ ├── a2a
│ │ └── home
│ │ │ ├── name
│ │ │ └── ico.png
│ │ └── w2w
│ │ └── home
│ │ ├── name
│ │ ├── ico.png
│ │ └── logo.png
│ ├── etc
│ ├── env
│ ├── rc.local
│ ├── wallet
│ │ └── config.in
│ ├── php
│ │ └── 7.4
│ │ │ └── fpm
│ │ │ └── pool.d
│ │ │ └── user_wrest
│ ├── sudoers.d
│ │ └── usgov.in
│ ├── bind
│ │ ├── named.conf.local.in
│ │ └── zones
│ │ │ └── db.bind_domain.in
│ ├── tor
│ │ └── torrc.d
│ │ │ └── us-hidden.in
│ ├── nginx
│ │ ├── snippets
│ │ │ ├── us-node.conf
│ │ │ └── snakeoil.conf
│ │ └── conf.d
│ │ │ └── us-hidden.conf.in
│ ├── bashrc.in
│ ├── bash_aliases.in
│ ├── motd_hdr
│ ├── systemd
│ │ └── system
│ │ │ ├── us-gov.service.in
│ │ │ └── us-wallet.service.in
│ ├── motd.in
│ ├── 999999999_rclocal.in
│ └── config.in
│ ├── cash
│ └── art
│ │ ├── c.png
│ │ ├── coin.xcf
│ │ ├── usc.png
│ │ └── us-cash.png
│ ├── sdk
│ └── wallet
│ │ ├── java
│ │ └── .gitignore
│ │ └── cs
│ │ ├── libs
│ │ └── Secp256k1.Net.dll
│ │ └── README
│ ├── .bazelrc
│ ├── srctool
│ └── test
│ │ └── testin.in
│ ├── WORKSPACE.bazel
│ └── root
│ └── .ssh
│ └── authorized_keys
├── core1
├── .gitignore
├── brands
│ └── plebble
│ │ ├── blob
│ │ ├── name
│ │ ├── html
│ │ ├── pub
│ │ ├── doc
│ │ │ └── user_manual.txt
│ │ ├── btc.png
│ │ ├── pi4.png
│ │ ├── cloud.png
│ │ ├── header.png
│ │ ├── bg_sand.gif
│ │ ├── bitcoin.pdf
│ │ ├── favicon.ico
│ │ ├── plebble_ico.png
│ │ ├── rpi_imager.png
│ │ ├── bitcoin
│ │ │ ├── miner.jpg
│ │ │ ├── fullnode.jpg
│ │ │ └── bitcoin_nodes.pdf
│ │ ├── plebble_logo.png
│ │ ├── community
│ │ │ ├── github.png
│ │ │ ├── reddit.png
│ │ │ ├── signal.jpg
│ │ │ ├── signal.png
│ │ │ ├── discord.png
│ │ │ ├── patreon.png
│ │ │ ├── telegram.png
│ │ │ └── twitter.png
│ │ ├── ecosystem
│ │ │ ├── header.png
│ │ │ ├── favicon.ico
│ │ │ ├── plebble_ico.png
│ │ │ └── plebble_logo.png
│ │ ├── android_screenshots
│ │ │ ├── IMG_20220629_211014.jpg
│ │ │ ├── IMG_20220629_212001.jpg
│ │ │ ├── IMG_20220629_212054.jpg
│ │ │ ├── Screenshot_2022-06-29-20-53-40-555_katlas.trader.jpg
│ │ │ ├── Screenshot_2022-06-29-20-57-17-175_katlas.trader.jpg
│ │ │ ├── Screenshot_2022-06-30-10-08-55-757_com.miui.home.jpg
│ │ │ ├── Screenshot_2022-06-29-20-47-09-892_plebble.trader.jpg
│ │ │ ├── Screenshot_2022-06-29-20-51-46-224_plebble.trader.jpg
│ │ │ ├── Screenshot_2022-06-29-20-56-22-306_plebble.trader.jpg
│ │ │ ├── Screenshot_2022-06-29-20-59-18-924_plebble.trader.jpg
│ │ │ ├── Screenshot_2022-06-29-21-00-22-437_plebble.trader.jpg
│ │ │ ├── Screenshot_2022-06-29-21-04-35-170_plebble.trader.jpg
│ │ │ ├── Screenshot_2022-06-29-21-06-19-781_plebble.trader.jpg
│ │ │ ├── Screenshot_2022-06-29-21-07-12-902_plebble.trader.jpg
│ │ │ ├── Screenshot_2022-06-29-21-07-58-247_plebble.trader.jpg
│ │ │ ├── Screenshot_2022-06-29-21-09-07-355_plebble.trader.jpg
│ │ │ ├── Screenshot_2022-06-29-21-18-47-013_plebble.trader.jpg
│ │ │ ├── Screenshot_2022-06-29-21-21-28-556_plebble.trader.jpg
│ │ │ └── Screenshot_2022-06-29-21-23-01-152_plebble.trader.jpg
│ │ ├── why_ip4.txt
│ │ └── shopping_list.txt
│ │ ├── r2r
│ │ ├── unixname
│ │ ├── html_alt
│ │ ├── bitbank
│ │ │ └── index.html
│ │ └── privacy_operating_system
│ │ │ └── index.html
│ │ ├── bookmarks
│ │ ├── brand.png
│ │ ├── icoapp.png
│ │ ├── splash.png
│ │ ├── art
│ │ ├── icoapp.xcf
│ │ └── splash.xcf
│ │ ├── doc
│ │ ├── icoapp.xcf
│ │ └── splash.xcf
│ │ ├── front
│ │ ├── img
│ │ │ ├── bg.jpg
│ │ │ ├── pi4.png
│ │ │ ├── icoapp.png
│ │ │ ├── server.jpg
│ │ │ ├── anycomputer.jpg
│ │ │ ├── plebble_ico.png
│ │ │ └── rasperry2.jpg
│ │ ├── animate.js
│ │ └── index.js
│ │ ├── settings.xml
│ │ ├── letsncrypt
│ │ ├── devjob_skel
│ │ ├── bin
│ │ │ ├── lint
│ │ │ ├── update_revs
│ │ │ └── merge_submit
│ │ └── .github
│ │ │ └── FUNDING.yml
│ │ └── source_code_header
├── us
│ └── trader
│ │ ├── .gitignore
│ │ ├── r2r
│ │ ├── games
│ │ │ └── home
│ │ │ │ ├── name
│ │ │ │ └── ico.png
│ │ └── bid2ask
│ │ │ ├── ask
│ │ │ └── home
│ │ │ │ ├── name
│ │ │ │ ├── ico.png
│ │ │ │ └── logo.png
│ │ │ └── bid
│ │ │ └── home
│ │ │ ├── name
│ │ │ ├── ico.png
│ │ │ └── logo.png
│ │ └── testx
│ │ ├── nodes
│ │ └── ask
│ │ │ ├── name
│ │ │ ├── data
│ │ │ ├── ico.png
│ │ │ └── logo.png
│ │ └── bin
│ │ ├── compile_and_run_tests
│ │ ├── compile_r2r_and_run_tests
│ │ ├── compile_wallet_and_run_tests
│ │ ├── gdb
│ │ ├── compile_wallet_and_r2r_and_run_tests
│ │ └── run
├── bde_setup
│ └── bde_data
│ │ ├── nginx
│ │ └── html
│ │ │ ├── clone.html
│ │ │ └── googleplay.png
│ │ └── template_base
│ │ └── trader
│ │ └── w2w
│ │ ├── name
│ │ ├── ico.png
│ │ └── logo.png
├── template
│ ├── README
│ ├── devjobs_active
│ └── cbs_config_brand
├── lib
│ └── shenv
└── snippet
│ └── makefile_distr
├── .revs
├── bin
├── lint
├── update_revs
└── merge_submit
└── .github
└── FUNDING.yml
/core0/us/BUILD.bazel:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core0/us/api/data/gov/auth:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core0/us/api/data/gov/peer:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core0/us/api/data/gov/sys:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/core0/us/COPYING:
--------------------------------------------------------------------------------
1 | var/us/LICENSE
--------------------------------------------------------------------------------
/core0/us/gui/.watchmanconfig:
--------------------------------------------------------------------------------
1 | {}
--------------------------------------------------------------------------------
/core0/us/bin/srctool:
--------------------------------------------------------------------------------
1 | ../srctool/srctool
--------------------------------------------------------------------------------
/core0/us/doc/us/index:
--------------------------------------------------------------------------------
1 | src root
2 |
--------------------------------------------------------------------------------
/core0/us/gui/.ruby-version:
--------------------------------------------------------------------------------
1 | 2.7.4
2 |
--------------------------------------------------------------------------------
/core1/.gitignore:
--------------------------------------------------------------------------------
1 | .cbs
2 | .cache
3 |
--------------------------------------------------------------------------------
/core1/brands/plebble/blob:
--------------------------------------------------------------------------------
1 | PuxQ2g
2 |
--------------------------------------------------------------------------------
/core1/brands/plebble/name:
--------------------------------------------------------------------------------
1 | plebble
2 |
--------------------------------------------------------------------------------
/core0/us/android/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/core0/us/doc/header:
--------------------------------------------------------------------------------
1 | HEADER PLACEHOLDER
2 |
--------------------------------------------------------------------------------
/core0/us/raspbian/10-us/00-packages-nr:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/core0/us/testx/nodes/bank1/name:
--------------------------------------------------------------------------------
1 | bank1
2 |
--------------------------------------------------------------------------------
/core0/us/testx/nodes/bank2/name:
--------------------------------------------------------------------------------
1 | bank2
2 |
--------------------------------------------------------------------------------
/core1/brands/plebble/html/pub:
--------------------------------------------------------------------------------
1 | /home/gov/pub
--------------------------------------------------------------------------------
/core1/brands/plebble/r2r:
--------------------------------------------------------------------------------
1 | bid2ask
2 |
3 |
--------------------------------------------------------------------------------
/core1/brands/plebble/unixname:
--------------------------------------------------------------------------------
1 | plebble
2 |
--------------------------------------------------------------------------------
/core0/us/test/.gitignore:
--------------------------------------------------------------------------------
1 | us-gov_test
2 |
3 |
--------------------------------------------------------------------------------
/core0/us/var/us/LICENSE:
--------------------------------------------------------------------------------
1 | LICENSE PLACEHOLDER
2 |
--------------------------------------------------------------------------------
/core1/us/trader/.gitignore:
--------------------------------------------------------------------------------
1 | *.o
2 | *.a
3 |
4 |
--------------------------------------------------------------------------------
/core1/us/trader/r2r/games/home/name:
--------------------------------------------------------------------------------
1 | games
2 |
--------------------------------------------------------------------------------
/core0/us/var/us/commands/blockchain:
--------------------------------------------------------------------------------
1 | govshell n
2 |
--------------------------------------------------------------------------------
/core0/us/wallet/trader/r2r/a2a/home/name:
--------------------------------------------------------------------------------
1 | actor
2 |
--------------------------------------------------------------------------------
/core0/us/wallet/trader/r2r/w2w/home/name:
--------------------------------------------------------------------------------
1 | bank
2 |
--------------------------------------------------------------------------------
/core1/us/trader/r2r/bid2ask/ask/home/name:
--------------------------------------------------------------------------------
1 | shop
2 |
--------------------------------------------------------------------------------
/core1/us/trader/r2r/bid2ask/bid/home/name:
--------------------------------------------------------------------------------
1 | customer
2 |
--------------------------------------------------------------------------------
/core1/us/trader/testx/nodes/ask/name:
--------------------------------------------------------------------------------
1 | Impact Shopping
2 |
--------------------------------------------------------------------------------
/core0/us/etc/env:
--------------------------------------------------------------------------------
1 | alias log="tail -f /var/log/messages"
2 |
3 |
--------------------------------------------------------------------------------
/core0/us/var/us/commands/broadcast/uptime:
--------------------------------------------------------------------------------
1 | govshell uptime
2 |
--------------------------------------------------------------------------------
/core1/bde_setup/bde_data/nginx/html/clone.html:
--------------------------------------------------------------------------------
1 |
TODO
2 |
--------------------------------------------------------------------------------
/core1/bde_setup/bde_data/template_base/trader/w2w/name:
--------------------------------------------------------------------------------
1 | bank
2 |
--------------------------------------------------------------------------------
/core0/us/etc/rc.local:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | run-parts /etc/rc.local.d
3 |
--------------------------------------------------------------------------------
/core0/us/doc/us/gov/index:
--------------------------------------------------------------------------------
1 | Public Governance Core + Antier (Network layer)
2 |
--------------------------------------------------------------------------------
/core0/us/gui/app.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "gui",
3 | "displayName": "gui"
4 | }
--------------------------------------------------------------------------------
/core0/us/bin/node_sys/perf:
--------------------------------------------------------------------------------
1 | govshell p c v app 20 db exit app 30 db exit
2 |
3 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set1_expected:
--------------------------------------------------------------------------------
1 | digraph D {
2 | node [shape=box]
3 | }
4 |
--------------------------------------------------------------------------------
/core0/us/api/data/gov/relay:
--------------------------------------------------------------------------------
1 | push
2 | h tid u2 code v blob
3 | async
4 | -
5 | -
6 |
7 |
--------------------------------------------------------------------------------
/core1/brands/plebble/html/doc/user_manual.txt:
--------------------------------------------------------------------------------
1 | /usr/local/share/doc/plebble/user_manual
--------------------------------------------------------------------------------
/core0/us/android/licenses/google-gdk-license:
--------------------------------------------------------------------------------
1 |
2 | 33b6a2b64607f11b759f320ef9dff4ae5c47d97a
--------------------------------------------------------------------------------
/core0/us/api/data/device:
--------------------------------------------------------------------------------
1 | get_component_update
2 | s file v bin
3 | async
4 | -
5 | -
6 |
7 |
--------------------------------------------------------------------------------
/core0/us/etc/wallet/config.in:
--------------------------------------------------------------------------------
1 | LD_LIBRARY_PATH=/home/##str11##/.##str3##/wallet/trader/lib
2 |
--------------------------------------------------------------------------------
/core0/us/android/licenses/android-googletv-license:
--------------------------------------------------------------------------------
1 |
2 | 601085b94cd77f0b54ff86406957099ebe79c4d6
--------------------------------------------------------------------------------
/core0/us/android/licenses/android-sdk-arm-dbt-license:
--------------------------------------------------------------------------------
1 |
2 | 859f317696f67ef3d7f30a50a5560e7834b43903
--------------------------------------------------------------------------------
/core0/us/android/licenses/android-sdk-preview-license:
--------------------------------------------------------------------------------
1 |
2 | 84831b9409646a918e30573bab4c9c91346d8abd
--------------------------------------------------------------------------------
/core0/us/cash/art/c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/cash/art/c.png
--------------------------------------------------------------------------------
/core0/us/gui/.bundle/config:
--------------------------------------------------------------------------------
1 | BUNDLE_PATH: "vendor/bundle"
2 | BUNDLE_FORCE_RUBY_PLATFORM: 1
3 |
--------------------------------------------------------------------------------
/core0/us/sdk/wallet/java/.gitignore:
--------------------------------------------------------------------------------
1 | build
2 | test_build
3 | libs
4 | *.jar
5 | us/CFG.java
6 |
--------------------------------------------------------------------------------
/core1/us/trader/testx/bin/compile_and_run_tests:
--------------------------------------------------------------------------------
1 | ###############make clean
2 | bin/run_tests
3 |
--------------------------------------------------------------------------------
/core0/us/android/licenses/mips-android-sysimage-license:
--------------------------------------------------------------------------------
1 |
2 | e9acab5b5fbb560a72cfaecce8946896ff6aab9d
--------------------------------------------------------------------------------
/core0/us/cash/art/coin.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/cash/art/coin.xcf
--------------------------------------------------------------------------------
/core0/us/cash/art/usc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/cash/art/usc.png
--------------------------------------------------------------------------------
/core0/us/raspbian/OS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/raspbian/OS.png
--------------------------------------------------------------------------------
/core0/us/test/img/ico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/test/img/ico.png
--------------------------------------------------------------------------------
/core0/us/gui/2025sdk9.0.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/2025sdk9.0.jar
--------------------------------------------------------------------------------
/core1/brands/plebble/html_alt/bitbank/index.html:
--------------------------------------------------------------------------------
1 | BitBank: A P2P Network of Central Banks
2 |
3 |
--------------------------------------------------------------------------------
/core0/us/android/art/splash.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/art/splash.xcf
--------------------------------------------------------------------------------
/core0/us/cash/art/us-cash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/cash/art/us-cash.png
--------------------------------------------------------------------------------
/core0/us/etc/php/7.4/fpm/pool.d/user_wrest:
--------------------------------------------------------------------------------
1 | [##user##_wrest]
2 |
3 | user = ##user##
4 | group = ##user##
5 |
--------------------------------------------------------------------------------
/core0/us/var/www/html/us-c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/var/www/html/us-c.png
--------------------------------------------------------------------------------
/core1/brands/plebble/bookmarks:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/bookmarks
--------------------------------------------------------------------------------
/core1/brands/plebble/brand.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/brand.png
--------------------------------------------------------------------------------
/core1/brands/plebble/icoapp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/icoapp.png
--------------------------------------------------------------------------------
/core1/brands/plebble/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/splash.png
--------------------------------------------------------------------------------
/core0/us/android/files/brand.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/files/brand.png
--------------------------------------------------------------------------------
/core0/us/android/files/icoapp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/files/icoapp.png
--------------------------------------------------------------------------------
/core0/us/android/files/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/files/splash.png
--------------------------------------------------------------------------------
/core0/us/gui/.eslintrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | root: true,
3 | extends: '@react-native-community',
4 | };
5 |
--------------------------------------------------------------------------------
/core0/us/gui/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | presets: ['module:metro-react-native-babel-preset'],
3 | };
4 |
--------------------------------------------------------------------------------
/core1/brands/plebble/html/btc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/btc.png
--------------------------------------------------------------------------------
/core1/brands/plebble/html/pi4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/pi4.png
--------------------------------------------------------------------------------
/core0/us/android/.settings/org.eclipse.buildship.core.prefs:
--------------------------------------------------------------------------------
1 | connection.project.dir=
2 | eclipse.preferences.version=1
3 |
--------------------------------------------------------------------------------
/core0/us/etc/sudoers.d/usgov.in:
--------------------------------------------------------------------------------
1 | ##str11## ALL = (root) NOPASSWD: SETENV: ALL
2 | Defaults lecture = never
3 |
4 |
--------------------------------------------------------------------------------
/core0/us/testx/nodes/bank1/ico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/nodes/bank1/ico.png
--------------------------------------------------------------------------------
/core0/us/testx/nodes/bank1/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/nodes/bank1/logo.png
--------------------------------------------------------------------------------
/core0/us/testx/nodes/bank2/ico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/nodes/bank2/ico.png
--------------------------------------------------------------------------------
/core0/us/testx/nodes/bank2/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/nodes/bank2/logo.png
--------------------------------------------------------------------------------
/core1/brands/plebble/art/icoapp.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/art/icoapp.xcf
--------------------------------------------------------------------------------
/core1/brands/plebble/art/splash.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/art/splash.xcf
--------------------------------------------------------------------------------
/core1/brands/plebble/doc/icoapp.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/doc/icoapp.xcf
--------------------------------------------------------------------------------
/core1/brands/plebble/doc/splash.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/doc/splash.xcf
--------------------------------------------------------------------------------
/core1/brands/plebble/html/cloud.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/cloud.png
--------------------------------------------------------------------------------
/core1/brands/plebble/html/header.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/header.png
--------------------------------------------------------------------------------
/core0/us/api/data/gov/dfs:
--------------------------------------------------------------------------------
1 | file_request
2 | h content_digest
3 | sync
4 | [async_handler] 1 content
5 | -
6 | -
7 |
8 |
9 |
--------------------------------------------------------------------------------
/core0/us/testx/verser/9/local_deltas_1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/local_deltas_1
--------------------------------------------------------------------------------
/core0/us/testx/verser/9/local_deltas_2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/local_deltas_2
--------------------------------------------------------------------------------
/core0/us/var/us/commands/journal:
--------------------------------------------------------------------------------
1 | echo "--BEG--"
2 | journalctl -t us-gov --since=today
3 | echo "--END--"
4 | exit 0
5 |
6 |
--------------------------------------------------------------------------------
/core1/brands/plebble/front/img/bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/front/img/bg.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/front/img/pi4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/front/img/pi4.png
--------------------------------------------------------------------------------
/core1/brands/plebble/html/bg_sand.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/bg_sand.gif
--------------------------------------------------------------------------------
/core1/brands/plebble/html/bitcoin.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/bitcoin.pdf
--------------------------------------------------------------------------------
/core1/brands/plebble/html/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/favicon.ico
--------------------------------------------------------------------------------
/core1/us/trader/r2r/games/home/ico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/us/trader/r2r/games/home/ico.png
--------------------------------------------------------------------------------
/core1/us/trader/testx/nodes/ask/data:
--------------------------------------------------------------------------------
1 | 4ZF1BsR2QDpxE9fDSBmQYFRC71WM 9PPteEVCPt25Qgnnn3pfJsS2YNQ 4ZF1BsR2QDpxE9fDSBmQYFRC71WM
2 |
--------------------------------------------------------------------------------
/core0/us/gui/android/app/debug.keystore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/debug.keystore
--------------------------------------------------------------------------------
/core0/us/testx/verser/10/local_deltas_1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/10/local_deltas_1
--------------------------------------------------------------------------------
/core0/us/testx/verser/10/local_deltas_2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/10/local_deltas_2
--------------------------------------------------------------------------------
/core0/us/var/us/commands/close-open-ports:
--------------------------------------------------------------------------------
1 | /etc/cron.hourly/us-ports close
2 | echo "---"
3 | /etc/cron.hourly/us-ports open
4 |
5 |
--------------------------------------------------------------------------------
/core1/brands/plebble/front/img/icoapp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/front/img/icoapp.png
--------------------------------------------------------------------------------
/core1/brands/plebble/front/img/server.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/front/img/server.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/plebble_ico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/plebble_ico.png
--------------------------------------------------------------------------------
/core1/brands/plebble/html/rpi_imager.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/rpi_imager.png
--------------------------------------------------------------------------------
/core1/us/trader/testx/nodes/ask/ico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/us/trader/testx/nodes/ask/ico.png
--------------------------------------------------------------------------------
/core1/us/trader/testx/nodes/ask/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/us/trader/testx/nodes/ask/logo.png
--------------------------------------------------------------------------------
/core0/us/android/licenses/android-sdk-license:
--------------------------------------------------------------------------------
1 |
2 | d56f5187479451eabf01fb78af6dfcb131a6481e
3 | 24333f8a63b6825ea9c5514f83c2829b004d1fee
--------------------------------------------------------------------------------
/core0/us/etc/bind/named.conf.local.in:
--------------------------------------------------------------------------------
1 | zone "##str68##" {
2 | type master;
3 | file "/etc/bind/zones/db.bind_domain";
4 | };
5 |
--------------------------------------------------------------------------------
/core0/us/gui/android/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | gui
3 |
4 |
--------------------------------------------------------------------------------
/core0/us/gui/ios/gui/Images.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "xcode"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/core0/us/wallet/trader/r2r/a2a/home/ico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/wallet/trader/r2r/a2a/home/ico.png
--------------------------------------------------------------------------------
/core0/us/wallet/trader/r2r/w2w/home/ico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/wallet/trader/r2r/w2w/home/ico.png
--------------------------------------------------------------------------------
/core1/brands/plebble/html/bitcoin/miner.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/bitcoin/miner.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/plebble_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/plebble_logo.png
--------------------------------------------------------------------------------
/core1/brands/plebble/html_alt/privacy_operating_system/index.html:
--------------------------------------------------------------------------------
1 | PLEBOS/PLEBBOS/PLEBBLOS/PLEBBLEOS: Privacy Operating System
2 |
--------------------------------------------------------------------------------
/core1/template/README:
--------------------------------------------------------------------------------
1 | copy templates to .cbs/config
2 |
3 | cascade customized for brand files as:
4 | .cbs/config_
5 |
6 |
7 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/raw/cert.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/cert.png
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/raw/gear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/gear.png
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/raw/info.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/info.png
--------------------------------------------------------------------------------
/core0/us/android/blesdk_2025/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Blesdk
3 |
4 |
--------------------------------------------------------------------------------
/core0/us/etc/tor/torrc.d/us-hidden.in:
--------------------------------------------------------------------------------
1 | HiddenServiceDir /var/lib/tor/##str3##_hidden/
2 | HiddenServicePort ##str22## ##str23##
3 |
4 |
5 |
--------------------------------------------------------------------------------
/core0/us/sdk/wallet/cs/libs/Secp256k1.Net.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/sdk/wallet/cs/libs/Secp256k1.Net.dll
--------------------------------------------------------------------------------
/core0/us/wallet/trader/r2r/w2w/home/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/wallet/trader/r2r/w2w/home/logo.png
--------------------------------------------------------------------------------
/core1/brands/plebble/front/img/anycomputer.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/front/img/anycomputer.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/front/img/plebble_ico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/front/img/plebble_ico.png
--------------------------------------------------------------------------------
/core1/brands/plebble/front/img/rasperry2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/front/img/rasperry2.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/bitcoin/fullnode.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/bitcoin/fullnode.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/community/github.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/community/github.png
--------------------------------------------------------------------------------
/core1/brands/plebble/html/community/reddit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/community/reddit.png
--------------------------------------------------------------------------------
/core1/brands/plebble/html/community/signal.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/community/signal.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/community/signal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/community/signal.png
--------------------------------------------------------------------------------
/core1/brands/plebble/html/ecosystem/header.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/ecosystem/header.png
--------------------------------------------------------------------------------
/core1/us/trader/r2r/bid2ask/ask/home/ico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/us/trader/r2r/bid2ask/ask/home/ico.png
--------------------------------------------------------------------------------
/core1/us/trader/r2r/bid2ask/ask/home/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/us/trader/r2r/bid2ask/ask/home/logo.png
--------------------------------------------------------------------------------
/core1/us/trader/r2r/bid2ask/bid/home/ico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/us/trader/r2r/bid2ask/bid/home/ico.png
--------------------------------------------------------------------------------
/core1/us/trader/r2r/bid2ask/bid/home/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/us/trader/r2r/bid2ask/bid/home/logo.png
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/raw/basket.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/basket.png
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/raw/coins.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/coins.png
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/raw/create.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/create.png
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/raw/doc_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/doc_up.png
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/raw/r2rtab.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/r2rtab.png
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/raw/redled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/redled.png
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set10/3KodzmKDFgwnRADyRyraEz4oVLiS:
--------------------------------------------------------------------------------
1 | D 2sfhod3BS3t9nqLopM7sYphvSHzc 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set2/3KodzmKDFgwnRADyRyraEz4oVLiS:
--------------------------------------------------------------------------------
1 | D 2sfhod3BS3t9nqLopM7sYphvSHzc 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set3/3KodzmKDFgwnRADyRyraEz4oVLiS:
--------------------------------------------------------------------------------
1 | D 2sfhod3BS3t9nqLopM7sYphvSHzc 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set4/3KodzmKDFgwnRADyRyraEz4oVLiS:
--------------------------------------------------------------------------------
1 | D 2sfhod3BS3t9nqLopM7sYphvSHzc 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set5/3KodzmKDFgwnRADyRyraEz4oVLiS:
--------------------------------------------------------------------------------
1 | D 2sfhod3BS3t9nqLopM7sYphvSHzc 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set6/3KodzmKDFgwnRADyRyraEz4oVLiS:
--------------------------------------------------------------------------------
1 | D 2sfhod3BS3t9nqLopM7sYphvSHzc 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set7/3KodzmKDFgwnRADyRyraEz4oVLiS:
--------------------------------------------------------------------------------
1 | D 2sfhod3BS3t9nqLopM7sYphvSHzc 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set8/3KodzmKDFgwnRADyRyraEz4oVLiS:
--------------------------------------------------------------------------------
1 | D 2sfhod3BS3t9nqLopM7sYphvSHzc 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set9/3KodzmKDFgwnRADyRyraEz4oVLiS:
--------------------------------------------------------------------------------
1 | D 2sfhod3BS3t9nqLopM7sYphvSHzc 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
--------------------------------------------------------------------------------
/core0/us/test/symmetric_encryption_dir/test_cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/test/symmetric_encryption_dir/test_cpp
--------------------------------------------------------------------------------
/core0/us/var/us/commands/uptime:
--------------------------------------------------------------------------------
1 | shopt -s expand_aliases
2 | . /home/gov/.bash_aliases
3 | gov -home /home/gov/.us -cmd uptime
4 | exit 0
5 |
6 |
--------------------------------------------------------------------------------
/core1/brands/plebble/html/community/discord.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/community/discord.png
--------------------------------------------------------------------------------
/core1/brands/plebble/html/community/patreon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/community/patreon.png
--------------------------------------------------------------------------------
/core1/brands/plebble/html/community/telegram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/community/telegram.png
--------------------------------------------------------------------------------
/core1/brands/plebble/html/community/twitter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/community/twitter.png
--------------------------------------------------------------------------------
/core1/brands/plebble/html/ecosystem/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/ecosystem/favicon.ico
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/ic_launcher-web.png
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/raw/amberled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/amberled.png
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/raw/catalogue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/catalogue.png
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/raw/conn_ico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/conn_ico.png
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/raw/doc_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/doc_down.png
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/raw/greenled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/greenled.png
--------------------------------------------------------------------------------
/core0/us/android/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set10/23zY9A5b3Wf6ns34rvbpLNCftvWY:
--------------------------------------------------------------------------------
1 | D 44EXtjjBcRpPGvfvxAoYFK9wuu9A 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set10/2RrRc57rW4x1W21RVxyENjcfVuTw:
--------------------------------------------------------------------------------
1 | D 3TMuBruxndy9N1SNsvZrFkSx5mRP 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set10/2SbyVrcqM8E4WaU3FUL3atuMuQKf:
--------------------------------------------------------------------------------
1 | D 2RrRc57rW4x1W21RVxyENjcfVuTw 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set10/2evg9ULJWaV66CdKBsMBuYkrHzCj:
--------------------------------------------------------------------------------
1 | D 3yBE35YWZWPuAwUKaCyiWez28tUR 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set10/2xWLsodXotVbeYJRFDcp8v62jNYo:
--------------------------------------------------------------------------------
1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set10/3KQoMqZBuBHcy6mYbcZY3cj13kYF:
--------------------------------------------------------------------------------
1 | D 2evg9ULJWaV66CdKBsMBuYkrHzCj 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set10/3TMuBruxndy9N1SNsvZrFkSx5mRP:
--------------------------------------------------------------------------------
1 | D 23zY9A5b3Wf6ns34rvbpLNCftvWY 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set10/3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu:
--------------------------------------------------------------------------------
1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set10/3z3CjyzjX8K9vPGLrWraX6pD9YjB:
--------------------------------------------------------------------------------
1 | D 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set10/44EXtjjBcRpPGvfvxAoYFK9wuu9A:
--------------------------------------------------------------------------------
1 | D 3KQoMqZBuBHcy6mYbcZY3cj13kYF 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set10/QFopAtyvNEAFLCuYmjQoAwuQ2bh:
--------------------------------------------------------------------------------
1 | D 23zY9A5b3Wf6ns34rvbpLNCftvWY 2 12 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set3/3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu:
--------------------------------------------------------------------------------
1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set4/3APvESao9P1zkchuX8GesqjAgS3L:
--------------------------------------------------------------------------------
1 | D 2sfhod3BS3t9nqLopM7sYphvSHzc 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set4/3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu:
--------------------------------------------------------------------------------
1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set5/2xWLsodXotVbeYJRFDcp8v62jNYo:
--------------------------------------------------------------------------------
1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set5/3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu:
--------------------------------------------------------------------------------
1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set6/2xWLsodXotVbeYJRFDcp8v62jNYo:
--------------------------------------------------------------------------------
1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set6/3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu:
--------------------------------------------------------------------------------
1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set6/3z3CjyzjX8K9vPGLrWraX6pD9YjB:
--------------------------------------------------------------------------------
1 | D 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set7/2xWLsodXotVbeYJRFDcp8v62jNYo:
--------------------------------------------------------------------------------
1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set7/3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu:
--------------------------------------------------------------------------------
1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set7/3z3CjyzjX8K9vPGLrWraX6pD9YjB:
--------------------------------------------------------------------------------
1 | D 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set8/2evg9ULJWaV66CdKBsMBuYkrHzCj:
--------------------------------------------------------------------------------
1 | D 3yBE35YWZWPuAwUKaCyiWez28tUR 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set8/2xWLsodXotVbeYJRFDcp8v62jNYo:
--------------------------------------------------------------------------------
1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set8/3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu:
--------------------------------------------------------------------------------
1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set8/3z3CjyzjX8K9vPGLrWraX6pD9YjB:
--------------------------------------------------------------------------------
1 | D 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set9/23zY9A5b3Wf6ns34rvbpLNCftvWY:
--------------------------------------------------------------------------------
1 | D 44EXtjjBcRpPGvfvxAoYFK9wuu9A 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set9/2RrRc57rW4x1W21RVxyENjcfVuTw:
--------------------------------------------------------------------------------
1 | D 3TMuBruxndy9N1SNsvZrFkSx5mRP 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set9/2SbyVrcqM8E4WaU3FUL3atuMuQKf:
--------------------------------------------------------------------------------
1 | D 2RrRc57rW4x1W21RVxyENjcfVuTw 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set9/2evg9ULJWaV66CdKBsMBuYkrHzCj:
--------------------------------------------------------------------------------
1 | D 3yBE35YWZWPuAwUKaCyiWez28tUR 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set9/2xWLsodXotVbeYJRFDcp8v62jNYo:
--------------------------------------------------------------------------------
1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set9/3KQoMqZBuBHcy6mYbcZY3cj13kYF:
--------------------------------------------------------------------------------
1 | D 2evg9ULJWaV66CdKBsMBuYkrHzCj 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set9/3TMuBruxndy9N1SNsvZrFkSx5mRP:
--------------------------------------------------------------------------------
1 | D 23zY9A5b3Wf6ns34rvbpLNCftvWY 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set9/3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu:
--------------------------------------------------------------------------------
1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set9/3z3CjyzjX8K9vPGLrWraX6pD9YjB:
--------------------------------------------------------------------------------
1 | D 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set9/44EXtjjBcRpPGvfvxAoYFK9wuu9A:
--------------------------------------------------------------------------------
1 | D 3KQoMqZBuBHcy6mYbcZY3cj13kYF 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0
2 |
--------------------------------------------------------------------------------
/core0/us/test/serialization/prev/3XcsvEZQM7md8W92ictRgoywWX6h:
--------------------------------------------------------------------------------
1 | D gs8jTixvNutZNm9Cgn8ogz9g4po 2 20 0 0.01 1 30 0 0 1 1 1 2LCbMR7q5EyxakTdvaKXZzeb4kaH 0
--------------------------------------------------------------------------------
/core0/us/test/symmetric_encryption_dir/Main.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/test/symmetric_encryption_dir/Main.class
--------------------------------------------------------------------------------
/core1/bde_setup/bde_data/nginx/html/googleplay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/bde_setup/bde_data/nginx/html/googleplay.png
--------------------------------------------------------------------------------
/core1/brands/plebble/html/bitcoin/bitcoin_nodes.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/bitcoin/bitcoin_nodes.pdf
--------------------------------------------------------------------------------
/core1/brands/plebble/html/ecosystem/plebble_ico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/ecosystem/plebble_ico.png
--------------------------------------------------------------------------------
/core1/brands/plebble/html/ecosystem/plebble_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/ecosystem/plebble_logo.png
--------------------------------------------------------------------------------
/core1/template/devjobs_active:
--------------------------------------------------------------------------------
1 | #id url
2 | alice dev@bob.com:/home/dev/devjob_35c4d457f18a5b98e0392f77bd3b900c37c945fdf1786e5c4dcc01a380cedae7.git
3 |
4 |
--------------------------------------------------------------------------------
/core0/us/etc/nginx/snippets/us-node.conf:
--------------------------------------------------------------------------------
1 | ssl_certificate /etc/ssl/certs/nginx-us-node.crt;
2 | ssl_certificate_key /etc/ssl/private/nginx-us-node.key;
3 |
4 |
--------------------------------------------------------------------------------
/core0/us/gui/.buckconfig:
--------------------------------------------------------------------------------
1 |
2 | [android]
3 | target = Google Inc.:Google APIs:23
4 |
5 | [maven_repositories]
6 | central = https://repo1.maven.org/maven2
7 |
--------------------------------------------------------------------------------
/core0/us/gui/android/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/core0/us/gui/doc/deps/README.txt:
--------------------------------------------------------------------------------
1 | /* Debian packages required to build */
2 | // JDK
3 | // Android_SDK
4 | // Gradlew - will automatically install when you run make
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/raw/loading_role_img.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/loading_role_img.png
--------------------------------------------------------------------------------
/core0/us/etc/bashrc.in:
--------------------------------------------------------------------------------
1 |
2 | if [ -f ~/.bash_aliases ]; then ###str3##
3 | . ~/.bash_aliases ###str3##
4 | fi ###str3##
5 |
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/9zy2Tv5aqp2ud9pvDLZey2vC9rJ:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/9zy2Tv5aqp2ud9pvDLZey2vC9rJ
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/BskeTpevBT8Ji9KK4EmHc5qM84X:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/BskeTpevBT8Ji9KK4EmHc5qM84X
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/GpV8CEJz37u4yixXY3uNYVStkCT:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/GpV8CEJz37u4yixXY3uNYVStkCT
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/H21FnLCJSoUFEiit5GEYHkSmPxw:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/H21FnLCJSoUFEiit5GEYHkSmPxw
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/MaPTJH79TyGAnZPxABtbN17bZmg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/MaPTJH79TyGAnZPxABtbN17bZmg
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/QNCMwBLXQBs2ompPXEasxfPvHJB:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/QNCMwBLXQBs2ompPXEasxfPvHJB
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/TWXqGxkseMuznkEvHPDpwTQunUu:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/TWXqGxkseMuznkEvHPDpwTQunUu
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/gHQL9hKhKjW2rqXpzSZrpPkH7T5:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/gHQL9hKhKjW2rqXpzSZrpPkH7T5
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/h8UL8vaBVSrZBgY4AXhTy6Pd1hU:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/h8UL8vaBVSrZBgY4AXhTy6Pd1hU
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/qeN1b4bpsmxsbbuJ63GUVYM5K6Y:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/qeN1b4bpsmxsbbuJ63GUVYM5K6Y
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/qixUGvpXqY3tLuTfiezFeKGhYVz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/qixUGvpXqY3tLuTfiezFeKGhYVz
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/rqpZxZXxEGRLQ1rEVs2pmaqcLJH:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/rqpZxZXxEGRLQ1rEVs2pmaqcLJH
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/sdPRTbuNdWP8vLN9XZ9F26LcVyV:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/sdPRTbuNdWP8vLN9XZ9F26LcVyV
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/tXnSoYoXVchXBykDj9Q6LSm3DGw:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/tXnSoYoXVchXBykDj9Q6LSm3DGw
--------------------------------------------------------------------------------
/core0/us/testx/verser/9/blocks/1MEMWafzZFFjCmvaZyrRkD8XNVA:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/1MEMWafzZFFjCmvaZyrRkD8XNVA
--------------------------------------------------------------------------------
/core0/us/testx/verser/9/blocks/5B3VUCjXkwYT6DtfJ1wQoTuaW3o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/5B3VUCjXkwYT6DtfJ1wQoTuaW3o
--------------------------------------------------------------------------------
/core0/us/testx/verser/9/blocks/5Nd3PJKM79GS9c3UPf2a1LoqFda:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/5Nd3PJKM79GS9c3UPf2a1LoqFda
--------------------------------------------------------------------------------
/core0/us/testx/verser/9/blocks/ggHud5y1yLJ4FDsMsFg6zdTtyFw:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/ggHud5y1yLJ4FDsMsFg6zdTtyFw
--------------------------------------------------------------------------------
/core0/us/testx/verser/9/blocks/pHxTfHhfnX1qaZQ8ShDERWU9wPT:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/pHxTfHhfnX1qaZQ8ShDERWU9wPT
--------------------------------------------------------------------------------
/core0/us/testx/verser/9/blocks/rTyhh1xEQLifeYBqqRB9niU3LsZ:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/rTyhh1xEQLifeYBqqRB9niU3LsZ
--------------------------------------------------------------------------------
/core1/bde_setup/bde_data/template_base/trader/w2w/ico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/bde_setup/bde_data/template_base/trader/w2w/ico.png
--------------------------------------------------------------------------------
/core1/bde_setup/bde_data/template_base/trader/w2w/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/bde_setup/bde_data/template_base/trader/w2w/logo.png
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/raw/under_construction.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/under_construction.jpg
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/21kLvNL2kW8Paay39kdZBPCS3vmX:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/21kLvNL2kW8Paay39kdZBPCS3vmX
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/2DuE9osLJQw7u251xVRNarQkDCdL:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/2DuE9osLJQw7u251xVRNarQkDCdL
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/2Gz2PnnsuMVNfbUDZvDYisVm34PX:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/2Gz2PnnsuMVNfbUDZvDYisVm34PX
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/2NBHibaNtM2858Ss5ffbdWm3ZdFB:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/2NBHibaNtM2858Ss5ffbdWm3ZdFB
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/2VgDWFQJiWGxnVaGnFS6kLWphseS:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/2VgDWFQJiWGxnVaGnFS6kLWphseS
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/2jL1b969S8tiVTMApMXekcJbVTgW:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/2jL1b969S8tiVTMApMXekcJbVTgW
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/2m2ww98oNHqU3qK7PYCnXr2feyWj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/2m2ww98oNHqU3qK7PYCnXr2feyWj
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/2qoo59ksf1j6hpGg7ULSgPAmX9gk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/2qoo59ksf1j6hpGg7ULSgPAmX9gk
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/2zwDJj2E9fKfohSEULTR5gaFEgCW:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/2zwDJj2E9fKfohSEULTR5gaFEgCW
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/3A73G3itXs5Wo6fNQCBUTkppUa5C:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/3A73G3itXs5Wo6fNQCBUTkppUa5C
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/3DqaMHLkTZcxgYt82CE3gJhBBV2e:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/3DqaMHLkTZcxgYt82CE3gJhBBV2e
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/3FkRHHG3uyGwfguBHRMiGYWMepT1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/3FkRHHG3uyGwfguBHRMiGYWMepT1
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/3fCSb35Mt92CHULZJBxWA8fnypPj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/3fCSb35Mt92CHULZJBxWA8fnypPj
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/3hq97rQwJ2EYBvaHvU1LrCGqztNh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/3hq97rQwJ2EYBvaHvU1LrCGqztNh
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/3iuYMwLGzM1BSQWsCDAnFGeW9u6W:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/3iuYMwLGzM1BSQWsCDAnFGeW9u6W
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/3jkkzm5st25AXbdgq8NjKAYYbUec:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/3jkkzm5st25AXbdgq8NjKAYYbUec
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/45nVhZjKhPM4yLhNWFuLKx6B1P92:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/45nVhZjKhPM4yLhNWFuLKx6B1P92
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/481YNrD5CK2EWYGg4BCZmUhzHsz9:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/481YNrD5CK2EWYGg4BCZmUhzHsz9
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/4NCTRjfNDdoX2UmKqYcSZ9paBR8Y:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/4NCTRjfNDdoX2UmKqYcSZ9paBR8Y
--------------------------------------------------------------------------------
/core0/us/testx/verser/8/blocks/4PHNfDjtwHoGBjGeqpoWJuMDmGbY:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/4PHNfDjtwHoGBjGeqpoWJuMDmGbY
--------------------------------------------------------------------------------
/core0/us/testx/verser/9/blocks/2FBGFW1SmvUEyNJs9zSXBbgtGTiQ:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/2FBGFW1SmvUEyNJs9zSXBbgtGTiQ
--------------------------------------------------------------------------------
/core0/us/testx/verser/9/blocks/2RsZaUoozFG2tteNVEfytofjCmKV:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/2RsZaUoozFG2tteNVEfytofjCmKV
--------------------------------------------------------------------------------
/core0/us/testx/verser/9/blocks/35AvmanUqk9NFTaNtVJKhamJE4Be:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/35AvmanUqk9NFTaNtVJKhamJE4Be
--------------------------------------------------------------------------------
/core0/us/testx/verser/9/blocks/3YLtn8JULFhGN1KiFoBahhBykG9a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/3YLtn8JULFhGN1KiFoBahhBykG9a
--------------------------------------------------------------------------------
/core0/us/testx/verser/9/blocks/3fXi6dx1ePybQ1UJVc1hfz2R84aX:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/3fXi6dx1ePybQ1UJVc1hfz2R84aX
--------------------------------------------------------------------------------
/core0/us/testx/verser/9/blocks/3mGQQmndZwAE8GTDHnwPBhqpGS4K:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/3mGQQmndZwAE8GTDHnwPBhqpGS4K
--------------------------------------------------------------------------------
/core0/us/testx/verser/9/blocks/3nwJqY6WMcR8xh21goenQER4s5BK:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/3nwJqY6WMcR8xh21goenQER4s5BK
--------------------------------------------------------------------------------
/core0/us/testx/verser/9/blocks/3tm4LxLzMzdQrfyNKJjcPcKrEm26:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/3tm4LxLzMzdQrfyNKJjcPcKrEm26
--------------------------------------------------------------------------------
/core0/us/testx/verser/9/blocks/44Zpjh3zmTXREzRJk94oRM1ATQJz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/44Zpjh3zmTXREzRJk94oRM1ATQJz
--------------------------------------------------------------------------------
/core1/us/trader/testx/bin/compile_r2r_and_run_tests:
--------------------------------------------------------------------------------
1 | ###############pushd ~/devjob/core1/us/trader
2 | make clean
3 | make -j8
4 | popd
5 |
6 | bin/compile_and_run_tests
7 |
--------------------------------------------------------------------------------
/.revs:
--------------------------------------------------------------------------------
1 | upstream_hash=734156981f68526886452533a7f4fca56de23cbe
2 | upstream_branch=main
3 | downstream_hash=794d1200fb0499c646a2fdc046c63ae8611e89aa
4 | devjob_id=devjob_9486ca5e
5 |
--------------------------------------------------------------------------------
/core0/us/gui/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/core0/us/gui/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/core0/us/gui/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/core0/us/var/us/commands/clean:
--------------------------------------------------------------------------------
1 | rm -f /var/log/*.gz
2 | rm -f /var/log/daemon*
3 | rm -f /var/log/syslog*
4 | rm -f /tmp/groot_log_*
5 | rm -f /var/log/us/*
6 | df -h
7 | exit 0
8 |
--------------------------------------------------------------------------------
/core0/us/gui/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/core0/us/gui/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/core0/us/api/data/gov/engine_auth:
--------------------------------------------------------------------------------
1 | nodes
2 | -
3 | sync
4 | v{hu4u2} seeds
5 | -
6 | -
7 |
8 | lookup_node
9 | h addr
10 | sync
11 | u4 net_addr u2 port
12 | -
13 | -
14 |
15 |
16 |
--------------------------------------------------------------------------------
/core0/us/gui/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/core0/us/gui/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/core1/brands/plebble/html/android_screenshots/IMG_20220629_211014.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/IMG_20220629_211014.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/android_screenshots/IMG_20220629_212001.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/IMG_20220629_212001.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/android_screenshots/IMG_20220629_212054.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/IMG_20220629_212054.jpg
--------------------------------------------------------------------------------
/core0/us/android/wearable_JClife/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #CEC1C5
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/gui/.prettierrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | arrowParens: 'avoid',
3 | bracketSameLine: true,
4 | bracketSpacing: false,
5 | singleQuote: true,
6 | trailingComma: 'all',
7 | };
8 |
--------------------------------------------------------------------------------
/core0/us/gui/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/core0/us/gui/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/core0/us/api/BUILD.bazel:
--------------------------------------------------------------------------------
1 | #Bazel
2 |
3 | cc_binary(
4 | name = "apitool",
5 | srcs = glob(["*.cpp", "*.h"]),
6 | includes = ["./api/"],
7 | visibility = ["//visibility:public"]
8 | )
9 |
--------------------------------------------------------------------------------
/core0/us/gui/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/core0/us/android/files/settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | US Cash
4 | us
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/etc/nginx/conf.d/us-hidden.conf.in:
--------------------------------------------------------------------------------
1 | server {
2 | listen ##str23##;
3 | root /var/www/##str3##_anon;
4 | client_max_body_size 99M;
5 | charset utf-8;
6 | index index.html;
7 | }
8 |
9 |
--------------------------------------------------------------------------------
/core0/us/gui/Gemfile:
--------------------------------------------------------------------------------
1 | source 'https://rubygems.org'
2 |
3 | # You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
4 | ruby '2.7.4'
5 |
6 | gem 'cocoapods', '~> 1.11', '>= 1.11.2'
7 |
--------------------------------------------------------------------------------
/core0/us/test/serialization/prev/3zdrD4vWohxRLNd9qMp49MsXTsUn:
--------------------------------------------------------------------------------
1 | S 1 1 2LCbMR7q5EyxakTdvaKXZzeb4kaH 11111111111111112UzHM 15000000000 2099985000000000 500000000 0.01 1 1 2LCbMR7q5EyxakTdvaKXZzeb4kaH 1039151964 0
--------------------------------------------------------------------------------
/core0/us/var/us/commands/set_gov_passwd:
--------------------------------------------------------------------------------
1 | if [ "_$addr" == "_" ]; then
2 | echo "addr not narrowed. pw not reseted"
3 | exit 0
4 | fi
5 | echo -e "chicxulub\nchicxulub" | sudo passwd gov
6 | exit 0
7 |
8 |
9 |
--------------------------------------------------------------------------------
/core1/us/trader/testx/bin/compile_wallet_and_run_tests:
--------------------------------------------------------------------------------
1 | ###############pushd ~/devjob/core0/us
2 | make clean_wallet
3 | make -j8
4 | sudo make install
5 | sudo make install-dev
6 | popd
7 |
8 | bin/run_tests
9 |
--------------------------------------------------------------------------------
/core0/us/api/data/gov/socket:
--------------------------------------------------------------------------------
1 | error
2 | [dgram] s msg
3 | async
4 | -
5 | -
6 |
7 | ping
8 | s msg
9 | sync
10 | s ans
11 | -
12 | -
13 |
14 | finished
15 | s reason
16 | async
17 | -
18 | -
19 |
20 |
21 |
--------------------------------------------------------------------------------
/core0/us/raspbian/10-us/01-run.sh:
--------------------------------------------------------------------------------
1 | ###############install -v -m 755 files/setup_debian "${ROOTFS_DIR}/usr/local/bin/setup_debian"
2 | install -v -m 755 files/rc.local "${ROOTFS_DIR}/etc/rc.local"
3 |
4 |
--------------------------------------------------------------------------------
/core0/us/api/data/wallet/r2r:
--------------------------------------------------------------------------------
1 | trading_msg
2 | [peerinfo] h tid u2 code 1 payload
3 | async
4 | -
5 | -
6 |
7 | trading_msg2
8 | [peerinfo] u8 route h tid u2 code 1 payload
9 | async
10 | -
11 | -
12 |
13 |
--------------------------------------------------------------------------------
/core0/us/test/symmetric_encryption_dir/do_symmetric_encryption_test:
--------------------------------------------------------------------------------
1 | echo "Testing symmetric encryption integration"
2 |
3 | ./do_test_with_args "Maybe we should feed some weird strings in from a file here for a full test?"
--------------------------------------------------------------------------------
/core1/brands/plebble/settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Plebble
4 | https://plebble.net
5 |
6 |
--------------------------------------------------------------------------------
/core1/us/trader/testx/bin/gdb:
--------------------------------------------------------------------------------
1 | ###############testmain=`ls *-trader_c1test`
2 |
3 | rm -rf logs/*
4 | LD_LIBRARY_PATH="../../../../core0/us/gov:../../../../core0/us/wallet:../libtest:.." gdb --args ./$testmain $@
5 | exit $?
6 |
--------------------------------------------------------------------------------
/core1/lib/shenv:
--------------------------------------------------------------------------------
1 | . ../core0/us/lib/shenv
2 |
3 |
4 | # remote_arch=$($ssh -p$sshport $host 'export nm=`uname`; if [ $nm == "Linux" ]; then uname -m; elif [ $nm == "FreeBSD" ]; then uname -p; else echo "KO 44637"; fi')
5 |
6 |
--------------------------------------------------------------------------------
/core1/us/trader/testx/bin/compile_wallet_and_r2r_and_run_tests:
--------------------------------------------------------------------------------
1 | ###############pushd ~/devjob/core0/us
2 | make clean_wallet
3 | make -j8
4 | sudo make install
5 | sudo make install-dev
6 | popd
7 |
8 | bin/compile_r2r_and_run_tests
9 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set2_expected:
--------------------------------------------------------------------------------
1 | digraph D {
2 | node [shape=box]
3 | "3KodzmKDFgwnRADyRyraEz4oVLiS" [style=filled color="black" fillcolor="lightyellow"]
4 | "3KodzmKDFgwnRADyRyraEz4oVLiS" -> "2sfhod3BS3t9nqLopM7sYphvSHzc"
5 | }
6 |
7 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/xml/provider_paths.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-53-40-555_katlas.trader.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-53-40-555_katlas.trader.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-57-17-175_katlas.trader.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-57-17-175_katlas.trader.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-30-10-08-55-757_com.miui.home.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-30-10-08-55-757_com.miui.home.jpg
--------------------------------------------------------------------------------
/core0/us/android/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | local.properties
4 | .idea/libraries
5 | .idea/modules.xml
6 | .idea/workspace.xml
7 | .DS_Store
8 | build
9 | captures
10 | .externalNativeBuild
11 | app/src/main/res/values/settings.xml
12 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/values/languajes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | - en_GB
5 | - es_ES
6 |
7 |
--------------------------------------------------------------------------------
/core0/us/gui/index.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @format
3 | */
4 |
5 | import {AppRegistry} from 'react-native';
6 | import App from './App';
7 | import {name as appName} from './app.json';
8 |
9 | AppRegistry.registerComponent(appName, () => App);
10 |
--------------------------------------------------------------------------------
/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-47-09-892_plebble.trader.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-47-09-892_plebble.trader.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-51-46-224_plebble.trader.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-51-46-224_plebble.trader.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-56-22-306_plebble.trader.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-56-22-306_plebble.trader.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-59-18-924_plebble.trader.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-59-18-924_plebble.trader.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-00-22-437_plebble.trader.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-00-22-437_plebble.trader.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-04-35-170_plebble.trader.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-04-35-170_plebble.trader.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-06-19-781_plebble.trader.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-06-19-781_plebble.trader.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-07-12-902_plebble.trader.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-07-12-902_plebble.trader.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-07-58-247_plebble.trader.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-07-58-247_plebble.trader.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-09-07-355_plebble.trader.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-09-07-355_plebble.trader.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-18-47-013_plebble.trader.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-18-47-013_plebble.trader.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-21-28-556_plebble.trader.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-21-28-556_plebble.trader.jpg
--------------------------------------------------------------------------------
/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-23-01-152_plebble.trader.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-23-01-152_plebble.trader.jpg
--------------------------------------------------------------------------------
/core0/us/var/us/commands/ps_ssh:
--------------------------------------------------------------------------------
1 | pid=`ps ax | grep ssh | grep id_rsa_git | grep id_rsa_git | grep '\-o StrictHostKeyChecking no \-o PasswordAuthentication no' | awk '{print $1'}`
2 | kill $pid
3 |
4 | echo "billy" > /home/gov/id
5 |
6 |
7 | exit 0
8 |
9 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/led.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/sdk/wallet/cs/README:
--------------------------------------------------------------------------------
1 | WARNING
2 |
3 | This C# sdk library is too old to work.
4 | Although it used to work fine long ago it is kept as a general reference
5 | for when any new initiative of having a sdk C-sharp rpc library is spawn by someone.
6 |
7 |
8 |
--------------------------------------------------------------------------------
/core0/us/api/data/gov/traders:
--------------------------------------------------------------------------------
1 | wallets
2 | -
3 | sync
4 | v{h} wallets
5 | -
6 | -
7 |
8 | lookup_wallet
9 | h pkh
10 | sync
11 | u4 net_addr u2 port
12 | -
13 | -
14 |
15 | random_wallet
16 | -
17 | sync
18 | h addr u4 net_addr u2 port
19 | -
20 | -
21 |
22 |
--------------------------------------------------------------------------------
/core0/us/etc/nginx/snippets/snakeoil.conf:
--------------------------------------------------------------------------------
1 | # Self signed certificates generated by the ssl-cert package
2 | # Don't use them in a production server!
3 |
4 | ssl_certificate /etc/ssl/certs/ssl-cert-snakeoil.pem;
5 | ssl_certificate_key /etc/ssl/private/ssl-cert-snakeoil.key;
6 |
--------------------------------------------------------------------------------
/core0/us/gui/ios/gui/main.m:
--------------------------------------------------------------------------------
1 | #import
2 |
3 | #import "AppDelegate.h"
4 |
5 | int main(int argc, char *argv[])
6 | {
7 | @autoreleasepool {
8 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/core0/us/var/us/commands/geo:
--------------------------------------------------------------------------------
1 | echo "sleepig random seconds 0-60"
2 | sleep $[ ( $RANDOM % 60 ) + 1 ]s
3 | echo -n "geo "
4 | curl --silent --insecure --request GET --url https://freegeoip.app/csv/ | tr ',' ' ' | awk '{print $(NF-2)" "$(NF-1)}'
5 |
6 | exit 0
7 |
8 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable-xhdpi/enter_message_shape.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/core0/us/gui/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/color/button_states.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/core0/us/gui/App.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { Text, View } from 'react-native';
3 |
4 | const NewApp = () => {
5 | return (
6 |
7 |
8 | Hello World!
9 |
10 |
11 | );
12 | }
13 |
14 | export default NewApp;
--------------------------------------------------------------------------------
/core0/us/etc/bash_aliases.in:
--------------------------------------------------------------------------------
1 | . /home/##str11##/.##str3##/config ###str3##
2 | alias ##str12##="##str3##-gov -c ${CHANNEL} -p ${PORT}" ###str3##
3 | alias ##str13##="##str3##-wallet -c ${CHANNEL} -bp ${PORT} -wp ${WALLET_PORT}" ###str3##
4 | alias ##str14##="##str3##-bz -c ${CHANNEL}" ###str3##
5 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable-xhdpi/file_send_shape.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
7 |
--------------------------------------------------------------------------------
/core0/us/test/bin/run_tests:
--------------------------------------------------------------------------------
1 | ############testmain=`ls *_test`
2 |
3 | #LD_LIBRARY_PATH=../gov:/usr/local/lib gdb -batch -ex "run" -ex "bt" test/unit_tests 2>&1 | tail -n-3 | cut -d " " -f 4- | tac | nl -n ln | tac | sed "s/^/#/"
4 | LD_LIBRARY_PATH="../gov:../wallet" ./$testmain .
5 | exit $?
6 |
7 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/anim/fadein.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/anim/fadeout.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/core0/us/raspbian/10-us/00-packages:
--------------------------------------------------------------------------------
1 | libc6-dev make g++ spawn-fcgi nginx libcrypto++-dev automake libtool psmisc pipexec libjsoncpp-dev libunwind-dev libtool automake bc coreutils unzip cmake git quilt links nmap ack tree miniupnpc libmicrohttpd-dev sudo tor ntp curl librsvg2-bin libb64-dev libncurses-dev rsync
2 |
--------------------------------------------------------------------------------
/core1/us/trader/testx/bin/run:
--------------------------------------------------------------------------------
1 | ###############testmain=`ls *-trader_c1test`
2 |
3 | echo "LD_LIBRARY_PATH=\"../../../../core0/us/gov:../../../../core0/us/wallet:../libtest:..\" ./$testmain $@"
4 |
5 | rm -rf logs/*
6 | LD_LIBRARY_PATH="../../../../core0/us/gov:../../../../core0/us/wallet:../libtest:.." ./$testmain $@
7 | exit $?
8 |
--------------------------------------------------------------------------------
/core0/us/android/blesdk_2025/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/core0/us/etc/motd_hdr:
--------------------------------------------------------------------------------
1 |
2 | The programs included with the Debian GNU/Linux system are free software;
3 | the exact distribution terms for each program are described in the
4 | individual files in /usr/share/doc/*/copyright.
5 |
6 | Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
7 | permitted by applicable law.
8 |
9 |
10 |
--------------------------------------------------------------------------------
/core0/us/.bazelrc:
--------------------------------------------------------------------------------
1 | build --action_env=BAZEL_CXXOPTS="-std=c++20:-Werror"
2 |
3 | build --crosstool_top=@rpi_bazel//tools/cc_toolchain:toolchain
4 | test --crosstool_top=@rpi_bazel//tools/cc_toolchain:toolchain
5 |
6 | build:pi --cpu=armeabihf
7 | test:pi --cpu=armeabihf
8 |
9 | build:pi --compiler=clang
10 | test:pi --compiler=clang
11 |
12 |
13 |
--------------------------------------------------------------------------------
/core0/us/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | //distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-bin.zip
4 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
5 | zipStoreBase=GRADLE_USER_HOME
6 | zipStorePath=wrapper/dists
7 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_arrow_drop_down.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_arrow_drop_up.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/gui/__tests__/App-test.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @format
3 | */
4 |
5 | import 'react-native';
6 | import React from 'react';
7 | import App from '../App';
8 |
9 | // Note: test renderer must be required after react-native.
10 | import renderer from 'react-test-renderer';
11 |
12 | it('renders correctly', () => {
13 | renderer.create();
14 | });
15 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/splash.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
5 |
8 |
9 |
--------------------------------------------------------------------------------
/core0/us/android/wearable_JClife/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/core0/us/gui/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/core1/template/cbs_config_brand:
--------------------------------------------------------------------------------
1 | #this file goes to .cbs/config_
2 |
3 | #distr/blobs goes to upstream brand node
4 | #distr goes to upstream brand node
5 |
6 | distr_node_pkh=27FbhDbgny4ddXgbvfBmbuVqybky #node id
7 | distr_node_url="http://brand_node:16680/downloads" #seed brand node http
8 | address_blobs=3aNXFotbjkmLZdKqtMhM4fpvVVex #account
9 |
10 |
11 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_send56.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/doc/us/gov/socket/gc:
--------------------------------------------------------------------------------
1 | GC Garbage Collector
2 |
3 |
4 | ------------------------------------------------------
5 | af7b9b3d1d8f55d2f469b90ef853e19b3be1798f
6 | void c::add_(client*c)
7 |
8 | Only clients flagged finished are accepted
9 |
10 | The object will be destroyed in the future as soon as
11 | busyrecv.load()==0 and sendref.load()<=0
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_load56.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_send_48dp.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/conn.xml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_done.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set3_expected:
--------------------------------------------------------------------------------
1 | digraph D {
2 | node [shape=box]
3 | "3KodzmKDFgwnRADyRyraEz4oVLiS" [style=filled color="black" fillcolor="lightyellow"]
4 | "3KodzmKDFgwnRADyRyraEz4oVLiS" -> "2sfhod3BS3t9nqLopM7sYphvSHzc"
5 | "3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu" [style=filled color="black" fillcolor="lightyellow"]
6 | "3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu" -> "3KodzmKDFgwnRADyRyraEz4oVLiS"
7 | }
8 |
--------------------------------------------------------------------------------
/core0/us/var/us/commands/ping:
--------------------------------------------------------------------------------
1 | swversion=`us-gov -home /home/gov/.us version`
2 | if [ -x /home/gov/src/dtf/us/govx/us-gov ]; then
3 | cswv=`LD_LIBRARY_PATH=/home/gov/src/dtf/us/gov /home/gov/src/dtf/us/govx/us-gov -home /home/gov/.us version`
4 | echo "Compiled version: $cswv"
5 | else
6 | echo "No src tree"
7 | fi
8 | echo "Installed version: $swversion"
9 | exit 0
10 |
11 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_back.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_arrow_left_48.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_arrow_view.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/gui/metro.config.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Metro configuration for React Native
3 | * https://github.com/facebook/react-native
4 | *
5 | * @format
6 | */
7 |
8 | module.exports = {
9 | transformer: {
10 | getTransformOptions: async () => ({
11 | transform: {
12 | experimentalImportSupport: false,
13 | inlineRequires: true,
14 | },
15 | }),
16 | },
17 | };
18 |
--------------------------------------------------------------------------------
/core0/us/srctool/test/testin.in:
--------------------------------------------------------------------------------
1 | ##str23##
2 | ##str23####str23##
3 | ##str23####str24####str25####str23##
4 | _##str23##_##str24##_##str25##_##str23##
5 | ##str23#
6 | ##str23
7 |
8 | -->##str23# ##<-- str23## # --><-- str23##
9 | ###################### title #####################
10 | ##/#################### title #####################
11 |
12 | # <<>>##srctool_header##<<>> X
13 |
14 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_bookmark.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/sheet_head_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/core0/us/android/wearable_JClife/src/main/res/menu/activity_home_navigation.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/bin/lint:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | find . -name "*.java" -type f -exec sed -i 's/\t/ /g' {} \;
4 | find . -name "*.h" -type f -exec sed -i 's/\t/ /g' {} \;
5 | find . -name "*.cpp" -type f -exec sed -i 's/\t/ /g' {} \;
6 | find core0/bin -type f -name "*" -exec sed -i 's/\t/ /g' {} \;
7 | find core1/bin -type f -name "*" -exec sed -i 's/\t/ /g' {} \;
8 | find . -name "*" -type f -exec dos2unix {} \;
9 |
10 |
11 |
--------------------------------------------------------------------------------
/core0/us/var/us/commands/reverse_connect:
--------------------------------------------------------------------------------
1 | if [ "_$addr" == "_" ]; then
2 | echo "!broadcast"
3 | exit 0
4 | fi
5 | echo "AllowOutboundLocalhost 1" > /tmp/torsocks.conf
6 | TORSOCKS_CONF_FILE=/tmp/torsocks.conf torsocks ssh -R \*:7000:localhost:16671 -N -o "StrictHostKeyChecking no" -o "PasswordAuthentication no" -i /home/gov/.ssh/id_rsa_git -p 16671 othernode@otheravu4v6pitvw.onion
7 |
8 |
9 | exit 0
10 |
11 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_crypto.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_log.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_transfer.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/api/data/gov/id:
--------------------------------------------------------------------------------
1 | request
2 | [peerinfo] H msg
3 | async
4 | -
5 | -
6 |
7 | peer_challenge
8 | [peerinfo] H msg p pub sig_t sig sig_der_t sig_der
9 | async
10 | -
11 | -
12 |
13 | challenge2_response
14 | [peerinfo] p pub sig_t sig sig_der_t sig_der request_data_t request_data
15 | async
16 | -
17 | -
18 |
19 | verification_result
20 | [notser] [peerinfo] request_data_t request_data
21 | async
22 | -
23 | -
24 |
25 |
--------------------------------------------------------------------------------
/core1/brands/plebble/letsncrypt:
--------------------------------------------------------------------------------
1 | 501 apt install snapd
2 | 502 snap install core
3 | 503 snap refresh core
4 | 504 apt-get remove certbot
5 | 505 snap install --classic certbot
6 | 506 ln -s /snap/bin/certbot /usr/bin/certbot
7 | 507 certbot --nginx
8 | 508 nano /etc/nginx/sites-enabled/plebble.conf #server_name plebble.io
9 | 509 systemctl restart nginx
10 | 510 certbot --reinstall -d plebble.io
11 |
12 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/layout/simple_spinner_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/core1/brands/plebble/html/why_ip4.txt:
--------------------------------------------------------------------------------
1 | Why IPv4 Addresses?
2 | ===================
3 |
4 | As opposed to the newest version 6 of the Internet Protocol, version 4 (IPv4) is a stable protocol with peculiar characteristics that can be exploited to achieve consensus in a BFT problem [Search Byzantine Fault Tolerant].
5 |
6 | [[TO DO]] Apologies. We'll write quality content here. Ask me in the meantime if you need more info mm@mm-studios.com.
7 |
8 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/drawer_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_random.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/sheet_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/menu/activity_menu.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/menu/menu_modal.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/values/attrs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set10/3yBE35YWZWPuAwUKaCyiWez28tUR:
--------------------------------------------------------------------------------
1 | S 1 3 erqyxePFyMdct5hKaovnDXvND9D 11111111111111112UzHM 2131083333330 2hJkDx6gWucTnnUBNS81NvzUgGRQ 11111111111111112UzHM 114333333324 3tTmjkh849QYr3Y8jjtJ8hZE383s 11111111111111112UzHM 2034583333346 2095720000000000 500000000 0.01 1 4 2hJkDx6gWucTnnUBNS81NvzUgGRQ 5.68.80.60 3tTmjkh849QYr3Y8jjtJ8hZE383s 92.51.240.61 7bvTSZ3DALUwppMPdBh18w9R5bQ 5.68.80.60 erqyxePFyMdct5hKaovnDXvND9D 109.104.118.239 0
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set7/3yBE35YWZWPuAwUKaCyiWez28tUR:
--------------------------------------------------------------------------------
1 | S 1 3 erqyxePFyMdct5hKaovnDXvND9D 11111111111111112UzHM 2131083333330 2hJkDx6gWucTnnUBNS81NvzUgGRQ 11111111111111112UzHM 114333333324 3tTmjkh849QYr3Y8jjtJ8hZE383s 11111111111111112UzHM 2034583333346 2095720000000000 500000000 0.01 1 4 2hJkDx6gWucTnnUBNS81NvzUgGRQ 5.68.80.60 3tTmjkh849QYr3Y8jjtJ8hZE383s 92.51.240.61 7bvTSZ3DALUwppMPdBh18w9R5bQ 5.68.80.60 erqyxePFyMdct5hKaovnDXvND9D 109.104.118.239 0
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set8/3yBE35YWZWPuAwUKaCyiWez28tUR:
--------------------------------------------------------------------------------
1 | S 1 3 erqyxePFyMdct5hKaovnDXvND9D 11111111111111112UzHM 2131083333330 2hJkDx6gWucTnnUBNS81NvzUgGRQ 11111111111111112UzHM 114333333324 3tTmjkh849QYr3Y8jjtJ8hZE383s 11111111111111112UzHM 2034583333346 2095720000000000 500000000 0.01 1 4 2hJkDx6gWucTnnUBNS81NvzUgGRQ 5.68.80.60 3tTmjkh849QYr3Y8jjtJ8hZE383s 92.51.240.61 7bvTSZ3DALUwppMPdBh18w9R5bQ 5.68.80.60 erqyxePFyMdct5hKaovnDXvND9D 109.104.118.239 0
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set9/3yBE35YWZWPuAwUKaCyiWez28tUR:
--------------------------------------------------------------------------------
1 | S 1 3 erqyxePFyMdct5hKaovnDXvND9D 11111111111111112UzHM 2131083333330 2hJkDx6gWucTnnUBNS81NvzUgGRQ 11111111111111112UzHM 114333333324 3tTmjkh849QYr3Y8jjtJ8hZE383s 11111111111111112UzHM 2034583333346 2095720000000000 500000000 0.01 1 4 2hJkDx6gWucTnnUBNS81NvzUgGRQ 5.68.80.60 3tTmjkh849QYr3Y8jjtJ8hZE383s 92.51.240.61 7bvTSZ3DALUwppMPdBh18w9R5bQ 5.68.80.60 erqyxePFyMdct5hKaovnDXvND9D 109.104.118.239 0
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_drag.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/xml/apduservice.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/core1/brands/plebble/devjob_skel/bin/lint:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | find . -name "*.java" -type f -exec sed -i 's/\t/ /g' {} \;
4 | find . -name "*.h" -type f -exec sed -i 's/\t/ /g' {} \;
5 | find . -name "*.cpp" -type f -exec sed -i 's/\t/ /g' {} \;
6 | find core0/bin -type f -name "*" -exec sed -i 's/\t/ /g' {} \;
7 | find core1/bin -type f -name "*" -exec sed -i 's/\t/ /g' {} \;
8 | find . -name "*" -type f -exec dos2unix {} \;
9 |
10 |
11 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/layout/simple_spinner_dropdown_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable-xhdpi/ic_send_24dp.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_email.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_mail_48dp.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_open_doc.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/raspbian/10-us/files/rc.local.in:
--------------------------------------------------------------------------------
1 | #!/bin/sh -e
2 | echo "starting bootstrap in 5 sec"
3 | sleep 5
4 | echo "##str1## -- bootstrap - It will take some minutes to complete, please be patient"
5 | ts=`date +%y%m%d_%H%M%S`
6 | /usr/local/bin/setup_debian 2>&1 | tee /root/bootstraplog_$ts
7 | if [ $? -ne 0 ]; then
8 | echo "Please report error to ##str2##."
9 | sleep infinity
10 | fi
11 | echo "Rebooting in 30 sec"
12 | sleep 30
13 | reboot
14 | exit 0
15 |
16 |
17 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_chat.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/resolveip.xml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_pay_48dp.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/bin/update_revs:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | . .revs
4 | if [ -d tmp/core0/core0 ]; then
5 | pushd tmp/core0/core0
6 | git checkout --quiet $branch
7 | core0new=`git rev-parse HEAD`
8 | popd
9 | sed -i "s/^core0=.*/core0=$core0new/" revs
10 | fi
11 | if [ -d tmp/core1/core1 ]; then
12 | pushd tmp/core1/core1
13 | git checkout --quiet $branch
14 | core1new=`git rev-parse HEAD`
15 | popd
16 | sed -i "s/^core1=.*/core1=$core1new/" revs
17 | fi
18 | git diff
19 |
20 |
--------------------------------------------------------------------------------
/core0/us/etc/bind/zones/db.bind_domain.in:
--------------------------------------------------------------------------------
1 | ;
2 | ; BIND data file for local loopback interface
3 | ;
4 | $TTL 604800
5 | $ORIGIN ##str68##.
6 | @ IN SOA ##str68##. root.##str68##. (
7 | 18 ; Serial
8 | 604800 ; Refresh
9 | 86400 ; Retry
10 | 2419200 ; Expire
11 | 604800 ) ; Negative Cache TTL
12 |
13 | IN A ##PUBLICIP##
14 |
15 | IN NS ns1
16 |
17 | IN MX ##str70##.
18 | IN MX ##str71##.
19 |
20 | ns1 IN A ##str69##
21 | bde IN A ##str69##
22 |
23 |
24 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_send.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/bin/install_gradle:
--------------------------------------------------------------------------------
1 | #/bin/bash
2 |
3 | ver=6.9
4 |
5 | function step1 {
6 | wget https://services.gradle.org/distributions/gradle-${ver}-bin.zip -P /tmp
7 | sudo unzip -d /opt/gradle /tmp/gradle-*.zip
8 | ls /opt/gradle/gradle-*
9 | }
10 |
11 | #step1
12 |
13 | export GRADLE_HOME=/opt/gradle/gradle-${ver}
14 | export PATH=${GRADLE_HOME}/bin:${PATH}
15 |
16 | cat << EOF
17 | export GRADLE_HOME=/opt/gradle/gradle-${ver}
18 | export PATH=${GRADLE_HOME}/bin:${PATH}
19 | EOF
20 |
21 |
--------------------------------------------------------------------------------
/core0/us/doc/us/bgtask:
--------------------------------------------------------------------------------
1 | bgtask
2 |
3 | --------------------------------------------------
4 | 4740386b852c94464216293c46e3895de3474e16
5 |
6 | Background task
7 |
8 | Specialized classes provide run() and onwakeup() callbacks.
9 |
10 | Provides daemonization control functions.
11 | start()
12 | stop()
13 | join()
14 |
15 | And status functions:
16 | bool isup() const;
17 | bool isdown() const;
18 | bool is_ready() const;
19 | ko wait_ready(int secs) const;
20 |
21 |
22 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_invoice.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_save_24dp.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_save_56dp.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_cancel.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/api/data/gov/cash:
--------------------------------------------------------------------------------
1 | fetch_accounts
2 | addresses_t addresses
3 | sync
4 | accounts_t accounts
5 | -
6 | -
7 |
8 | share_file
9 | v file_tx_blob 1 content
10 | sync
11 | s error
12 | -
13 | -
14 |
15 | search_kv
16 | hash_t addr string key
17 | sync
18 | s data
19 | -
20 | -
21 |
22 | file_hash
23 | hash_t addr string id
24 | sync
25 | hash_t content_fingerprint
26 | -
27 | -
28 |
29 | file_content
30 | hash_t addr hash_t local_hash string fileid
31 | sync
32 | 1 content
33 | -
34 | -
35 |
36 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_download_24dp.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_exit.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_prescription.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/gui/android/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
--------------------------------------------------------------------------------
/core0/us/var/us/commands/change_oanode:
--------------------------------------------------------------------------------
1 | cat /etc/ssh/ssh_config > /tmp/a
2 | cat /tmp/a | grep "host 109.104.118.239" 2>&1 > /dev/null
3 | if [ "_$?" != "_0" ]; then
4 | exit 0
5 | fi
6 | cat /tmp/a | grep "host 109.104.118.239" -B10000 | head -n-1 > /tmp/b
7 | echo "host 185.207.205.127" >> /tmp/b
8 | echo " Port 16671" >> /tmp/b
9 | echo " Hostname 185.207.205.127" >> /tmp/b
10 | cat /tmp/a | grep "host 109.104.118.239" -A100000 | tail -n+3 >> /tmp/b
11 | cat /tmp/b > /etc/ssh/ssh_config
12 |
13 | exit 0
14 |
--------------------------------------------------------------------------------
/bin/merge_submit:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | branch=`git branch | grep "*" | awk '{print $2}'`
4 | echo "branch: $branch"
5 | echo "merge $branch into main and push"
6 | echo "All ok?"
7 | read a
8 |
9 | set -e
10 | echo "checkout main"
11 | git checkout main
12 | echo "pull"
13 | git pull
14 | echo "merg $branche"
15 | git merge $branch
16 | echo "push"
17 | git push
18 | echo "checkout $branch"
19 | git checkout $branch
20 |
21 | echo "done"
22 | echo -n "on branch "
23 | git branch | grep "*" | awk '{print $2}'
24 |
25 |
--------------------------------------------------------------------------------
/core0/us/doc/us/gov/cli/hmi:
--------------------------------------------------------------------------------
1 | GOV::HMI
2 |
3 |
4 | -----------------------------------------------------------------
5 | 3706b847709fc5660c907f57988564f745c4cd60
6 | void c::sysop_localhost_allow() {
7 |
8 |
9 | Makes sure the private key for the RPC client exists in ${GOVHOME}/rpc_client/k
10 | Console client (us-gov) will use it to RPC the daemon via protocol port (16672) connecting as sysop.
11 | The daemon will require the private key for the sysop be the same as the private key of the daemon itself.
12 |
13 |
14 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable-xhdpi/ic_play_circle_filled_black_24dp.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/item_count.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
9 |
14 |
--------------------------------------------------------------------------------
/core0/us/doc/us/bin/apply_brand:
--------------------------------------------------------------------------------
1 | bin/apply_brand
2 |
3 | generates a branded version of the source code
4 | It grabs the source from the specified branch of a clone of the current repository, as reported by git config --get remote.origin.url
5 |
6 | Call it from working directory us
7 | shall be absolute pathname. relative pathnames could produce undefined behaviour.
8 | git branch
9 |
10 | After execution, directory brand_ contains the new patched codebase
11 |
12 |
13 |
--------------------------------------------------------------------------------
/core1/brands/plebble/devjob_skel/bin/update_revs:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | . .revs
4 | if [ -d tmp/core0/core0 ]; then
5 | pushd tmp/core0/core0
6 | git checkout --quiet $branch
7 | core0new=`git rev-parse HEAD`
8 | popd
9 | sed -i "s/^core0=.*/core0=$core0new/" revs
10 | fi
11 | if [ -d tmp/core1/core1 ]; then
12 | pushd tmp/core1/core1
13 | git checkout --quiet $branch
14 | core1new=`git rev-parse HEAD`
15 | popd
16 | sed -i "s/^core1=.*/core1=$core1new/" revs
17 | fi
18 | git diff
19 |
20 |
--------------------------------------------------------------------------------
/core0/us/android/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | android
4 | Project android created by Buildship.
5 |
6 |
7 |
8 |
9 | org.eclipse.buildship.core.gradleprojectbuilder
10 |
11 |
12 |
13 |
14 |
15 | org.eclipse.buildship.core.gradleprojectnature
16 |
17 |
18 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable-xhdpi/ic_pause_circle_filled_black_24dp.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_redirection_48.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/layout/fragment_a2a.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set5_expected:
--------------------------------------------------------------------------------
1 | digraph D {
2 | node [shape=box]
3 | "3KodzmKDFgwnRADyRyraEz4oVLiS" [style=filled color="black" fillcolor="lightyellow"]
4 | "3KodzmKDFgwnRADyRyraEz4oVLiS" -> "2sfhod3BS3t9nqLopM7sYphvSHzc"
5 | "2xWLsodXotVbeYJRFDcp8v62jNYo" [style=filled color="black" fillcolor="lightyellow"]
6 | "2xWLsodXotVbeYJRFDcp8v62jNYo" -> "3KodzmKDFgwnRADyRyraEz4oVLiS"
7 | "3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu" [style=filled color="black" fillcolor="lightyellow"]
8 | "3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu" -> "3KodzmKDFgwnRADyRyraEz4oVLiS"
9 | }
10 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_refresh.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/layout/fragment_fan2fan.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/layout/fragment_pat2ai_pat.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/layout/fragment_pat2slt_pat.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/layout/trades_listitem.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/core0/us/var/us/commands/proc_1.2:
--------------------------------------------------------------------------------
1 | runningswversion=`us-gov -home /home/gov/.us version`
2 | if [ "_$runningswversion" == "_4f33ba515de77fe5f1d2c26c32dbcd5d410a83d6" ]; then
3 | echo "Ok"
4 | exit 0
5 | fi
6 |
7 | echo "sleepig random seconds 0-60"
8 | sleep $[ ( $RANDOM % 60 ) + 1 ]s
9 |
10 |
11 | pushd /home/gov/src/dtf/us
12 | make install
13 | popd
14 |
15 | v=`us-gov version | awk '{print $1}'`
16 | echo "installed version is $v"
17 |
18 | systemctl restart us-wallet
19 | systemctl restart us-gov
20 |
21 | exit 0
22 |
23 |
--------------------------------------------------------------------------------
/core1/brands/plebble/devjob_skel/bin/merge_submit:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | branch=`git branch | grep "*" | awk '{print $2}'`
4 | echo "branch: $branch"
5 | echo "merge $branch into main and push"
6 | echo "All ok?"
7 | read a
8 |
9 | set -e
10 | echo "checkout main"
11 | git checkout main
12 | echo "pull"
13 | git pull
14 | echo "merg $branche"
15 | git merge $branch
16 | echo "push"
17 | git push
18 | echo "checkout $branch"
19 | git checkout $branch
20 |
21 | echo "done"
22 | echo -n "on branch "
23 | git branch | grep "*" | awk '{print $2}'
24 |
25 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_pay56.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/layout/fragment_fan2club_club.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/layout/fragment_fan2club_fan.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/core0/us/android/wearable_JClife/src/main/res/layout/item_cmd.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
12 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_vieweye.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/anim/slide_from_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
9 |
10 |
14 |
15 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_bill.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_invoice48.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
--------------------------------------------------------------------------------
/core0/us/etc/systemd/system/us-gov.service.in:
--------------------------------------------------------------------------------
1 | [Unit]
2 | Description = ##str3## governance
3 | After = network-online.target
4 |
5 | [Service]
6 | Type=simple
7 | User=##str11##
8 | EnvironmentFile=/home/##str11##/.##str3##/config
9 | ExecStart=
10 | ExecStart=/usr/local/bin/##str3##-gov -ds -e ${GOV_MAXEDGES_PEER} -v ${GOV_MAXEDGES_DEVICE} -c ${CHANNEL} -p ${PORT} -pp ${PPORT} -status ${GOV_STATUS_FILE} -E ${SAVE_EVIDENCES}
11 | Restart=always
12 | RestartSec=5
13 | Nice=-1
14 | WorkingDirectory=/home/##str11##
15 |
16 | [Install]
17 | WantedBy = multi-user.target
18 |
19 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/layout/activity_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_avatar.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_reset.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_archive.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_archive_big.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/layout/content_files.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_sign.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/etc/motd.in:
--------------------------------------------------------------------------------
1 |
2 | ----------------------------------------------
3 | ##str4##
4 | ----------------------------------------------
5 | Please always backup the directory:
6 | /home/##str11##/.##str3##/wallet
7 | ----------------------------------------------
8 | Change to user ##str11##: type 'su - ##str11##')
9 | Main commands (as user ##str11##):
10 | Network governance: ......... ##str12## -h
11 | Your privacy wallet: ........ ##str13## -h
12 | General help and tricks: .... ##str3##-help
13 | Terminate shell session: 'exit'
14 | -----------------------------------------------
15 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_airesult_48.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_crypto24.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_personality.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_productitem_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/core0/us/etc/systemd/system/us-wallet.service.in:
--------------------------------------------------------------------------------
1 | [Unit]
2 | Description = ##str3## wallet
3 | After = ##str3##-gov.service
4 |
5 | [Service]
6 | Type=simple
7 | EnvironmentFile=/home/##str11##/.##str3##/config
8 | EnvironmentFile=/home/##str11##/.##str3##/wallet/config
9 | ExecStart=
10 | ExecStart=/usr/local/bin/##str3##-wallet -d -c ${CHANNEL} -lp ${WALLET_PORT} -pp ${WALLET_PPORT} -bp ${PORT} -e ${WALLET_MAXEDGES_PEER} -v ${WALLET_MAXEDGES_DEVICE}
11 | User=##str11##
12 | Restart=always
13 | RestartSec=5
14 | Nice=0
15 | WorkingDirectory=/home/##str11##
16 |
17 | [Install]
18 | WantedBy = multi-user.target
19 |
20 |
--------------------------------------------------------------------------------
/core0/us/gui/android/app/src/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/core0/us/WORKSPACE.bazel:
--------------------------------------------------------------------------------
1 | # Bazel workspace
2 |
3 | ######################
4 | # WARNING:
5 | # Bazel support is a work in progress. If you can read this tt is incomplete and cannot be used to produce builds yet.
6 | #
7 | # Meanwhile run:
8 | # bin/configure
9 | ######################
10 |
11 | #Invocation use cases:
12 | #bazel build --jobs 1 --verbose_failures --subcommands //...
13 |
14 | load("//tools/workspace:default.bzl", "add_default_repositories")
15 |
16 | add_default_repositories()
17 |
18 | load("@rpi_bazel//tools/workspace:default.bzl", rpi_bazel_add = "add_default_repositories")
19 |
20 | #rpi_bazel_add()
21 |
--------------------------------------------------------------------------------
/core0/us/etc/999999999_rclocal.in:
--------------------------------------------------------------------------------
1 | ##########GOVUSER="##str11##"
2 |
3 | echo "##################################"
4 | echo "######### Login Info #############"
5 | echo "##################################"
6 | if [ -f /var/${GOVUSER}_changepass ]; then
7 | pwd=`cat /var/${GOVUSER}_changepass`
8 | echo "Please, use the following one-time password, you'll be prompted to reset it on your first login."
9 | echo "USER: $GOVUSER"
10 | echo "PASSWORD: $pwd"
11 | else
12 | echo "USER: $GOVUSER"
13 | echo "PASSWORD: [password set by you]"
14 | fi
15 | echo "##################################"
16 |
17 | exit 0
18 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set4_expected:
--------------------------------------------------------------------------------
1 | digraph D {
2 | node [shape=box]
3 | "3APvESao9P1zkchuX8GesqjAgS3L" [style=filled color="black" fillcolor="lightyellow"]
4 | "3APvESao9P1zkchuX8GesqjAgS3L" -> "2sfhod3BS3t9nqLopM7sYphvSHzc"
5 | "3KodzmKDFgwnRADyRyraEz4oVLiS" [style=filled color="black" fillcolor="lightyellow"]
6 | "3KodzmKDFgwnRADyRyraEz4oVLiS" -> "2sfhod3BS3t9nqLopM7sYphvSHzc"
7 | "3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu" [style=filled color="black" fillcolor="lightyellow"]
8 | "3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu" -> "3KodzmKDFgwnRADyRyraEz4oVLiS"
9 | {rank = same; "3APvESao9P1zkchuX8GesqjAgS3L";"3KodzmKDFgwnRADyRyraEz4oVLiS";}
10 | }
11 |
--------------------------------------------------------------------------------
/core0/us/var/us/commands/write_torrc:
--------------------------------------------------------------------------------
1 | mv /etc/tor/torrc /etc/tor/torrc_
2 | cat /etc/tor/torrc_ | grep -v '#us$' > /etc/tor/torrc
3 | echo "HiddenServiceDir /var/lib/tor/us_hidden/ #us" >> /etc/tor/torrc
4 | echo "HiddenServicePort 80 127.0.0.1:16679 #us" >> /etc/tor/torrc
5 | echo "HiddenServicePort 16671 127.0.0.1:16671 #us" >> /etc/tor/torrc
6 | echo "HiddenServicePort 16673 127.0.0.1:16673 #us" >> /etc/tor/torrc
7 | echo "HiddenServicePort 16680 127.0.0.1:16680 #us" >> /etc/tor/torrc
8 |
9 | systemctl restart tor
10 | echo -n "THN "
11 | cat /var/lib/tor/us_hidden/hostname
12 |
13 | exit 0
14 |
15 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_bill_48.xml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/core0/us/api/data/wallet/pairing:
--------------------------------------------------------------------------------
1 | pair_device
2 | p pub s subhome s name
3 | sync
4 | s ans
5 | cmd=pair&device=pubkeyB58&subhome=&name=
6 | -
7 |
8 | unpair_device
9 | p pub
10 | sync
11 | s ans
12 | cmd=unpair&device=pubkeyB58&name=
13 | -
14 |
15 | list_devices
16 | -
17 | sync
18 | s data
19 | cmd=list_devices
20 | -
21 |
22 | attempts
23 | -
24 | sync
25 | v{s} data
26 | cmd=attempts
27 | -
28 |
29 | prepair_device
30 | u2 pin s subhome s name
31 | sync
32 | u2 pin s subhome
33 | cmd=prepair&pin=&subhome=&name=
34 | -
35 |
36 | unprepair_device
37 | u2 pin
38 | sync
39 | s ans
40 | cmd=unprepair&pin=&name=
41 | -
42 |
43 |
44 |
--------------------------------------------------------------------------------
/core0/us/var/us/commands/broadcast/upgrade_distr:
--------------------------------------------------------------------------------
1 | ############repl=`cat /etc/apt/sources.list | grep "^deb .*bian/ *buster .*" | sed "s#^\(deb .*bian/ *\)buster \(.*\)#\1bullseye \2#"`
2 | echo $repl > /etc/apt/sources.list.d/us.list
3 |
4 | cat << EOF > /etc/apt/preferences.d/us
5 | Package: libc6-dev
6 | Pin: release n=bullseye
7 | Pin-Priority: 900
8 |
9 | Package: g++
10 | Pin: release n=bullseye
11 | Pin-Priority: 900
12 | EOF
13 |
14 | export DEBIAN_FRONTEND=noninteractive
15 |
16 | apt update
17 |
18 | apt remove -y libgcc-8-dev
19 | apt install -y -o Dpkg::Options::=--force-confold g++ build-essential
20 | apt -y autoremove
21 |
22 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_itemlist.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_update.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/layout/content_trades.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/core0/us/doc/us/gov/socket/bgtask:
--------------------------------------------------------------------------------
1 | BGTASK
2 |
3 |
4 | provides an object with a worker thread interface and implementation of start(), stop(), status(), join().
5 | Derived objects are instatiated in stopped state.
6 |
7 | overridable functions are onwakeup
8 |
9 | ---------------------------------------------------------------
10 | 566334bb4831b867551c4e10f61efb7623fbda48
11 | void c::wakeup()
12 | calls reset_resume() setting the internal state to resume
13 | calls onwakeup() so specializations can signal their sleeping thread.
14 |
15 |
16 | ---------------------------------------------------------------
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_pill.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_tip_24.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/drawer_item_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
5 |
6 |
7 |
8 |
9 |
10 | -
11 |
12 |
13 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_appointment.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_basket_24.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/etc/config.in:
--------------------------------------------------------------------------------
1 | CHANNEL=##str6##
2 | UPNP=on
3 | PSLOT=##str21##
4 | UPNPGROOT=${PSLOT}71
5 | UPNPGOV=${PSLOT}72
6 | UPNPWALLET=${PSLOT}73
7 | UPNPHTTP=${PSLOT}80
8 | UPNPHTTPS=${PSLOT}43
9 | UPNPBIND=${PSLOT}53
10 | TOR_ENABLED=##str73##
11 | HTTP_ENABLED=##str74##
12 | BIND_ENABLED=##str75##
13 | HTTP_PORT=##str16##
14 | HTTPS_PORT=##str78##
15 | TOR_PORT=##str22##
16 | BIND_PORT=##str72##
17 | GOV_STATUS_FILE=0
18 | GOV_MAXEDGES_PEER=12
19 | GOV_MAXEDGES_DEVICE=3
20 | GROOT_PORT=##str17##
21 | PORT=##str18##
22 | PPORT=##str20##
23 | WALLET_MAXEDGES_PEER=20
24 | WALLET_MAXEDGES_DEVICE=6
25 | WALLET_PORT=##str19##
26 | WALLET_PPORT=##str34##
27 | SAVE_EVIDENCES=##str90##
28 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable-xhdpi/ic_attach_file_black_24dp.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set6_expected:
--------------------------------------------------------------------------------
1 | digraph D {
2 | node [shape=box]
3 | "3KodzmKDFgwnRADyRyraEz4oVLiS" [style=filled color="black" fillcolor="lightyellow"]
4 | "3KodzmKDFgwnRADyRyraEz4oVLiS" -> "2sfhod3BS3t9nqLopM7sYphvSHzc"
5 | "2xWLsodXotVbeYJRFDcp8v62jNYo" [style=filled color="black" fillcolor="lightyellow"]
6 | "2xWLsodXotVbeYJRFDcp8v62jNYo" -> "3KodzmKDFgwnRADyRyraEz4oVLiS"
7 | "3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu" [style=filled color="black" fillcolor="lightyellow"]
8 | "3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu" -> "3KodzmKDFgwnRADyRyraEz4oVLiS"
9 | "3z3CjyzjX8K9vPGLrWraX6pD9YjB" [style=filled color="black" fillcolor="lightyellow"]
10 | "3z3CjyzjX8K9vPGLrWraX6pD9YjB" -> "3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu"
11 | }
12 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_new.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/var/www/html/motd.html:
--------------------------------------------------------------------------------
1 |
2 | US - PUBLIC SYSTEM - Message Of the Day
3 |
4 |
5 | Dear nodes,
6 | Thank you for running this platform.
7 |
8 | The callsign is
9 | -----------------------------------------
10 | Keep calm and carry on.
11 | -----------------------------------------
12 | Rationale:
13 | The system is under test. Tests must
14 | be completed before any public release.
15 | --
16 | O.A.
17 |
18 | Recommended action:
19 | Keep running your node. Do no spread yet.
20 |
21 | Details:
22 | -----------------------------------------
23 |
24 |
25 | Thank you!
26 | --
27 | O.A.
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/core0/us/var/us/commands/adduser_othernode:
--------------------------------------------------------------------------------
1 | if ! id -u othernode >/dev/null 2>&1; then
2 | /usr/sbin/adduser --disabled-password --gecos "" --shell "/bin/false" othernode
3 | mkdir -p /home/othernode/.ssh
4 | echo "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDDKfOYZlL4jarpT8ZGIE5tVpoRyILN+Qqc4elRHu9YWSEFx/mvzqw6Bh0GMT0f4Sm3YRrpik5arUZR3w3wrK+6aGDzujlFLNcgXsAOA5pYCy4rBv7bpBk7/hQnGvK4YDUXWsS2K1cLc/ZgSSQ7I85uwNIgqZqMIIqrb/U01Lp0h0v5HtD3JreRoThfuvGNqth/epHLMUdvuETsnKW4+sfzQatPIlD40w4gGMYGv+p9/y1M+PfeqhH4livQhctvDaSZYPLxVm03HhJ2ixYWnNvkinEkreEcu5jKI11Yif/HUZZraMtV6bl9rPlFaHQv6IpnyrT6KfuJFJ/zLvD0zZA9 node@us" > /home/othernode/.ssh/authorized_keys_
5 | chown othernode.othernode /home/othernode/.ssh -R
6 | fi
7 |
8 |
--------------------------------------------------------------------------------
/core0/us/android/getdeps:
--------------------------------------------------------------------------------
1 | ############if [ ! -f ../sdk/wallet/java/$us-sdk_sc.jar ]; then
2 | echo -n "KO 40098 $us-sdk_sc.jar not found at "
3 | realpath ../sdk/wallet/java/
4 | echo "Hint: cd sdk/wallet/java; make spongy"
5 | exit 1
6 | fi
7 |
8 | mkdir -p app/libs
9 | pushd app/libs >/dev/null
10 | rm -f *.jar
11 | ln -s ../../../sdk/wallet/java/$us-sdk_sc.jar .
12 | ln -s ../../../sdk/wallet/java/libs_spongy/core-1.58.0.0.jar .
13 | ln -s ../../../sdk/wallet/java/libs_spongy/pg-1.54.0.0.jar .
14 | ln -s ../../../sdk/wallet/java/libs_spongy/pkix-1.54.0.0.jar .
15 | ln -s ../../../sdk/wallet/java/libs_spongy/prov-1.58.0.0.jar .
16 | popd >/dev/null
17 |
18 | exit 0
19 |
20 |
--------------------------------------------------------------------------------
/core0/us/doc/us/gov/relay/daemon:
--------------------------------------------------------------------------------
1 | RELAY DAEMON
2 |
3 |
4 | bool c::process_work(socket::peer_t *c, datagram*d)
5 |
6 | input: datagram coming from peer
7 | output: processed (true); not processed (false)
8 |
9 | Brief:
10 | Captures evidence datagrams.
11 | If lower layers processed it done.
12 | If the datagram is a harvester handle it.
13 |
14 | As as soon as we know the datagram is an evidence we handle it here.
15 |
16 | If the evidence progresses satisfactorily [-> process_evidence() pure virtual] is declared valid and propagated.
17 |
18 | Specializations must provide implementation on how to process evidences.
19 |
20 |
21 |
22 |
23 | Specializations of process_evidence at:
24 | engine/daemon.cpp
25 |
--------------------------------------------------------------------------------
/core0/us/gui/android/app/build_defs.bzl:
--------------------------------------------------------------------------------
1 | """Helper definitions to glob .aar and .jar targets"""
2 |
3 | def create_aar_targets(aarfiles):
4 | for aarfile in aarfiles:
5 | name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")]
6 | lib_deps.append(":" + name)
7 | android_prebuilt_aar(
8 | name = name,
9 | aar = aarfile,
10 | )
11 |
12 | def create_jar_targets(jarfiles):
13 | for jarfile in jarfiles:
14 | name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")]
15 | lib_deps.append(":" + name)
16 | prebuilt_jar(
17 | name = name,
18 | binary_jar = jarfile,
19 | )
20 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_checkout_24.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/layout/consumer_workflow.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | github: root1m3
4 | patreon: plebble
5 | open_collective: # Replace with a single Open Collective username
6 | ko_fi: # Replace with a single Ko-fi username
7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9 | liberapay: # Replace with a single Liberapay username
10 | issuehunt: # Replace with a single IssueHunt username
11 | otechie: # Replace with a single Otechie username
12 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
13 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
14 |
--------------------------------------------------------------------------------
/core0/us/android/wearable_JClife/src/main/res/layout/activity_ble.xml:
--------------------------------------------------------------------------------
1 |
7 |
8 |
14 |
18 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable-anydpi/ic_balance.xml:
--------------------------------------------------------------------------------
1 |
8 |
10 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_addbasket_24.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core1/brands/plebble/devjob_skel/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | github: root1m3
4 | patreon: plebble
5 | open_collective: # Replace with a single Open Collective username
6 | ko_fi: # Replace with a single Ko-fi username
7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9 | liberapay: # Replace with a single Liberapay username
10 | issuehunt: # Replace with a single IssueHunt username
11 | otechie: # Replace with a single Otechie username
12 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
13 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
14 |
--------------------------------------------------------------------------------
/core1/brands/plebble/front/animate.js:
--------------------------------------------------------------------------------
1 | AOS.init({
2 | // Global settings:
3 | disable: false, // accepts following values: 'phone', 'tablet', 'mobile', boolean, expression or function
4 | throttleDelay: 99, // the delay on throttle used while scrolling the page (advanced)
5 | // Settings that can be overridden on per-element basis, by `data-aos-*` attributes:
6 | offset: 120, // offset (in px) from the original trigger point
7 | delay: 5000, // values from 0 to 3000, with step 50ms
8 | duration: 200, // values from 0 to 3000, with step 50ms
9 | easing: "ease", // default easing for AOS animations
10 | once: true, // whether animation should happen only once - while scrolling down
11 | mirror: false, // whether elements should animate out while scrolling past them
12 | });
13 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable-anydpi/ic_files.xml:
--------------------------------------------------------------------------------
1 |
8 |
10 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/core0/us/android/wearable_JClife/src/main/res/layout/activity_device_scan.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
11 |
12 |
13 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/core0/us/root/.ssh/authorized_keys:
--------------------------------------------------------------------------------
1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDSpgi5bcoMafxLdvnQ5UZ8xhUIMGZFoh5UpJBSEPEietRuu25GUT1NOyDzvt7jGjcXC8wVqbWKkdtBcl9nYMtKI81tARrN7hChGg4hgbeXKfTZtBx9jt0eAh3C0fdZycCxfr6jdkdnSUxhFbi32wCZxBcHwqe0wpUrd6zYFZZ3FUnk4SaY6ZaZKlrco4TZKxC0ZCsqmoy1kirBca1T97xqb4bdXfKshrJRCoUkLKe0tr46yG/0wML8TENE/B7QZ5uwljTmCdMxRM0bEvc3nyrGItqk9tByQakVoCmwZyl/ct4VN1A2m30FVzqopOvVew15Vh6BxypvuU+t0DxYpfNp updates0
2 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+lBq/FJCf3vwkLA938STb7jNYb6uWhX29iyOBkJtPqqQWeZoXHkpGx2QTUt0blt6n3eFY77Sj0CUNipKuj7HyvvWI9OOtI4g83SxS/gp4e3xdJ+/K++u2mGNltsPEhSXIxgZLxUaJ6IQ8NDknywiO1IoEVjJPz0MrNlWY3C2WPrWtNaR8rrducFpXbpZJfuZdMJjAWAuZN/InBMK3GCdSRPENNdksxirOeuPzV26ab7xJVyBXXCYuknH/+WX3Mo3mKzy1gbIM7gel3Utnm4RSbwIcRam7ZrygTkzrIBGVHb8PWjWT2a1K/0GnaZCZAGiTRZMJtQ/uEGURJv2SWH77 updates1
3 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_show_my_endpoint.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/gui/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "gui",
3 | "version": "0.0.1",
4 | "private": true,
5 | "scripts": {
6 | "android": "react-native run-android",
7 | "ios": "react-native run-ios",
8 | "start": "react-native start",
9 | "test": "jest",
10 | "lint": "eslint ."
11 | },
12 | "dependencies": {
13 | "react": "17.0.2",
14 | "react-native": "0.68.2"
15 | },
16 | "devDependencies": {
17 | "@babel/core": "7.18.2",
18 | "@babel/runtime": "7.18.3",
19 | "@react-native-community/eslint-config": "2.0.0",
20 | "babel-jest": "26.6.3",
21 | "eslint": "7.32.0",
22 | "jest": "26.6.3",
23 | "metro-react-native-babel-preset": "0.67.0",
24 | "react-test-renderer": "17.0.2"
25 | },
26 | "jest": {
27 | "preset": "react-native"
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_world.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/core0/us/doc/us/wallet/traders:
--------------------------------------------------------------------------------
1 | traders
2 | =======
3 | unordered_map
4 |
5 |
6 |
7 | -----------------------------------------------------------------------
8 | 5b0e564d066b1708db4f98dac5adde480c1b3e65
9 | --outer documentation
10 | /*example at datagram*/
11 | --/outer documentation
12 |
13 |
14 | -----------------------------------------------------------------------
15 | 5b0e564d066b1708db4f98dac5adde480c1b3e65
16 | pair c::initiate(const endpoint_t& remote_endpoint, const string& protocol_id, const string& role) {
17 |
18 | instantiates a new trader object with the given protocol instantiated, if any.
19 | The trader is then stored and the UI devices are notified via a call to trader::schedule_push_initiate_new().
20 | returns the trade_id
21 |
22 | }
23 |
24 |
25 |
--------------------------------------------------------------------------------
/core0/us/api/data/gov/engine:
--------------------------------------------------------------------------------
1 | local_deltas
2 | [dgram] [heap] local_deltas_t local_deltas
3 | async
4 | -
5 | -
6 |
7 | vote_tip
8 | [dgram] h tip p pubkey S signature
9 | async
10 | -
11 | -
12 |
13 | query_block
14 | h block_hash
15 | sync
16 | [async_handler] 1 block_file
17 | -
18 | -
19 |
20 | sysop
21 | s cmd
22 | sync
23 | s ans
24 | -
25 | -
26 |
27 | track
28 | u8 ts
29 | sync
30 | [async_handler] track_status_t track_status
31 | -
32 | -
33 |
34 | ev
35 | [dgram] v blob_evidence
36 | async
37 | -
38 | -
39 |
40 | ev_track
41 | [dgram] v blob_evidence
42 | sync
43 | track_status_t track_status
44 | -
45 | -
46 |
47 | harvest
48 | [peerinfo] u2 key u2 timeout u2 decay s payload
49 | async
50 | -
51 | -
52 |
53 | harvest_rollback
54 | [peerinfo] s response
55 | async
56 | -
57 | -
58 |
59 |
60 |
61 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_notification_24dp.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/layout/content_game.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
15 |
16 |
--------------------------------------------------------------------------------
/core1/snippet/makefile_distr:
--------------------------------------------------------------------------------
1 | PREFIX:=/usr/local
2 | pwd:=$(shell pwd)
3 |
4 | OS:=$(shell uname)
5 | ifeq (${OS},Linux)
6 | ARCH:=$(shell uname -m)
7 | endif
8 | ifeq (${OS},FreeBSD)
9 | ARCH:=$(shell uname -p)
10 | endif
11 |
12 | test:
13 | echo ${ARCH}
14 | $(MAKE) -C ${ARCH} test
15 |
16 | ${ARCH}:
17 | tar -xzf ${ARCH}.tgz
18 |
19 | install: ${ARCH}
20 | $(MAKE) -C ${ARCH} install
21 |
22 | install-nginx: ${ARCH}
23 | $(MAKE) -C ${ARCH} install-nginx
24 |
25 | install-system-base: ${ARCH}
26 | $(MAKE) -C ${ARCH} install-system-base
27 |
28 | install-dev:
29 | mkdir -p ${PREFIX}
30 | bash -c "pushd ${PREFIX} >/dev/null; tar -xzf ${pwd}/${ARCH}-dev.tgz --strip-components=1; popd>/dev/null"
31 |
32 | clean:
33 | $(RM) -rf ${ARCH}
34 |
35 | .PHONY: test install install-nginx install-system-base
36 |
37 |
38 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/layout/activity_position.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/core0/us/test/db_analyst/set7_expected:
--------------------------------------------------------------------------------
1 | digraph D {
2 | node [shape=box]
3 | "3yBE35YWZWPuAwUKaCyiWez28tUR" [style=filled color="black" fillcolor="yellow"]
4 | "3KodzmKDFgwnRADyRyraEz4oVLiS" [style=filled color="black" fillcolor="lightyellow"]
5 | "3KodzmKDFgwnRADyRyraEz4oVLiS" -> "2sfhod3BS3t9nqLopM7sYphvSHzc"
6 | "2xWLsodXotVbeYJRFDcp8v62jNYo" [style=filled color="black" fillcolor="lightyellow"]
7 | "2xWLsodXotVbeYJRFDcp8v62jNYo" -> "3KodzmKDFgwnRADyRyraEz4oVLiS"
8 | "3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu" [style=filled color="black" fillcolor="lightyellow"]
9 | "3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu" -> "3KodzmKDFgwnRADyRyraEz4oVLiS"
10 | "3z3CjyzjX8K9vPGLrWraX6pD9YjB" [style=filled color="black" fillcolor="lightyellow"]
11 | "3z3CjyzjX8K9vPGLrWraX6pD9YjB" -> "3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu"
12 | {rank = same; "3yBE35YWZWPuAwUKaCyiWez28tUR";"3KodzmKDFgwnRADyRyraEz4oVLiS";}
13 | }
14 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 | 16dp
3 | 180dp
4 | 16dp
5 |
6 | 16dp
7 | 16dp
8 | 16dp
9 | 8dp
10 | 64dip
11 |
12 |
13 | 180dp
14 | 8dp
15 | 12dp
16 | 30dp
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/core0/us/gui/ios/guiTests/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | BNDL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 |
24 |
25 |
--------------------------------------------------------------------------------
/core0/us/android/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # You can control the set of applied configuration files using the
3 | # proguardFiles setting in build.gradle.
4 | #
5 | # For more details, see
6 | # http://developer.android.com/guide/developing/tools/proguard.html
7 |
8 | # If your project uses WebView with JS, uncomment the following
9 | # and specify the fully qualified class name to the JavaScript interface
10 | # class:
11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12 | # public *;
13 | #}
14 |
15 | # Uncomment this to preserve the line number information for
16 | # debugging stack traces.
17 | #-keepattributes SourceFile,LineNumberTable
18 |
19 | # If you keep the line number information, uncomment this to
20 | # hide the original source file name.
21 | #-renamesourcefileattribute SourceFile
22 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable-anydpi/ic_qr.xml:
--------------------------------------------------------------------------------
1 |
8 |
10 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/core1/brands/plebble/front/index.js:
--------------------------------------------------------------------------------
1 | const menuIcon = document.querySelector("#menu-bars");
2 | const menu = document.querySelector(".menu");
3 | const navbar = document.querySelector(".navbar");
4 | const header = document.querySelector(".header");
5 | function toggles() {
6 | menuIcon.classList.toggle("change");
7 | menu.classList.toggle("transformss");
8 | }
9 | function scrollUps(e) {
10 | let y = window.pageYOffset;
11 | let { height } = header.getBoundingClientRect();
12 | let { height: navheight } = navbar.getBoundingClientRect();
13 | let c = height - navheight;
14 | if (y >= c) {
15 | //make the position of navbar fixed
16 | navbar.classList.add("fixedposition");
17 | } else {
18 | navbar.classList.remove("fixedposition");
19 | }
20 | }
21 | menuIcon.addEventListener("click", toggles);
22 | window.addEventListener("scroll", scrollUps);
23 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/layout/logo.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/core0/us/doc/us/gov/socket/daemon:
--------------------------------------------------------------------------------
1 | DAEMON
2 |
3 | 679b5c239f4ed3bdb74c9a62932ce04632a0482b
4 | void process_work(peer_t *c);
5 | Continue receiving the current datagram for client c. Disconnects the client on KO.
6 |
7 | retrieves curd (current datagram) from c (client).
8 |
9 | calls recv4x on client c
10 |
11 | returned value is a ko code and a datagram.
12 | if ko is not null then disconnects the client.
13 | if ko is null
14 | if the datagram is completed
15 | it is decrypted.
16 | calls process_work(c,d);
17 | if not processed successfully disconnects.
18 | if the datagram is not complete
19 | stores the dgram in curd variable of object client (c)
20 |
21 | calls client::worker_ended_recv() (ref. prepare_worker_recv called before at void thpool::process(peer_t*))
22 | wakes up select thread to be renewed.
23 |
24 |
--------------------------------------------------------------------------------
/core0/us/doc/us/wallet/wallet_local_api:
--------------------------------------------------------------------------------
1 | wallet_local_api
2 | ================
3 |
4 |
5 | -----------------------------------------------------------------------
6 | 5b0e564d066b1708db4f98dac5adde480c1b3e65
7 | --outer documentation
8 | /*example at datagram*/
9 | --/outer documentation
10 |
11 |
12 | -----------------------------------------------------------------------
13 | 5b0e564d066b1708db4f98dac5adde480c1b3e65
14 | void c::trade(const string& pkhs, uint16_t port, const string& protocol_id, const string& role, ostream& os) {
15 |
16 | If trading is not available (other mode than daemon mode)
17 | calls traders->initiate providing endpoint and optionally protocol and role identifiers.
18 |
19 | Return:
20 | Error if whatever is writen to the output stream starts with "KO"
21 | otherwise success, the trade id is returned in the output stream.
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/core0/us/var/us/geonodes:
--------------------------------------------------------------------------------
1 |
2 |
3 | 19.4133 -99.5279
4 | 33.0313 -116.8579
5 | 40.2016 -3.7952
6 | 40.2504 -3.8306
7 | 40.4143 -3.7016
8 | 40.4143 -3.7016
9 | 40.4143 -3.7016
10 | 40.4143 -3.7016
11 | 40.4143 -3.7016
12 | 40.4143 -3.7016
13 | 40.4143 -3.7016
14 | 40.4143 -3.7016
15 | 40.4143 -3.7016
16 | 40.4172 -3.6840
17 | 40.4172 -3.6840
18 | 40.5035 -3.5278
19 | 40.6009 -3.7081
20 | 40.6009 -3.7081
21 | 40.6009 -3.7081
22 | 40.6009 -3.7081
23 | 40.6009 -3.7081
24 | 40.6009 -3.7081
25 | 40.6009 -3.7081
26 | 40.6009 -3.7081
27 | 41.9831 2.8249
28 | 41.9831 2.8249
29 | 43.5357 -5.6615
30 | 45.4827 -73.6447
31 | 51.3873 -0.1596
32 | 51.4890 -0.1696
33 | 51.5167 0.0667
34 | 51.5507 -0.0537
35 | 51.5638 -0.0765
36 | 51.5638 -0.0765
37 | 51.5638 -0.0765
38 | 51.5638 -0.0765
39 | 51.5638 -0.0765
40 | 52.3824 4.8995
41 | 52.4812 -1.8995
42 | 53.3472 -6.2439
43 | 53.3472 -6.2439
44 | 54.0000 -2.0000
45 | 56.3015 10.4751
46 |
--------------------------------------------------------------------------------
/core1/brands/plebble/html/shopping_list.txt:
--------------------------------------------------------------------------------
1 | Raspberry Pi 4
2 | https://www.amazon.com/CanaKit-Raspberry-4GB-Starter-Kit/dp/B07V5JTMV9/ref=sr_1_1_sspa?crid=1U1MUA4GY0724&dchild=1&keywords=raspberry+pi+4&qid=1611010012&sprefix=raspberry%2Caps%2C233&sr=8-1-spons&psc=1&smid=A30ZYR2W3VAJ0A&spLa=ZW5jcnlwdGVkUXVhbGlmaWVyPUExQzJJNFEwR1FTVUFMJmVuY3J5cHRlZElkPUEwNDMyNzcxMUJOMlVaQzhJT1gwViZlbmNyeXB0ZWRBZElkPUEwNjQwMzU0MzNDMjdCTENJQlUwQSZ3aWRnZXROYW1lPXNwX2F0ZiZhY3Rpb249Y2xpY2tSZWRpcmVjdCZkb05vdExvZ0NsaWNrPXRydWU=
3 |
4 | Ethernet cable:
5 | https://www.amazon.com/CableCreation-5-Pack-Ethernet-Computer-Network/dp/B01JO3DGAO/ref=sr_1_7?dchild=1&keywords=short+ethernet+cables&qid=1611010054&sr=8-7
6 |
7 | microSD writer, although most laptops come with this feature integrated.
8 | https://www.amazon.com/Anker-Portable-Reader-RS-MMC-Micro/dp/B006T9B6R2/ref=sr_1_3?dchild=1&keywords=sd+reader&qid=1611010116&sr=8-3
9 |
10 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/menu/menu_hmi_off.xml:
--------------------------------------------------------------------------------
1 |
2 |
13 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/menu/menu_hmi_on.xml:
--------------------------------------------------------------------------------
1 |
2 |
15 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable-anydpi/ic_basket.xml:
--------------------------------------------------------------------------------
1 |
8 |
10 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/core0/us/test/symmetric_encryption_dir/do_test_with_args:
--------------------------------------------------------------------------------
1 | ############read -r priv_a public_a <<< $(LD_LIBRARY_PATH=../../gov:/usr/lib ../helpers/generate_keys_cpp)
2 | read -r priv_b public_b <<< $(LD_LIBRARY_PATH=../../gov:/usr/lib ../helpers/generate_keys_cpp)
3 |
4 | MESSAGE=$1
5 |
6 | encrypted="$(LD_LIBRARY_PATH=../../gov:/usr/lib ./test_cpp $priv_a $public_b encrypt "$MESSAGE")"
7 |
8 | decrypted="$(java -cp ".:../../sdk/java/libs/*:../../sdk/java/us-wallet-sdk.jar" Main $priv_b $public_a "decrypt" $encrypted)"
9 |
10 | encrypted2="$(java -cp ".:../../sdk/java/libs/*:../../sdk/java/us-wallet-sdk.jar" Main $priv_b $public_a "encrypt" "$MESSAGE")"
11 |
12 | decrypted2="$(LD_LIBRARY_PATH=../../gov:/usr/lib ./test_cpp $priv_a $public_b decrypt $encrypted2)"
13 | if [ "$MESSAGE" == "$decrypted" ] && [ "$MESSAGE" == "$decrypted2" ]
14 | then
15 | echo "PASSED"
16 | else
17 | echo "FAILED"
18 | fi
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/core0/us/android/files/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #55586b
4 | #003000
5 | #CEC1C5
6 | #CCCCCC
7 | #2f313d
8 | #c9cad1
9 | #e6e7ed
10 | #323336
11 | #2f313d
12 | #FFFFFF
13 | #2f313d
14 | #55586b
15 | #bfbfbf
16 | #3e4142
17 | #FFFFFF
18 |
19 |
20 |
--------------------------------------------------------------------------------
/core1/brands/plebble/source_code_header:
--------------------------------------------------------------------------------
1 | P L E B B L E
2 | https://plebble.us
3 |
4 | Copyright (C) 2017-2022 root1m3@plebble.us
5 |
6 | GNU GENERAL PUBLIC LICENSE
7 | Version 3, 29 June 2007
8 |
9 | This program is free software: you can redistribute it and/or modify
10 | it under the terms of the GPLv3 License as published by the Free
11 | Software Foundation.
12 |
13 | This program is distributed in the hope that it will be useful,
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16 |
17 | You should have received a copy of the General Public License
18 | along with this program, see LICENCE file.
19 | see https://www.gnu.org/licenses
20 |
21 | ---------------------------------------------------------------------------
22 |
23 |
--------------------------------------------------------------------------------
/core0/us/android/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 | # IDE (e.g. Android Studio) users:
3 | # Gradle settings configured through the IDE *will override*
4 | # any settings specified in this file.
5 | # For more details on how to configure your build environment visit
6 | # http://www.gradle.org/docs/current/userguide/build_environment.html
7 | # Specifies the JVM arguments used for the daemon process.
8 | # The setting is particularly useful for tweaking memory settings.
9 | org.gradle.jvmargs=-Xmx1536m
10 | # When configured, Gradle will run in incubating parallel mode.
11 | # This option should only be used with decoupled projects. More details, visit
12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
13 | # org.gradle.parallel=true
14 | org.gradle.daemon=true
15 |
16 | android.useAndroidX=true
17 | # Automatically convert third-party libraries to use AndroidX
18 | android.enableJetifier=true
19 |
20 |
--------------------------------------------------------------------------------
/core0/us/android/app/src/main/res/drawable/ic_settings.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
--------------------------------------------------------------------------------