aa-ledger 1.0.3__py3-none-any.whl → 2.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {aa_ledger-1.0.3.dist-info → aa_ledger-2.0.0.dist-info}/METADATA +6 -6
- aa_ledger-2.0.0.dist-info/RECORD +267 -0
- {aa_ledger-1.0.3.dist-info → aa_ledger-2.0.0.dist-info}/WHEEL +1 -1
- ledger/__init__.py +2 -2
- ledger/admin.py +23 -18
- ledger/api/__init__.py +23 -7
- ledger/api/{ledger/admin.py → admin.py} +25 -31
- ledger/api/alliance.py +755 -0
- ledger/api/character.py +786 -0
- ledger/api/corporation.py +1141 -0
- ledger/api/{helpers.py → helpers/core.py} +33 -33
- ledger/api/helpers/icons.py +372 -0
- ledger/api/helpers/planetary_helper.py +354 -0
- ledger/api/planetary.py +354 -0
- ledger/api/schema.py +240 -15
- ledger/app_settings.py +18 -26
- ledger/auth_hooks.py +2 -2
- ledger/constants.py +50 -177
- ledger/decorators.py +2 -46
- ledger/forms.py +133 -39
- ledger/helpers/billboard.py +194 -144
- ledger/helpers/cache.py +105 -0
- ledger/helpers/discord.py +2 -4
- ledger/helpers/eveonline.py +160 -0
- ledger/helpers/ledger_data.py +23 -0
- ledger/helpers/ref_type.py +53 -78
- ledger/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- ledger/locale/cs_CZ/LC_MESSAGES/django.po +349 -193
- ledger/locale/de/LC_MESSAGES/django.mo +0 -0
- ledger/locale/de/LC_MESSAGES/django.po +528 -379
- ledger/locale/django.pot +717 -553
- ledger/locale/es/LC_MESSAGES/django.mo +0 -0
- ledger/locale/es/LC_MESSAGES/django.po +349 -194
- ledger/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
- ledger/locale/fr_FR/LC_MESSAGES/django.po +349 -193
- ledger/locale/it_IT/LC_MESSAGES/django.mo +0 -0
- ledger/locale/it_IT/LC_MESSAGES/django.po +349 -193
- ledger/locale/ja/LC_MESSAGES/django.mo +0 -0
- ledger/locale/ja/LC_MESSAGES/django.po +348 -193
- ledger/locale/ko_KR/LC_MESSAGES/django.mo +0 -0
- ledger/locale/ko_KR/LC_MESSAGES/django.po +349 -193
- ledger/locale/nl_NL/LC_MESSAGES/django.mo +0 -0
- ledger/locale/nl_NL/LC_MESSAGES/django.po +349 -193
- ledger/locale/pl_PL/LC_MESSAGES/django.mo +0 -0
- ledger/locale/pl_PL/LC_MESSAGES/django.po +350 -193
- ledger/locale/ru/LC_MESSAGES/django.mo +0 -0
- ledger/locale/ru/LC_MESSAGES/django.po +348 -193
- ledger/locale/sk/LC_MESSAGES/django.mo +0 -0
- ledger/locale/sk/LC_MESSAGES/django.po +348 -193
- ledger/locale/uk/LC_MESSAGES/django.mo +0 -0
- ledger/locale/uk/LC_MESSAGES/django.po +348 -193
- ledger/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
- ledger/locale/zh_Hans/LC_MESSAGES/django.po +348 -193
- ledger/managers/character_audit_manager.py +28 -20
- ledger/managers/character_journal_manager.py +187 -358
- ledger/managers/character_mining_manager.py +64 -30
- ledger/managers/character_planetary_manager.py +185 -138
- ledger/managers/corporation_audit_manager.py +36 -27
- ledger/managers/corporation_journal_manager.py +94 -57
- ledger/managers/general_manager.py +12 -8
- ledger/migrations/0018_remove_characterplanet_ledger_char_planet__58a5b6_idx_and_more.py +44 -0
- ledger/migrations/0019_rename_characteraudit_characterowner_and_more.py +48 -0
- ledger/models/__init__.py +5 -11
- ledger/models/characteraudit.py +101 -109
- ledger/models/corporationaudit.py +94 -49
- ledger/models/general.py +105 -211
- ledger/models/helpers/update_manager.py +302 -0
- ledger/models/planetary.py +60 -205
- ledger/providers.py +101 -0
- ledger/static/ledger/css/{ledger.css → aa-ledger.css} +54 -28
- ledger/static/ledger/js/aa-ledger.js +124 -0
- ledger/static/ledger/js/charts.js +25 -1
- ledger/static/ledger/js/view-alliance-ledger.js +383 -0
- ledger/static/ledger/js/view-character-ledger.js +388 -0
- ledger/static/ledger/js/view-corporation-ledger.js +402 -0
- ledger/static/ledger/js/view-planetary.js +492 -0
- ledger/static/ledger/libs/amCharts/5.14.4/js/flow.js +2 -0
- ledger/static/ledger/libs/amCharts/5.14.4/js/index.js +2 -0
- ledger/static/ledger/libs/amCharts/5.14.4/js/percent.js +2 -0
- ledger/static/ledger/libs/amCharts/5.14.4/js/themes/Animated.js +2 -0
- ledger/static/ledger/libs/amCharts/5.14.4/js/themes/Dark.js +2 -0
- ledger/static/ledger/libs/amCharts/5.14.4/js/xy.js +2 -0
- ledger/static/ledger/libs/datatables/2.3.5/css/dataTables.bootstrap5.css +610 -0
- ledger/static/ledger/libs/datatables/2.3.5/js/dataTables.bootstrap5.js +122 -0
- ledger/static/ledger/libs/datatables/2.3.5/js/dataTables.js +14127 -0
- ledger/static/ledger/libs/datatables/Extensions/ColumnControl/1.1.1/css/columnControl.bootstrap5.css +516 -0
- ledger/static/ledger/libs/datatables/Extensions/ColumnControl/1.1.1/css/columnControl.dataTables.css +529 -0
- ledger/static/ledger/libs/datatables/Extensions/ColumnControl/1.1.1/js/columnControl.bootstrap5.js +73 -0
- ledger/static/ledger/libs/datatables/Extensions/ColumnControl/1.1.1/js/dataTables.columnControl.js +3090 -0
- ledger/static/ledger/libs/datatables/Extensions/FixedHeader/4.0.4/css/fixedHeader.bootstrap5.css +20 -0
- ledger/static/ledger/libs/datatables/Extensions/FixedHeader/4.0.4/js/dataTables.fixedHeader.js +1203 -0
- ledger/static/ledger/libs/datatables/Extensions/FixedHeader/4.0.4/js/fixedHeader.bootstrap5.js +59 -0
- ledger/tasks.py +157 -146
- ledger/templates/ledger/base.html +59 -21
- ledger/templates/ledger/bundles/aa-ledger-css.html +3 -0
- ledger/templates/ledger/bundles/aa-ledger-js.html +3 -0
- ledger/templates/ledger/bundles/view-alliance-ledger-js.html +14 -0
- ledger/templates/ledger/bundles/view-character-ledger-js.html +15 -0
- ledger/templates/ledger/bundles/view-character-planetary-css.html +3 -0
- ledger/templates/ledger/bundles/view-character-planetary-js.html +4 -0
- ledger/templates/ledger/bundles/view-corporation-ledger-js.html +15 -0
- ledger/templates/ledger/partials/modal/confirm.html +0 -1
- ledger/templates/ledger/partials/modal/request-accept-delete-alliance.html +38 -0
- ledger/templates/ledger/partials/modal/request-accept-delete-character.html +38 -0
- ledger/templates/ledger/partials/modal/request-accept-delete-corporation.html +38 -0
- ledger/templates/ledger/partials/modal/request-accept-switch-notification.html +38 -0
- ledger/templates/ledger/partials/modal/request-view-alliance-details.html +26 -0
- ledger/templates/ledger/partials/modal/request-view-character-details.html +26 -0
- ledger/templates/ledger/partials/modal/request-view-corporation-details.html +26 -0
- ledger/templates/ledger/partials/modal/request-view-extractor.html +32 -0
- ledger/templates/ledger/partials/modal/request-view-factory.html +31 -0
- ledger/templates/ledger/partials/{menu → navigation}/administration.html +8 -0
- ledger/templates/ledger/partials/{menu → navigation}/navigation.html +2 -2
- ledger/templates/ledger/partials/{administration → view-alliance-administration}/alliance_corporations.html +3 -3
- ledger/templates/ledger/partials/view-alliance-administration/dashboard.html +81 -0
- ledger/templates/ledger/partials/view-alliance-ledger/alliance-billboard.html +25 -0
- ledger/templates/ledger/partials/view-alliance-ledger/alliance-ledger-details.html +21 -0
- ledger/templates/ledger/partials/view-alliance-ledger/alliance-table.html +24 -0
- ledger/templates/ledger/partials/view-alliance-ledger/information/daily.html +18 -0
- ledger/templates/ledger/partials/view-alliance-ledger/information/hourly.html +18 -0
- ledger/templates/ledger/partials/view-alliance-ledger/information/summary.html +19 -0
- ledger/templates/ledger/partials/{administration → view-character-administration}/character.html +1 -9
- ledger/templates/ledger/partials/{administration → view-character-administration}/dashboard.html +0 -34
- ledger/templates/ledger/partials/view-character-ledger/character-billboard.html +25 -0
- ledger/templates/ledger/partials/view-character-ledger/character-ledger-details.html +21 -0
- ledger/templates/ledger/partials/view-character-ledger/character-table.html +25 -0
- ledger/templates/ledger/partials/view-character-ledger/information/daily.html +18 -0
- ledger/templates/ledger/partials/view-character-ledger/information/hourly.html +18 -0
- ledger/templates/ledger/partials/view-character-ledger/information/summary.html +19 -0
- ledger/templates/ledger/partials/view-character-planetary/extractor-table.html +24 -0
- ledger/templates/ledger/partials/view-character-planetary/factory-table.html +24 -0
- ledger/templates/ledger/partials/view-character-planetary/planetary-table.html +22 -0
- ledger/templates/ledger/partials/view-character-planetary/storage-table.html +23 -0
- ledger/templates/ledger/partials/{administration → view-corporation-administration}/corporation.html +5 -13
- ledger/templates/ledger/partials/{administration → view-corporation-administration}/corporation_characters.html +1 -1
- ledger/templates/ledger/partials/view-corporation-administration/dashboard.html +81 -0
- ledger/templates/ledger/partials/view-corporation-ledger/corporation-billboard.html +25 -0
- ledger/templates/ledger/partials/view-corporation-ledger/corporation-ledger-details.html +21 -0
- ledger/templates/ledger/partials/view-corporation-ledger/corporation-table.html +26 -0
- ledger/templates/ledger/partials/view-corporation-ledger/information/daily.html +18 -0
- ledger/templates/ledger/partials/view-corporation-ledger/information/hourly.html +18 -0
- ledger/templates/ledger/partials/view-corporation-ledger/information/summary.html +19 -0
- ledger/templates/ledger/view-administration.html +62 -0
- ledger/templates/ledger/view-alliance-administration.html +49 -0
- ledger/templates/ledger/view-alliance-ledger.html +72 -0
- ledger/templates/ledger/view-alliance-overview.html +131 -0
- ledger/templates/ledger/view-character-administration.html +42 -0
- ledger/templates/ledger/view-character-ledger.html +73 -0
- ledger/templates/ledger/view-character-overview.html +135 -0
- ledger/templates/ledger/view-character-planetary-overview.html +135 -0
- ledger/templates/ledger/view-character-planetary.html +73 -0
- ledger/templates/ledger/view-corporation-administration.html +42 -0
- ledger/templates/ledger/view-corporation-ledger.html +73 -0
- ledger/templates/ledger/view-corporation-overview.html +131 -0
- ledger/templatetags/ledger.py +3 -5
- ledger/tests/__init__.py +187 -0
- ledger/tests/test_admin.py +164 -68
- ledger/tests/test_auth_hook.py +31 -13
- ledger/tests/test_decarators.py +14 -79
- ledger/tests/test_discord_installed.py +0 -1
- ledger/tests/test_helpers/test_ledger_data.py +19 -0
- ledger/tests/test_managers/test_character_audit_manager.py +111 -69
- ledger/tests/test_managers/test_character_journal_manager.py +48 -208
- ledger/tests/test_managers/test_character_mining_manager.py +37 -16
- ledger/tests/test_managers/test_corporation_division_manager.py +66 -28
- ledger/tests/test_managers/test_corporation_journal_manager.py +39 -42
- ledger/tests/test_managers/test_general_manager.py +78 -18
- ledger/tests/test_managers/test_planetary_manager.py +73 -32
- ledger/tests/test_models/test_characteraudit.py +58 -74
- ledger/tests/test_models/test_characterminingledger.py +20 -26
- ledger/tests/test_models/test_characterwalletjournal.py +10 -33
- ledger/tests/test_models/test_corporationaudit.py +41 -35
- ledger/tests/test_models/test_corporationwalletjournal.py +35 -32
- ledger/tests/test_models/test_general.py +44 -11
- ledger/tests/test_models/test_planetary.py +14 -80
- ledger/tests/test_templatetags.py +2 -7
- ledger/tests/test_views/corporation/test_add_corp.py +16 -35
- ledger/tests/test_views/corporation/test_delete_corporation.py +66 -42
- ledger/tests/test_views/test_access.py +512 -545
- ledger/tests/test_views/test_add_ally.py +57 -46
- ledger/tests/test_views/test_add_char.py +21 -33
- ledger/tests/test_views/test_delete_character.py +24 -21
- ledger/tests/testdata/README_ESI_STUB.md +430 -0
- ledger/tests/testdata/esi_stub_openapi.py +511 -0
- ledger/tests/testdata/integrations/__init__.py +0 -0
- ledger/tests/testdata/{load_eveuniverse.py → integrations/eveuniverse.py} +0 -1
- ledger/tests/testdata/integrations/planetary.py +13 -0
- ledger/tests/testdata/json/factory.json +281 -0
- ledger/tests/testdata/json/inactive.json +281 -0
- ledger/tests/testdata/json/pins.json +175 -272
- ledger/tests/testdata/json/route.json +95 -528
- ledger/tests/testdata/test_esi_stub.py +468 -0
- ledger/tests/testdata/utils.py +601 -0
- ledger/thirdparty/charlink_hook.py +60 -30
- ledger/urls.py +0 -135
- ledger/views/alliance/add_ally.py +2 -4
- ledger/views/alliance/alliance_ledger.py +64 -147
- ledger/views/character/add_char.py +8 -10
- ledger/views/character/character_ledger.py +60 -126
- ledger/views/character/planetary.py +5 -98
- ledger/views/corporation/add_corp.py +10 -12
- ledger/views/corporation/corporation_ledger.py +65 -327
- ledger/views/index.py +92 -30
- aa_ledger-1.0.3.dist-info/RECORD +0 -236
- ledger/api/api_helper/planetary_helper.py +0 -107
- ledger/api/ledger/__init__.py +0 -7
- ledger/api/ledger/planetary.py +0 -231
- ledger/helpers/alliance.py +0 -317
- ledger/helpers/character.py +0 -251
- ledger/helpers/core.py +0 -665
- ledger/helpers/corporation.py +0 -427
- ledger/helpers/data_exporter.py +0 -452
- ledger/static/ledger/js/planetary-confirm.js +0 -66
- ledger/static/ledger/js/planetary.js +0 -143
- ledger/templates/ledger/admin.html +0 -43
- ledger/templates/ledger/allyledger/admin/alliance_administration.html +0 -46
- ledger/templates/ledger/allyledger/admin/alliance_overview.html +0 -108
- ledger/templates/ledger/allyledger/alliance_ledger.html +0 -86
- ledger/templates/ledger/bundles/character-ledger-bundles.html +0 -66
- ledger/templates/ledger/bundles/corporation-ledger-bundles.html +0 -75
- ledger/templates/ledger/bundles/ledger-bundles.html +0 -23
- ledger/templates/ledger/bundles/ledger-css.html +0 -3
- ledger/templates/ledger/bundles/planetary-bundles.html +0 -50
- ledger/templates/ledger/bundles/table-css.html +0 -3
- ledger/templates/ledger/charledger/admin/character_administration.html +0 -39
- ledger/templates/ledger/charledger/admin/character_overview.html +0 -106
- ledger/templates/ledger/charledger/character_ledger.html +0 -94
- ledger/templates/ledger/charledger/planetary/admin/planetary_overview.html +0 -123
- ledger/templates/ledger/charledger/planetary/planetary_ledger.html +0 -54
- ledger/templates/ledger/corpledger/admin/corporation_administration.html +0 -39
- ledger/templates/ledger/corpledger/admin/corporation_overview.html +0 -108
- ledger/templates/ledger/corpledger/corporation_ledger.html +0 -129
- ledger/templates/ledger/data-export.html +0 -78
- ledger/templates/ledger/error.html +0 -31
- ledger/templates/ledger/partials/form/error-message.html +0 -1
- ledger/templates/ledger/partials/information/daily.html +0 -56
- ledger/templates/ledger/partials/information/day.html +0 -48
- ledger/templates/ledger/partials/information/error.html +0 -8
- ledger/templates/ledger/partials/information/hourly.html +0 -53
- ledger/templates/ledger/partials/information/summary.html +0 -88
- ledger/templates/ledger/partials/information/view_character_content.html +0 -35
- ledger/templates/ledger/partials/modal/switchalarm_confirm.html +0 -39
- ledger/templates/ledger/partials/modal/view_extractor.html +0 -48
- ledger/templates/ledger/partials/modal/view_factory.html +0 -123
- ledger/templates/ledger/partials/table/char-ledger.html +0 -85
- ledger/templates/ledger/partials/table/corp-ledger.html +0 -66
- ledger/templates/ledger/partials/table/planetary.html +0 -18
- ledger/templates/ledger/partials/thirdparty/billboard.html +0 -22
- ledger/templates/ledger/partials/view/card.html +0 -160
- ledger/templates/ledger/permission.html +0 -2
- ledger/tests/test_helpers/test_billboard.py +0 -11
- ledger/tests/test_helpers/test_data_exporter.py +0 -207
- ledger/tests/test_tasks.py +0 -282
- ledger/tests/test_view_helpers/test_core.py +0 -47
- ledger/tests/test_views/corporation/test_corporation.py +0 -267
- ledger/tests/test_views/test_planetary.py +0 -137
- ledger/tests/testdata/esi_stub.py +0 -109
- ledger/tests/testdata/esi_stub_migration.py +0 -80
- ledger/tests/testdata/generate_characteraudit.py +0 -106
- ledger/tests/testdata/generate_corporationaudit.py +0 -74
- ledger/tests/testdata/generate_events.py +0 -31
- ledger/tests/testdata/generate_miningledger.py +0 -13
- ledger/tests/testdata/generate_planets.py +0 -48
- ledger/tests/testdata/generate_walletjournal.py +0 -42
- ledger/tests/testdata/json/czarno-pins.json +0 -240
- ledger/tests/testdata/json/czarno-routes.json +0 -165
- ledger/tests/testdata/json/pins2.json +0 -538
- {aa_ledger-1.0.3.dist-info → aa_ledger-2.0.0.dist-info}/licenses/LICENSE +0 -0
- /ledger/{tests/test_view_helpers → api/helpers}/__init__.py +0 -0
- /ledger/templates/ledger/bundles/{ally-administration-bundles.html → view-alliance-administration-js.html} +0 -0
- /ledger/templates/ledger/bundles/{char-administration-bundles.html → view-character-administration-js.html} +0 -0
- /ledger/templates/ledger/bundles/{corp-administration-bundles.html → view-corporation-administration-js.html} +0 -0
- /ledger/templates/ledger/partials/{administration → view-alliance-administration}/alliance.html +0 -0
- /ledger/tests/testdata/{esi.json → esi_test_data.json} +0 -0
- /ledger/tests/testdata/{allianceauth.json → integrations/allianceauth.json} +0 -0
- /ledger/tests/testdata/{load_allianceauth.py → integrations/allianceauth.py} +0 -0
- /ledger/tests/testdata/{eveentity.json → integrations/eveentity.json} +0 -0
- /ledger/tests/testdata/{load_eveentity.py → integrations/eveentity.py} +0 -0
- /ledger/tests/testdata/{eveuniverse.json → integrations/eveuniverse.json} +0 -0
- /ledger/tests/testdata/{planetary.json → integrations/planetary.json} +0 -0
|
@@ -1,579 +1,146 @@
|
|
|
1
|
-
|
|
2
1
|
[
|
|
3
2
|
{
|
|
4
|
-
"content_type_id":
|
|
5
|
-
"destination_pin_id":
|
|
6
|
-
"quantity":
|
|
7
|
-
"route_id":
|
|
8
|
-
"source_pin_id":
|
|
9
|
-
"waypoints": [1043427927097, 1043429053914, 1043437196267]
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
"content_type_id": 3695,
|
|
13
|
-
"destination_pin_id": 1043445807024,
|
|
14
|
-
"quantity": 10.0,
|
|
15
|
-
"route_id": 1305571073,
|
|
16
|
-
"source_pin_id": 1043445807059,
|
|
17
|
-
"waypoints": [1043427927097, 1043429053914, 1043437196267, 1043437196271]
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
"content_type_id": 3695,
|
|
21
|
-
"destination_pin_id": 1043437196271,
|
|
22
|
-
"quantity": 10.0,
|
|
23
|
-
"route_id": 1305571074,
|
|
24
|
-
"source_pin_id": 1043445807059,
|
|
25
|
-
"waypoints": [1043427927097, 1043429053914, 1043437196267]
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"content_type_id": 3695,
|
|
29
|
-
"destination_pin_id": 1043445807030,
|
|
30
|
-
"quantity": 10.0,
|
|
31
|
-
"route_id": 1305571075,
|
|
32
|
-
"source_pin_id": 1043445807059,
|
|
33
|
-
"waypoints": [1043427927097, 1043429053914, 1043437196267, 1043437196271]
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"content_type_id": 3695,
|
|
37
|
-
"destination_pin_id": 1043445807027,
|
|
38
|
-
"quantity": 10.0,
|
|
39
|
-
"route_id": 1305571076,
|
|
40
|
-
"source_pin_id": 1043445807059,
|
|
3
|
+
"content_type_id": 2398,
|
|
4
|
+
"destination_pin_id": 1047902592935,
|
|
5
|
+
"quantity": 40.0,
|
|
6
|
+
"route_id": 1425619744,
|
|
7
|
+
"source_pin_id": 1047902592918,
|
|
41
8
|
"waypoints": [
|
|
42
|
-
|
|
43
|
-
1043429053914,
|
|
44
|
-
1043437196267,
|
|
45
|
-
1043437196271,
|
|
46
|
-
1043437196279
|
|
9
|
+
1047902592937
|
|
47
10
|
]
|
|
48
11
|
},
|
|
49
12
|
{
|
|
50
|
-
"content_type_id":
|
|
51
|
-
"destination_pin_id":
|
|
52
|
-
"quantity":
|
|
53
|
-
"route_id":
|
|
54
|
-
"source_pin_id":
|
|
55
|
-
"waypoints": [1043427927097, 1043429053914, 1043437196267, 1043437196271]
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"content_type_id": 3695,
|
|
59
|
-
"destination_pin_id": 1043445807036,
|
|
60
|
-
"quantity": 10.0,
|
|
61
|
-
"route_id": 1305571078,
|
|
62
|
-
"source_pin_id": 1043445807059,
|
|
13
|
+
"content_type_id": 2398,
|
|
14
|
+
"destination_pin_id": 1047902592921,
|
|
15
|
+
"quantity": 40.0,
|
|
16
|
+
"route_id": 1425619745,
|
|
17
|
+
"source_pin_id": 1047902592918,
|
|
63
18
|
"waypoints": [
|
|
64
|
-
|
|
65
|
-
1043429053914,
|
|
66
|
-
1043437196267,
|
|
67
|
-
1043437196271,
|
|
68
|
-
1043437196279
|
|
19
|
+
1047902592937
|
|
69
20
|
]
|
|
70
21
|
},
|
|
71
22
|
{
|
|
72
|
-
"content_type_id":
|
|
73
|
-
"destination_pin_id":
|
|
74
|
-
"quantity":
|
|
75
|
-
"route_id":
|
|
76
|
-
"source_pin_id":
|
|
77
|
-
"waypoints": [1043429053916, 1043429053915]
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
"content_type_id": 2360,
|
|
81
|
-
"destination_pin_id": 1043429053914,
|
|
82
|
-
"quantity": 3.0,
|
|
83
|
-
"route_id": 1305565884,
|
|
84
|
-
"source_pin_id": 1043429053916,
|
|
85
|
-
"waypoints": [1043429053915]
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
"content_type_id": 2360,
|
|
89
|
-
"destination_pin_id": 1043429053914,
|
|
90
|
-
"quantity": 3.0,
|
|
91
|
-
"route_id": 1305565885,
|
|
92
|
-
"source_pin_id": 1043429053915,
|
|
23
|
+
"content_type_id": 3689,
|
|
24
|
+
"destination_pin_id": 1047902592937,
|
|
25
|
+
"quantity": 5.0,
|
|
26
|
+
"route_id": 1425619399,
|
|
27
|
+
"source_pin_id": 1047902592935,
|
|
93
28
|
"waypoints": []
|
|
94
29
|
},
|
|
95
30
|
{
|
|
96
|
-
"content_type_id":
|
|
97
|
-
"destination_pin_id":
|
|
98
|
-
"quantity":
|
|
99
|
-
"route_id":
|
|
100
|
-
"source_pin_id":
|
|
31
|
+
"content_type_id": 3689,
|
|
32
|
+
"destination_pin_id": 1047902592937,
|
|
33
|
+
"quantity": 5.0,
|
|
34
|
+
"route_id": 1425619400,
|
|
35
|
+
"source_pin_id": 1047902592921,
|
|
101
36
|
"waypoints": []
|
|
102
37
|
},
|
|
103
38
|
{
|
|
104
|
-
"content_type_id":
|
|
105
|
-
"destination_pin_id":
|
|
106
|
-
"quantity":
|
|
107
|
-
"route_id":
|
|
108
|
-
"source_pin_id":
|
|
109
|
-
"waypoints": [
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
"content_type_id": 2360,
|
|
113
|
-
"destination_pin_id": 1043429053914,
|
|
114
|
-
"quantity": 3.0,
|
|
115
|
-
"route_id": 1305565888,
|
|
116
|
-
"source_pin_id": 1043437196279,
|
|
117
|
-
"waypoints": [1043437196271, 1043437196267]
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
"content_type_id": 2360,
|
|
121
|
-
"destination_pin_id": 1043429053914,
|
|
122
|
-
"quantity": 3.0,
|
|
123
|
-
"route_id": 1305565889,
|
|
124
|
-
"source_pin_id": 1043445807014,
|
|
125
|
-
"waypoints": [1043429053916, 1043429053915]
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
"content_type_id": 2360,
|
|
129
|
-
"destination_pin_id": 1043429053914,
|
|
130
|
-
"quantity": 3.0,
|
|
131
|
-
"route_id": 1305565890,
|
|
132
|
-
"source_pin_id": 1043445807016,
|
|
133
|
-
"waypoints": [1043429053918, 1043429053916, 1043429053915]
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
"content_type_id": 2360,
|
|
137
|
-
"destination_pin_id": 1043429053914,
|
|
138
|
-
"quantity": 3.0,
|
|
139
|
-
"route_id": 1305565891,
|
|
140
|
-
"source_pin_id": 1043445807018,
|
|
141
|
-
"waypoints": [1043429053918, 1043429053916, 1043429053915]
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
"content_type_id": 2360,
|
|
145
|
-
"destination_pin_id": 1043429053914,
|
|
146
|
-
"quantity": 3.0,
|
|
147
|
-
"route_id": 1305565892,
|
|
148
|
-
"source_pin_id": 1043445807020,
|
|
149
|
-
"waypoints": [1043429053916, 1043429053915]
|
|
150
|
-
},
|
|
151
|
-
{
|
|
152
|
-
"content_type_id": 2360,
|
|
153
|
-
"destination_pin_id": 1043429053914,
|
|
154
|
-
"quantity": 3.0,
|
|
155
|
-
"route_id": 1305565893,
|
|
156
|
-
"source_pin_id": 1043445807021,
|
|
157
|
-
"waypoints": [1043437196267]
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
"content_type_id": 2360,
|
|
161
|
-
"destination_pin_id": 1043429053914,
|
|
162
|
-
"quantity": 3.0,
|
|
163
|
-
"route_id": 1305565894,
|
|
164
|
-
"source_pin_id": 1043445807024,
|
|
165
|
-
"waypoints": [1043437196271, 1043437196267]
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
"content_type_id": 2360,
|
|
169
|
-
"destination_pin_id": 1043429053914,
|
|
170
|
-
"quantity": 3.0,
|
|
171
|
-
"route_id": 1305565895,
|
|
172
|
-
"source_pin_id": 1043445807027,
|
|
173
|
-
"waypoints": [1043437196279, 1043437196271, 1043437196267]
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
"content_type_id": 2360,
|
|
177
|
-
"destination_pin_id": 1043429053914,
|
|
178
|
-
"quantity": 3.0,
|
|
179
|
-
"route_id": 1305565896,
|
|
180
|
-
"source_pin_id": 1043445807030,
|
|
181
|
-
"waypoints": [1043437196271, 1043437196267]
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
"content_type_id": 2360,
|
|
185
|
-
"destination_pin_id": 1043429053914,
|
|
186
|
-
"quantity": 3.0,
|
|
187
|
-
"route_id": 1305565897,
|
|
188
|
-
"source_pin_id": 1043445807036,
|
|
189
|
-
"waypoints": [1043437196279, 1043437196271, 1043437196267]
|
|
190
|
-
},
|
|
191
|
-
{
|
|
192
|
-
"content_type_id": 2360,
|
|
193
|
-
"destination_pin_id": 1043429053914,
|
|
194
|
-
"quantity": 3.0,
|
|
195
|
-
"route_id": 1305565898,
|
|
196
|
-
"source_pin_id": 1043445807042,
|
|
197
|
-
"waypoints": [1043429053915]
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
"content_type_id": 2360,
|
|
201
|
-
"destination_pin_id": 1043429053914,
|
|
202
|
-
"quantity": 3.0,
|
|
203
|
-
"route_id": 1305565899,
|
|
204
|
-
"source_pin_id": 1043445807046,
|
|
205
|
-
"waypoints": [1043437196267]
|
|
206
|
-
},
|
|
207
|
-
{
|
|
208
|
-
"content_type_id": 2360,
|
|
209
|
-
"destination_pin_id": 1043429053914,
|
|
210
|
-
"quantity": 3.0,
|
|
211
|
-
"route_id": 1305565900,
|
|
212
|
-
"source_pin_id": 1043445807045,
|
|
213
|
-
"waypoints": [1043429053915]
|
|
39
|
+
"content_type_id": 2398,
|
|
40
|
+
"destination_pin_id": 1047902592918,
|
|
41
|
+
"quantity": 20.0,
|
|
42
|
+
"route_id": 1425619401,
|
|
43
|
+
"source_pin_id": 1047902592910,
|
|
44
|
+
"waypoints": [
|
|
45
|
+
1047902592940
|
|
46
|
+
]
|
|
214
47
|
},
|
|
215
48
|
{
|
|
216
|
-
"content_type_id":
|
|
217
|
-
"destination_pin_id":
|
|
218
|
-
"quantity":
|
|
219
|
-
"route_id":
|
|
220
|
-
"source_pin_id":
|
|
49
|
+
"content_type_id": 2398,
|
|
50
|
+
"destination_pin_id": 1047902592918,
|
|
51
|
+
"quantity": 20.0,
|
|
52
|
+
"route_id": 1425619402,
|
|
53
|
+
"source_pin_id": 1047902592940,
|
|
221
54
|
"waypoints": []
|
|
222
55
|
},
|
|
223
56
|
{
|
|
224
|
-
"content_type_id":
|
|
225
|
-
"destination_pin_id":
|
|
226
|
-
"quantity":
|
|
227
|
-
"route_id":
|
|
228
|
-
"source_pin_id":
|
|
229
|
-
"waypoints": [
|
|
230
|
-
},
|
|
231
|
-
{
|
|
232
|
-
"content_type_id": 2360,
|
|
233
|
-
"destination_pin_id": 1043429053914,
|
|
234
|
-
"quantity": 3.0,
|
|
235
|
-
"route_id": 1305565903,
|
|
236
|
-
"source_pin_id": 1043445807047,
|
|
237
|
-
"waypoints": [1043445807044]
|
|
238
|
-
},
|
|
239
|
-
{
|
|
240
|
-
"content_type_id": 2360,
|
|
241
|
-
"destination_pin_id": 1043429053914,
|
|
242
|
-
"quantity": 3.0,
|
|
243
|
-
"route_id": 1305565904,
|
|
244
|
-
"source_pin_id": 1043445807058,
|
|
245
|
-
"waypoints": [1043445807047, 1043445807044]
|
|
57
|
+
"content_type_id": 2399,
|
|
58
|
+
"destination_pin_id": 1047902592918,
|
|
59
|
+
"quantity": 20.0,
|
|
60
|
+
"route_id": 1425619403,
|
|
61
|
+
"source_pin_id": 1047902592903,
|
|
62
|
+
"waypoints": []
|
|
246
63
|
},
|
|
247
64
|
{
|
|
248
|
-
"content_type_id":
|
|
249
|
-
"destination_pin_id":
|
|
250
|
-
"quantity":
|
|
251
|
-
"route_id":
|
|
252
|
-
"source_pin_id":
|
|
65
|
+
"content_type_id": 2399,
|
|
66
|
+
"destination_pin_id": 1047902592918,
|
|
67
|
+
"quantity": 20.0,
|
|
68
|
+
"route_id": 1425619404,
|
|
69
|
+
"source_pin_id": 1047902592926,
|
|
253
70
|
"waypoints": [
|
|
254
|
-
|
|
255
|
-
1043429053914,
|
|
256
|
-
1043429053915,
|
|
257
|
-
1043429053916,
|
|
258
|
-
1043429053918
|
|
71
|
+
1047902592903
|
|
259
72
|
]
|
|
260
73
|
},
|
|
261
74
|
{
|
|
262
|
-
"content_type_id":
|
|
263
|
-
"destination_pin_id":
|
|
264
|
-
"quantity":
|
|
265
|
-
"route_id":
|
|
266
|
-
"source_pin_id":
|
|
267
|
-
"waypoints": [1043427927097, 1043429053914, 1043429053915, 1043429053916]
|
|
268
|
-
},
|
|
269
|
-
{
|
|
270
|
-
"content_type_id": 3693,
|
|
271
|
-
"destination_pin_id": 1043445807018,
|
|
272
|
-
"quantity": 10.0,
|
|
273
|
-
"route_id": 1305571037,
|
|
274
|
-
"source_pin_id": 1043445807059,
|
|
75
|
+
"content_type_id": 2267,
|
|
76
|
+
"destination_pin_id": 1047902592910,
|
|
77
|
+
"quantity": 3000.0,
|
|
78
|
+
"route_id": 1425620597,
|
|
79
|
+
"source_pin_id": 1047902592918,
|
|
275
80
|
"waypoints": [
|
|
276
|
-
|
|
277
|
-
1043429053914,
|
|
278
|
-
1043429053915,
|
|
279
|
-
1043429053916,
|
|
280
|
-
1043429053918
|
|
81
|
+
1047902592940
|
|
281
82
|
]
|
|
282
83
|
},
|
|
283
84
|
{
|
|
284
|
-
"content_type_id":
|
|
285
|
-
"destination_pin_id":
|
|
286
|
-
"quantity":
|
|
287
|
-
"route_id":
|
|
288
|
-
"source_pin_id":
|
|
289
|
-
"waypoints": [
|
|
290
|
-
},
|
|
291
|
-
{
|
|
292
|
-
"content_type_id": 3693,
|
|
293
|
-
"destination_pin_id": 1043429053916,
|
|
294
|
-
"quantity": 10.0,
|
|
295
|
-
"route_id": 1305571039,
|
|
296
|
-
"source_pin_id": 1043445807059,
|
|
297
|
-
"waypoints": [1043427927097, 1043429053914, 1043429053915]
|
|
298
|
-
},
|
|
299
|
-
{
|
|
300
|
-
"content_type_id": 3693,
|
|
301
|
-
"destination_pin_id": 1043445807020,
|
|
302
|
-
"quantity": 10.0,
|
|
303
|
-
"route_id": 1305571040,
|
|
304
|
-
"source_pin_id": 1043445807059,
|
|
305
|
-
"waypoints": [1043427927097, 1043429053914, 1043429053915, 1043429053916]
|
|
306
|
-
},
|
|
307
|
-
{
|
|
308
|
-
"content_type_id": 3693,
|
|
309
|
-
"destination_pin_id": 1043445807045,
|
|
310
|
-
"quantity": 10.0,
|
|
311
|
-
"route_id": 1305571041,
|
|
312
|
-
"source_pin_id": 1043445807059,
|
|
313
|
-
"waypoints": [1043427927097, 1043429053914, 1043429053915]
|
|
314
|
-
},
|
|
315
|
-
{
|
|
316
|
-
"content_type_id": 3693,
|
|
317
|
-
"destination_pin_id": 1043429053915,
|
|
318
|
-
"quantity": 10.0,
|
|
319
|
-
"route_id": 1305571042,
|
|
320
|
-
"source_pin_id": 1043445807059,
|
|
321
|
-
"waypoints": [1043427927097, 1043429053914]
|
|
322
|
-
},
|
|
323
|
-
{
|
|
324
|
-
"content_type_id": 3693,
|
|
325
|
-
"destination_pin_id": 1043445807042,
|
|
326
|
-
"quantity": 10.0,
|
|
327
|
-
"route_id": 1305571043,
|
|
328
|
-
"source_pin_id": 1043445807059,
|
|
329
|
-
"waypoints": [1043427927097, 1043429053914, 1043429053915]
|
|
330
|
-
},
|
|
331
|
-
{
|
|
332
|
-
"content_type_id": 3693,
|
|
333
|
-
"destination_pin_id": 1043445807054,
|
|
334
|
-
"quantity": 10.0,
|
|
335
|
-
"route_id": 1305571044,
|
|
336
|
-
"source_pin_id": 1043445807059,
|
|
337
|
-
"waypoints": [1043427927097, 1043429053914, 1043445807044, 1043445807047]
|
|
338
|
-
},
|
|
339
|
-
{
|
|
340
|
-
"content_type_id": 3693,
|
|
341
|
-
"destination_pin_id": 1043445807047,
|
|
342
|
-
"quantity": 10.0,
|
|
343
|
-
"route_id": 1305571045,
|
|
344
|
-
"source_pin_id": 1043445807059,
|
|
345
|
-
"waypoints": [1043427927097, 1043429053914, 1043445807044]
|
|
346
|
-
},
|
|
347
|
-
{
|
|
348
|
-
"content_type_id": 3693,
|
|
349
|
-
"destination_pin_id": 1043445807044,
|
|
350
|
-
"quantity": 10.0,
|
|
351
|
-
"route_id": 1305571046,
|
|
352
|
-
"source_pin_id": 1043445807059,
|
|
353
|
-
"waypoints": [1043427927097, 1043429053914]
|
|
354
|
-
},
|
|
355
|
-
{
|
|
356
|
-
"content_type_id": 3693,
|
|
357
|
-
"destination_pin_id": 1043445807058,
|
|
358
|
-
"quantity": 10.0,
|
|
359
|
-
"route_id": 1305571047,
|
|
360
|
-
"source_pin_id": 1043445807059,
|
|
361
|
-
"waypoints": [1043427927097, 1043429053914, 1043445807044, 1043445807047]
|
|
362
|
-
},
|
|
363
|
-
{
|
|
364
|
-
"content_type_id": 3693,
|
|
365
|
-
"destination_pin_id": 1043445807021,
|
|
366
|
-
"quantity": 10.0,
|
|
367
|
-
"route_id": 1305571048,
|
|
368
|
-
"source_pin_id": 1043445807059,
|
|
369
|
-
"waypoints": [1043427927097, 1043429053914, 1043437196267]
|
|
370
|
-
},
|
|
371
|
-
{
|
|
372
|
-
"content_type_id": 3693,
|
|
373
|
-
"destination_pin_id": 1043437196267,
|
|
374
|
-
"quantity": 10.0,
|
|
375
|
-
"route_id": 1305571049,
|
|
376
|
-
"source_pin_id": 1043445807059,
|
|
377
|
-
"waypoints": [1043427927097, 1043429053914]
|
|
378
|
-
},
|
|
379
|
-
{
|
|
380
|
-
"content_type_id": 3693,
|
|
381
|
-
"destination_pin_id": 1043445807046,
|
|
382
|
-
"quantity": 10.0,
|
|
383
|
-
"route_id": 1305571050,
|
|
384
|
-
"source_pin_id": 1043445807059,
|
|
385
|
-
"waypoints": [1043427927097, 1043429053914, 1043437196267]
|
|
386
|
-
},
|
|
387
|
-
{
|
|
388
|
-
"content_type_id": 3693,
|
|
389
|
-
"destination_pin_id": 1043445807024,
|
|
390
|
-
"quantity": 10.0,
|
|
391
|
-
"route_id": 1305571051,
|
|
392
|
-
"source_pin_id": 1043445807059,
|
|
393
|
-
"waypoints": [1043427927097, 1043429053914, 1043437196267, 1043437196271]
|
|
394
|
-
},
|
|
395
|
-
{
|
|
396
|
-
"content_type_id": 3693,
|
|
397
|
-
"destination_pin_id": 1043437196271,
|
|
398
|
-
"quantity": 10.0,
|
|
399
|
-
"route_id": 1305571052,
|
|
400
|
-
"source_pin_id": 1043445807059,
|
|
401
|
-
"waypoints": [1043427927097, 1043429053914, 1043437196267]
|
|
85
|
+
"content_type_id": 2267,
|
|
86
|
+
"destination_pin_id": 1047902592940,
|
|
87
|
+
"quantity": 3000.0,
|
|
88
|
+
"route_id": 1425620598,
|
|
89
|
+
"source_pin_id": 1047902592918,
|
|
90
|
+
"waypoints": []
|
|
402
91
|
},
|
|
403
92
|
{
|
|
404
|
-
"content_type_id":
|
|
405
|
-
"destination_pin_id":
|
|
406
|
-
"quantity":
|
|
407
|
-
"route_id":
|
|
408
|
-
"source_pin_id":
|
|
409
|
-
"waypoints": [
|
|
93
|
+
"content_type_id": 2270,
|
|
94
|
+
"destination_pin_id": 1047902592903,
|
|
95
|
+
"quantity": 3000.0,
|
|
96
|
+
"route_id": 1425620599,
|
|
97
|
+
"source_pin_id": 1047902592918,
|
|
98
|
+
"waypoints": []
|
|
410
99
|
},
|
|
411
100
|
{
|
|
412
|
-
"content_type_id":
|
|
413
|
-
"destination_pin_id":
|
|
414
|
-
"quantity":
|
|
415
|
-
"route_id":
|
|
416
|
-
"source_pin_id":
|
|
101
|
+
"content_type_id": 2270,
|
|
102
|
+
"destination_pin_id": 1047902592926,
|
|
103
|
+
"quantity": 3000.0,
|
|
104
|
+
"route_id": 1425620600,
|
|
105
|
+
"source_pin_id": 1047902592918,
|
|
417
106
|
"waypoints": [
|
|
418
|
-
|
|
419
|
-
1043429053914,
|
|
420
|
-
1043437196267,
|
|
421
|
-
1043437196271,
|
|
422
|
-
1043437196279
|
|
107
|
+
1047902592903
|
|
423
108
|
]
|
|
424
109
|
},
|
|
425
110
|
{
|
|
426
|
-
"content_type_id":
|
|
427
|
-
"destination_pin_id":
|
|
428
|
-
"quantity":
|
|
429
|
-
"route_id":
|
|
430
|
-
"source_pin_id":
|
|
431
|
-
"waypoints": [
|
|
111
|
+
"content_type_id": 2270,
|
|
112
|
+
"destination_pin_id": 1047902592918,
|
|
113
|
+
"quantity": 187776.0,
|
|
114
|
+
"route_id": 1514083994,
|
|
115
|
+
"source_pin_id": 1047902592933,
|
|
116
|
+
"waypoints": []
|
|
432
117
|
},
|
|
433
118
|
{
|
|
434
|
-
"content_type_id":
|
|
435
|
-
"destination_pin_id":
|
|
436
|
-
"quantity":
|
|
437
|
-
"route_id":
|
|
438
|
-
"source_pin_id":
|
|
439
|
-
"waypoints": [
|
|
440
|
-
1043427927097,
|
|
441
|
-
1043429053914,
|
|
442
|
-
1043437196267,
|
|
443
|
-
1043437196271,
|
|
444
|
-
1043437196279
|
|
445
|
-
]
|
|
119
|
+
"content_type_id": 2267,
|
|
120
|
+
"destination_pin_id": 1047902592918,
|
|
121
|
+
"quantity": 220688.0,
|
|
122
|
+
"route_id": 1514083995,
|
|
123
|
+
"source_pin_id": 1047902592919,
|
|
124
|
+
"waypoints": []
|
|
446
125
|
},
|
|
447
126
|
{
|
|
448
|
-
"content_type_id":
|
|
449
|
-
"destination_pin_id":
|
|
450
|
-
"quantity":
|
|
451
|
-
"route_id":
|
|
452
|
-
"source_pin_id":
|
|
127
|
+
"content_type_id": 2399,
|
|
128
|
+
"destination_pin_id": 1047902592935,
|
|
129
|
+
"quantity": 40.0,
|
|
130
|
+
"route_id": 1425619742,
|
|
131
|
+
"source_pin_id": 1047902592918,
|
|
453
132
|
"waypoints": [
|
|
454
|
-
|
|
455
|
-
1043429053914,
|
|
456
|
-
1043429053915,
|
|
457
|
-
1043429053916,
|
|
458
|
-
1043429053918
|
|
133
|
+
1047902592937
|
|
459
134
|
]
|
|
460
135
|
},
|
|
461
136
|
{
|
|
462
|
-
"content_type_id":
|
|
463
|
-
"destination_pin_id":
|
|
464
|
-
"quantity":
|
|
465
|
-
"route_id":
|
|
466
|
-
"source_pin_id":
|
|
467
|
-
"waypoints": [1043427927097, 1043429053914, 1043429053915, 1043429053916]
|
|
468
|
-
},
|
|
469
|
-
{
|
|
470
|
-
"content_type_id": 3695,
|
|
471
|
-
"destination_pin_id": 1043445807018,
|
|
472
|
-
"quantity": 10.0,
|
|
473
|
-
"route_id": 1305571059,
|
|
474
|
-
"source_pin_id": 1043445807059,
|
|
137
|
+
"content_type_id": 2399,
|
|
138
|
+
"destination_pin_id": 1047902592921,
|
|
139
|
+
"quantity": 40.0,
|
|
140
|
+
"route_id": 1425619743,
|
|
141
|
+
"source_pin_id": 1047902592918,
|
|
475
142
|
"waypoints": [
|
|
476
|
-
|
|
477
|
-
1043429053914,
|
|
478
|
-
1043429053915,
|
|
479
|
-
1043429053916,
|
|
480
|
-
1043429053918
|
|
143
|
+
1047902592937
|
|
481
144
|
]
|
|
482
|
-
},
|
|
483
|
-
{
|
|
484
|
-
"content_type_id": 3695,
|
|
485
|
-
"destination_pin_id": 1043445807014,
|
|
486
|
-
"quantity": 10.0,
|
|
487
|
-
"route_id": 1305571060,
|
|
488
|
-
"source_pin_id": 1043445807059,
|
|
489
|
-
"waypoints": [1043427927097, 1043429053914, 1043429053915, 1043429053916]
|
|
490
|
-
},
|
|
491
|
-
{
|
|
492
|
-
"content_type_id": 3695,
|
|
493
|
-
"destination_pin_id": 1043429053916,
|
|
494
|
-
"quantity": 10.0,
|
|
495
|
-
"route_id": 1305571061,
|
|
496
|
-
"source_pin_id": 1043445807059,
|
|
497
|
-
"waypoints": [1043427927097, 1043429053914, 1043429053915]
|
|
498
|
-
},
|
|
499
|
-
{
|
|
500
|
-
"content_type_id": 3695,
|
|
501
|
-
"destination_pin_id": 1043445807020,
|
|
502
|
-
"quantity": 10.0,
|
|
503
|
-
"route_id": 1305571062,
|
|
504
|
-
"source_pin_id": 1043445807059,
|
|
505
|
-
"waypoints": [1043427927097, 1043429053914, 1043429053915, 1043429053916]
|
|
506
|
-
},
|
|
507
|
-
{
|
|
508
|
-
"content_type_id": 3695,
|
|
509
|
-
"destination_pin_id": 1043445807054,
|
|
510
|
-
"quantity": 10.0,
|
|
511
|
-
"route_id": 1305571063,
|
|
512
|
-
"source_pin_id": 1043445807059,
|
|
513
|
-
"waypoints": [1043427927097, 1043429053914, 1043445807044, 1043445807047]
|
|
514
|
-
},
|
|
515
|
-
{
|
|
516
|
-
"content_type_id": 3695,
|
|
517
|
-
"destination_pin_id": 1043445807045,
|
|
518
|
-
"quantity": 10.0,
|
|
519
|
-
"route_id": 1305571064,
|
|
520
|
-
"source_pin_id": 1043445807059,
|
|
521
|
-
"waypoints": [1043427927097, 1043429053914, 1043429053915]
|
|
522
|
-
},
|
|
523
|
-
{
|
|
524
|
-
"content_type_id": 3695,
|
|
525
|
-
"destination_pin_id": 1043429053915,
|
|
526
|
-
"quantity": 10.0,
|
|
527
|
-
"route_id": 1305571065,
|
|
528
|
-
"source_pin_id": 1043445807059,
|
|
529
|
-
"waypoints": [1043427927097, 1043429053914]
|
|
530
|
-
},
|
|
531
|
-
{
|
|
532
|
-
"content_type_id": 3695,
|
|
533
|
-
"destination_pin_id": 1043445807042,
|
|
534
|
-
"quantity": 10.0,
|
|
535
|
-
"route_id": 1305571066,
|
|
536
|
-
"source_pin_id": 1043445807059,
|
|
537
|
-
"waypoints": [1043427927097, 1043429053914, 1043429053915]
|
|
538
|
-
},
|
|
539
|
-
{
|
|
540
|
-
"content_type_id": 3695,
|
|
541
|
-
"destination_pin_id": 1043445807047,
|
|
542
|
-
"quantity": 10.0,
|
|
543
|
-
"route_id": 1305571067,
|
|
544
|
-
"source_pin_id": 1043445807059,
|
|
545
|
-
"waypoints": [1043427927097, 1043429053914, 1043445807044]
|
|
546
|
-
},
|
|
547
|
-
{
|
|
548
|
-
"content_type_id": 3695,
|
|
549
|
-
"destination_pin_id": 1043445807044,
|
|
550
|
-
"quantity": 10.0,
|
|
551
|
-
"route_id": 1305571068,
|
|
552
|
-
"source_pin_id": 1043445807059,
|
|
553
|
-
"waypoints": [1043427927097, 1043429053914]
|
|
554
|
-
},
|
|
555
|
-
{
|
|
556
|
-
"content_type_id": 3695,
|
|
557
|
-
"destination_pin_id": 1043445807058,
|
|
558
|
-
"quantity": 10.0,
|
|
559
|
-
"route_id": 1305571069,
|
|
560
|
-
"source_pin_id": 1043445807059,
|
|
561
|
-
"waypoints": [1043427927097, 1043429053914, 1043445807044, 1043445807047]
|
|
562
|
-
},
|
|
563
|
-
{
|
|
564
|
-
"content_type_id": 3695,
|
|
565
|
-
"destination_pin_id": 1043445807021,
|
|
566
|
-
"quantity": 10.0,
|
|
567
|
-
"route_id": 1305571070,
|
|
568
|
-
"source_pin_id": 1043445807059,
|
|
569
|
-
"waypoints": [1043427927097, 1043429053914, 1043437196267]
|
|
570
|
-
},
|
|
571
|
-
{
|
|
572
|
-
"content_type_id": 3695,
|
|
573
|
-
"destination_pin_id": 1043437196267,
|
|
574
|
-
"quantity": 10.0,
|
|
575
|
-
"route_id": 1305571071,
|
|
576
|
-
"source_pin_id": 1043445807059,
|
|
577
|
-
"waypoints": [1043427927097, 1043429053914]
|
|
578
145
|
}
|
|
579
146
|
]
|