Changes for page 2 Script
Last modified by Devin Chen on 2025/06/06 14:03
From version 17.1
edited by Jim(Forgotten)
on 2022/07/09 17:47
on 2022/07/09 17:47
Change comment:
There is no comment for this version
Summary
-
Page properties (2 modified, 0 added, 0 removed)
-
Attachments (0 modified, 0 added, 23 removed)
- image-20220709165226-1.png
- image-20220709165402-1.png
- image-20220709165402-10.png
- image-20220709165402-11.png
- image-20220709165402-12.png
- image-20220709165402-13.png
- image-20220709165402-14.png
- image-20220709165402-15.png
- image-20220709165402-16.png
- image-20220709165402-17.png
- image-20220709165402-18.png
- image-20220709165402-19.png
- image-20220709165402-2.png
- image-20220709165402-20.png
- image-20220709165402-21.png
- image-20220709165402-3.png
- image-20220709165402-4.png
- image-20220709165402-5.png
- image-20220709165402-6.png
- image-20220709165402-7.png
- image-20220709165402-8.png
- image-20220709165402-9.png
- image-20220709173500-1.png
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki. Jim1 +XWiki.Leo - Content
-
... ... @@ -7,25 +7,25 @@ 7 7 ))) 8 8 9 9 (% style="text-align:center" %) 10 -[[image:1624245865976-320.png||height="182" width="1000" class="img-thumbnail"]]10 +[[image:1624245865976-320.png||class="img-thumbnail" height="182" width="1000"]] 11 11 12 12 Depend on diffferent format of data.V-Box use different script functions. 13 13 for example. addr_setshort(addr,num) Function: Write 16-bit signed decimal address 14 14 addr_getshort(addr) Function:Read 16-bit signed decimal address 15 15 addr_getword(string addr)Function: Read 16-bit unsigned decimal address 16 -More script function are in the second section of [[“V-BOX Script Interface Manual”>>doc:V-BOX.V-Net.1\.User Manual.04 Lua Script.01 Functions.WebHome]]16 +More script function are in the second section of [[“V-BOX Script Interface Manual”>>doc:V-BOX.V-Net.1\.User Manual.04 Lua Script.01\.Lua script function.WebHome]] 17 17 18 18 == **1.2 Arithmetic** == 19 19 20 20 (% style="text-align:center" %) 21 -[[image:1624249623612-177.png||height="337" width="400" class="img-thumbnail"]]21 +[[image:1624249623612-177.png||class="img-thumbnail" height="337" width="400"]] 22 22 23 -== **1.3 Set 100 to D0~-~-D19** ==23 +== **1.3 set 100 to D0~-~-D19** == 24 24 25 25 (% style="text-align:center" %) 26 -[[image:1624249693457-742.png||height="135" width="400" class="img-thumbnail"]]26 +[[image:1624249693457-742.png||class="img-thumbnail" height="135" width="400"]] 27 27 28 -== **1.4 Short message** ==28 +== **1.4 short message** == 29 29 30 30 When the alarm condition is reached: temp1 > 5 & temp2 >10 & temp3 < 20(lasts more than 5 seconds) , then send an "alarm trigger" sms. 31 31 ... ... @@ -32,7 +32,7 @@ 32 32 When the alarm condition is released,then send an "alarm release" sms. 33 33 34 34 (% style="text-align:center" %) 35 -[[image:1645535936750-316.png||height="385" width="400" class="img-thumbnail"]]35 +[[image:1645535936750-316.png||class="img-thumbnail" height="385" width="400"]] 36 36 37 37 Script is as below: 38 38 ... ... @@ -66,76 +66,6 @@ 66 66 end 67 67 ))) 68 68 69 -== **1.5 Telegram notification** == 70 - 71 -This example shows how to use the Bot API to send message into Telegram group or channel. When monitoring bit "@HDX" changes, it will trigger and send the message. Please replace with your own Token and chat id. 72 - 73 -{{code language="Lua"}} 74 -local tempBit = 0 75 -local tempWord = 0 76 - 77 -local botToken = "5504549693:AAEy6a5G-sOF3CINONxMNABeYnoS4ABVlfg" 78 -local chatID = "-641959124"--The chat id from Channel or Group 79 - 80 -local https = require("https") 81 -local json = require("json") 82 - 83 --- Send http.get request and return response result 84 -function getHttpsUrl(url) 85 - local body = {} 86 - local bodyJson = json.encode(body) 87 - local header = {} 88 - header["content-type"] = "application/json" 89 - local result_table, code, headers, status = https.request(url, bodyJson) 90 - print("code:"..code) 91 - if code~= 200 then 92 - return 93 - else 94 - return body 95 - end 96 -end 97 - 98 -function sendAlarm(telegramBotToken, message, telegramChatID) 99 - local url = "https://api.telegram.org/bot"..telegramBotToken.."/sendMessage?text="..message.."&chat_id="..telegramChatID 100 - --local url = 'http://v-box.net' 101 - --local url = 'https://www.google.com/' 102 - print("Get the link:"..url) 103 - getHttpsUrl(url) 104 -end 105 - 106 - 107 -function AlarmNotificate.main() 108 - local bitValue = addr_getbit("@HDX"); 109 - local message = '' 110 - print("b=="..bitValue) 111 - if bitValue == 1 and bitValue ~= tempBit then 112 - message = 'Alarm triggered, the monitoring point test value is '.. bitValue 113 - sendAlarm(botToken, message, chatID) 114 - print("Notification pushed of triggering alarm,"..bitValue) 115 - elseif bitValue == 0 and bitValue ~= tempBit then 116 - message = 'Alarm dismissed, the monitoring point test value is '.. bitValue 117 - sendAlarm(botToken, message, chatID) 118 - print("Notification pushed of dismissing alarm,"..bitValue) 119 - end 120 - tempBit = bitValue----Prevent monitoring values from continuous being sent to the platform 121 - 122 - local wordValue = addr_getword("@HDW10") 123 - print("w=="..wordValue) 124 - --dosomething 125 - if wordValue >= 100 and wordValue ~= tempWord and tempWord <= 100 then 126 - message = 'Word alarm triggered, the word value is '.. wordValue 127 - sendAlarm(botToken, message, chatID) 128 - print("Notification pushed of triggering alarm,"..wordValue) 129 - elseif wordValue < 100 and wordValue ~= tempWord and tempWord >= 100 then 130 - message = 'Word alarm dismissed, the word value is '.. wordValue 131 - sendAlarm(botToken, message, chatID) 132 - print("Notification pushed of dismissing alarm,"..wordValue) 133 - end 134 - tempWord = wordValue----Prevent monitoring values from continuous being sent to the platform 135 -end 136 -{{/code}} 137 - 138 - 139 139 = **2 V-Box connect with third part server** = 140 140 141 141 V-Box have two mode.One is for V-Net,User need to use WECON server to store data.We call this V-NET platform. ... ... @@ -256,13 +256,15 @@ 256 256 sv=addr_getshort("@SV Silicone")/10, 257 257 pv=addr_getshort("@PV Silicone")/10, 258 258 product1=addr_getshort("@Product 1")/10, 259 -\\ product2=addr_getshort("@Product 2")/10, 189 + 190 + product2=addr_getshort("@Product 2")/10, 260 260 product3=addr_getshort("@Product 3")/10, 261 261 product4=addr_getshort("@Product 4")/10, 262 262 ice1=addr_getshort("@Ice condenser 1")/10, 263 263 ice2=addr_getshort("@Ice condenser 2")/10, 264 264 vacuum=addr_getfloat("@Vacuum") 265 -\\ } 196 + 197 + } 266 266 local jsAlarm = { HPC = addr_getbit("@B_25395#W0.00"), 267 267 ODPC = addr_getbit("@B_25395#W0.01"), 268 268 MTPC=addr_getbit("@B_25395#W0.02"), ... ... @@ -277,7 +277,8 @@ 277 277 FSE=addr_getbit("@B_25395#W2.04"), 278 278 AVVSVV=addr_getbit("@B_25395#W1.12"), 279 279 ICHT=addr_getbit("@B_25395#W3.06") 280 -\\ } 212 + 213 + } 281 281 \\ ~-~- ("@B_25395#CIO1.02") 282 282 mq.m:publish("mqtt-v-box-epsilon-fd300", json.encode(js) , 0, 0) 283 283 mq.m:publish("mqtt-v-box-epsilon-alarm-fd300", json.encode(jsAlarm) , 0, 0) ... ... @@ -438,7 +438,7 @@ 438 438 3.Create product 439 439 440 440 (% style="text-align:center" %) 441 -[[image:1624433478954-859.png||height="497" width="1100" class="img-thumbnail"]]374 +[[image:1624433478954-859.png||class="img-thumbnail" height="497" width="1100"]] 442 442 443 443 4.Product name,manufacturer,device type and industry,set according to your own needs. 444 444 ... ... @@ -449,7 +449,7 @@ 449 449 After finishing configuration,please click "OK" 450 450 451 451 (% style="text-align:center" %) 452 -[[image:1624433531968-337.png||height="568" width="700" class="img-thumbnail"]]385 +[[image:1624433531968-337.png||class="img-thumbnail" height="568" width="700"]] 453 453 454 454 5.Device 455 455 ... ... @@ -469,10 +469,10 @@ 469 469 After configuration, click OK to generate a device ID and password, which will be used for device access later. 470 470 471 471 (% style="text-align:center" %) 472 -[[image:1624436421499-613.png||height="499" width="700" class="img-thumbnail"]]405 +[[image:1624436421499-613.png||class="img-thumbnail" height="499" width="700"]] 473 473 474 474 (% style="text-align:center" %) 475 -[[image:1624437798012-126.png||height="366" width="500" class="img-thumbnail"]]408 +[[image:1624437798012-126.png||class="img-thumbnail" height="366" width="500"]] 476 476 477 477 6. Connection authentication (use MQTT.fx tool to access the IoT platform) 478 478 ... ... @@ -481,7 +481,7 @@ 481 481 **[[Download>>https://wecon-disk.oss-ap-southeast-1.aliyuncs.com/Download/WIKI/V-BOX/Demo/Huawei/mqttClientIdGenerator-19.2.0.zip]]** 482 482 483 483 (% style="text-align:center" %) 484 -[[image:1624437573798-815.png||height="351" width="700" class="img-thumbnail"]]417 +[[image:1624437573798-815.png||class="img-thumbnail" height="351" width="700"]] 485 485 486 486 (2)Fill in the device ID and secret (deviceid and secret generated when registering the device) to generate connection message 487 487 ... ... @@ -488,7 +488,7 @@ 488 488 Client ID, user name, password 489 489 490 490 (% style="text-align:center" %) 491 -[[image:1624437756866-251.png||height="405" width="700" class="img-thumbnail"]]424 +[[image:1624437756866-251.png||class="img-thumbnail" height="405" width="700"]] 492 492 493 493 (3) Download certificate file"North-Beijing4" 494 494 ... ... @@ -495,10 +495,10 @@ 495 495 [[https:~~/~~/support.huaweicloud.com/en-us/devg-iothub/iot_02_1004.html>>https://support.huaweicloud.com/en-us/devg-iothub/iot_02_1004.html]] 496 496 497 497 (% style="text-align:center" %) 498 -[[image:1624438225398-363.png||height="403" width="800" class="img-thumbnail"]]431 +[[image:1624438225398-363.png||class="img-thumbnail" height="403" width="800"]] 499 499 500 500 (% style="text-align:center" %) 501 -[[image:1624438260025-610.png||height="408" width="700" class="img-thumbnail"]]434 +[[image:1624438260025-610.png||class="img-thumbnail" height="408" width="700"]] 502 502 503 503 7.Run MQTTfx tool to connect with Huawei 504 504 ... ... @@ -507,7 +507,7 @@ 507 507 (1)Click on the setting ICON 508 508 509 509 (% style="text-align:center" %) 510 -[[image:1624438821280-974.png||height="198" width="500" class="img-thumbnail"]]443 +[[image:1624438821280-974.png||class="img-thumbnail" height="198" width="500"]] 511 511 512 512 (2)Fill in IIOT MQTT device access address, and configure authentication parameters. 513 513 First: It is the server and port connected to Huawei IOT, which can be viewed through the overview of the interface. ... ... @@ -522,7 +522,7 @@ 522 522 Client ID: check step 6 523 523 524 524 (% style="text-align:center" %) 525 -[[image:1624439672168-492.png||height="458" width="600" class="img-thumbnail"]]458 +[[image:1624439672168-492.png||class="img-thumbnail" height="458" width="600"]] 526 526 527 527 (3)Upload SSL certificate file,check step 6 528 528 ... ... @@ -529,15 +529,15 @@ 529 529 Select folder java~-~->DigiCertGlobalRootCA.crt.pem and click OK or apply button 530 530 531 531 (% style="text-align:center" %) 532 -[[image:1624439912938-659.png||height="458" width="600" class="img-thumbnail"]]465 +[[image:1624439912938-659.png||class="img-thumbnail" height="458" width="600"]] 533 533 534 534 (4)Connect and test publish and subscribe 535 535 536 536 (% style="text-align:center" %) 537 -[[image:1624440014872-688.png||height="232" width="700" class="img-thumbnail"]]470 +[[image:1624440014872-688.png||class="img-thumbnail" height="232" width="700"]] 538 538 539 539 (% style="text-align:center" %) 540 -[[image:1624440026937-386.png||height="215" width="700" class="img-thumbnail"]]473 +[[image:1624440026937-386.png||class="img-thumbnail" height="215" width="700"]] 541 541 542 542 Huawei publish topic format: $oc/devices/{device_id}/sys/properties/report 543 543 ... ... @@ -561,20 +561,20 @@ 561 561 ②Custom model: used to display the service ID name of the configuration report. 562 562 563 563 (% style="text-align:center" %) 564 -[[image:1624440793982-974.png||height="410" width="700" class="img-thumbnail"]]497 +[[image:1624440793982-974.png||class="img-thumbnail" height="410" width="700"]] 565 565 566 566 (% style="text-align:center" %) 567 -[[image:1624440883015-105.png||height="370" width="600" class="img-thumbnail"]]500 +[[image:1624440883015-105.png||class="img-thumbnail" height="370" width="600"]] 568 568 569 569 ③Add property, ID of monitoring point, and data format: 570 570 571 571 (% style="text-align:center" %) 572 -[[image:1624441052296-108.png||height="477" width="600" class="img-thumbnail"]]505 +[[image:1624441052296-108.png||class="img-thumbnail" height="477" width="600"]] 573 573 574 574 ④After the configuration is complete, check the received data on the device 575 575 576 576 (% style="text-align:center" %) 577 -[[image:1624441186851-536.png||height="434" width="700" class="img-thumbnail"]]510 +[[image:1624441186851-536.png||class="img-thumbnail" height="434" width="700"]] 578 578 579 579 == **2.4 V-Box connect with Huawei platform** == 580 580 ... ... @@ -585,7 +585,7 @@ 585 585 2.configure MQTT configuration 586 586 587 587 (% style="text-align:center" %) 588 -[[image:1624506363847-661.png||height="507" width="1000" class="img-thumbnail"]]521 +[[image:1624506363847-661.png||class="img-thumbnail" height="507" width="1000"]] 589 589 590 590 3.Create a script with the demo as below. 591 591 ... ... @@ -692,309 +692,11 @@ 692 692 4.Download project access into V-Box to test in debug page 693 693 694 694 (% style="text-align:center" %) 695 -[[image:1624506710354-406.png||height="658" width="1000" class="img-thumbnail"]]628 +[[image:1624506710354-406.png||class="img-thumbnail" height="658" width="1000"]] 696 696 697 697 (% style="text-align:center" %) 698 -[[image:1624506666650-161.png||height="547" width="1000" class="img-thumbnail"]]631 +[[image:1624506666650-161.png||class="img-thumbnail" height="547" width="1000"]] 699 699 700 700 == **2.5 V-Box connect with AWS platform** == 701 701 702 -=== **Log in AWS** === 703 - 704 -Login aws account and click“Connect an IoT device” 705 - 706 -[[image:image-20220709165402-1.png]] 707 - 708 -[[image:image-20220709165402-2.png]] 709 - 710 - 711 -=== **Create policy** === 712 - 713 -Click “Secure”~-~-->“Policies”~-~-->“Create policy”~-~-->Click “Create” 714 - 715 -[[image:image-20220709165402-3.png]] 716 - 717 -Name the policy~-~-->Click “JSON”~-~-->Copy the following content~-~-->Click “Create” 718 - 719 -[[image:image-20220709165402-5.png]] 720 - 721 -[[image:image-20220709165402-4.png]] 722 - 723 -{{code language="java"}} 724 -{ 725 - 726 - "Version": "2012-10-17", 727 - 728 - "Statement": [ 729 - 730 - { 731 - 732 - "Effect": "Allow", 733 - 734 - "Action": [ 735 - 736 - "iot:Connect", 737 - 738 - "iot:Publish", 739 - 740 - "iot:Subscribe", 741 - 742 - "iot:Receive", 743 - 744 - "greengrass:Discover" 745 - 746 - ], 747 - 748 - "Resource": "*" 749 - 750 - } 751 - 752 - ] 753 - 754 -} 755 -{{/code}} 756 - 757 -=== **Create things** === 758 - 759 -Click “Manage”~-~-->“Things”~-~-->“Create things”~-~-->“Create single thing” 760 - 761 -[[image:image-20220709165402-6.png]] 762 - 763 -[[image:image-20220709165402-7.png]] 764 - 765 -Name the thing~-~-->Click “Next” 766 - 767 -[[image:image-20220709165402-8.png]] 768 - 769 -Select the way to create certificate 770 - 771 -[[image:image-20220709165402-9.png]] 772 - 773 -Select policy 774 - 775 -[[image:image-20220709165402-10.png]] 776 - 777 -[[image:image-20220709165402-11.png]] 778 - 779 - 780 -=== **Test with MQTT.fx tool** === 781 - 782 -Click “View Setting” to get the “Broker Adress” 783 - 784 -[[image:image-20220709165402-13.png]] 785 - 786 -[[image:image-20220709165402-12.png]] 787 - 788 -Create one connection in MQTT.fx tool, set broker port as 8883. 789 - 790 -[[image:image-20220709165402-14.png]] 791 - 792 -Upload the CA File, Client Certificate File, Client Key File 793 - 794 -[[image:image-20220709165402-15.png]] 795 - 796 -Publish message to topic “TEST” 797 - 798 -[[image:image-20220709165402-17.png]] 799 - 800 -Click”Test”~-~-->”MQTT test client”~-~-->”Subscrible to a topic”, to get message publish from MQTT.fx tool. 801 - 802 -[[image:image-20220709173500-1.png]] 803 - 804 -And we can also send message form AWS platform to MQTT.fx tool. 805 - 806 -[[image:image-20220709165402-18.png]] 807 - 808 -=== **Configurate in CloudTool** === 809 - 810 -Copy the same setting in MQTT.fx to MQTT configuration 811 - 812 -[[image:image-20220709165402-19.png]] 813 - 814 - Add a lua script and copy the lua demo into it. 815 - 816 -[[image:image-20220709165402-20.png]] 817 - 818 -sprint = print 819 - 820 -~-~-Cloud mode interface to obtain the MQTT information configured by the cloud platform: (5 returns, namely the server address, client ID, connection table, last word table, certificate table) 821 - 822 -local MQTT_URL, MQTT_CLIENTID, MQTT_CFG, MQTT_LWT, MQTT_CART = mqtt.setup_cfg() 823 - 824 -~-~-publish to topics 825 - 826 -local pub_RE_TOPIC = string.format('TEST') 827 - 828 -~-~-Subscribe topics 829 - 830 -local Subscribe_RE_TOPIC1 = string.format('TEST') 831 - 832 -~-~-variable 833 - 834 -local last_time = 0 835 - 836 -~-~-Timing main function 837 - 838 -function aws.main() 839 - 840 - sprint(os.date("%Y-%m-%d %H:%M %S", os.time()) .. " aws.main start") 841 - 842 - if g_mq then 843 - 844 - if g_mq:isconnected() then 845 - 846 - send_Data() 847 - 848 - else 849 - 850 - if os.time() - last_time > 5 then 851 - 852 - last_time = os.time() 853 - 854 - mymqtt_connect() 855 - 856 - end 857 - 858 - end 859 - 860 - else 861 - 862 - mymqtt_init() 863 - 864 - end 865 - 866 - sprint(os.date("%Y-%m-%d %H:%M %S", os.time()) .. " aws.main end") 867 - 868 -end 869 - 870 - 871 -~-~- Initialize MQTT 872 - 873 -function mymqtt_init() 874 - 875 - sprint(string.format("mqtt init mqtt_url:%s mqtt_clientid:%s", MQTT_URL, MQTT_CLIENTID)) 876 - 877 - g_mq, err = mqtt.create(MQTT_URL, MQTT_CLIENTID) ~-~- Create the object and declare it as a global variable 878 - 879 - if g_mq then 880 - 881 - g_mq:on("message", mymqtt_msg_callback) ~-~- Register to receive message callbacks 882 - 883 - sprint("mqtt init success") 884 - 885 - else 886 - 887 - sprint("mqtt init failed:", err) 888 - 889 - end 890 - 891 -end 892 - 893 -~-~- Connect to MQTT server 894 - 895 -function mymqtt_connect() 896 - 897 - sprint("mqtt connecting...") 898 - 899 - local stat, err = g_mq:connect(MQTT_CFG,MQTT_LWT, MQTT_CART) 900 - 901 - if stat == nil then 902 - 903 - sprint("mqtt connect failed:", err) 904 - 905 - return 906 - 907 - else 908 - 909 - sprint("mqtt connected") 910 - 911 - end 912 - 913 - g_mq:subscribe(TEST, 0) 914 - 915 -end 916 - 917 -~-~- Receive MQTT message callback function 918 - 919 -function mymqtt_msg_callback(topic, msg) 920 - 921 - print("topic:",topic) 922 - 923 - print("revdata:",msg) 924 - 925 - local revData = json.decode(msg) 926 - 927 - print (revData) 928 - 929 - if topic == Subscribe_RE_TOPIC1 then ~-~-Process topic information subscribed from the cloud 930 - 931 -if string.match(topic,Subscribe_RE_TOPIC1) then 932 - 933 - ~-~-if revData ~~= nil then 934 - 935 - for k,v in pairs (revData) do 936 - 937 - print("printing revdata after kv here") 938 - 939 - print (k,v) 940 - 941 - end 942 - 943 - print ("current state is",fanstate) 944 - 945 - ~-~-end 946 - 947 -end 948 - 949 -end 950 - 951 -end 952 - 953 - 954 -~-~-Get real-time data 955 - 956 -function getData() 957 - 958 - local jdata = {} 959 - 960 - local addr = bns_get_alldata() 961 - 962 - print(json.encode(addr)) 963 - 964 - for i,v in pairs(addr) do 965 - 966 - if v[2] == 1 then 967 - 968 - jdata[v[3]] = v[4] 969 - 970 - end 971 - 972 - end 973 - 974 - return jdata 975 - 976 -end 977 - 978 -~-~-send data 979 - 980 -function send_Data() 981 - 982 - local pub_data = 983 - 984 - { 985 - 986 -123 987 - 988 -} 989 - 990 -sprint(json.encode(pub_data)) 991 - 992 -print("..........",pub_RE_TOPIC) 993 - 994 - return g_mq:publish(pub_RE_TOPIC, json.encode(pub_data), 0, 0) 995 - 996 -end 997 - 998 -Get message in AWS 999 - 1000 -[[image:image-20220709165402-21.png]] 635 +[[https:~~/~~/ftp.we-con.com.cn/Download/WIKI/V-BOX/Demo/AWS/AWS.zip>>https://ftp.we-con.com.cn/Download/WIKI/V-BOX/Demo/AWS/AWS.zip]]
- image-20220709165226-1.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -1.2 MB - Content
- image-20220709165402-1.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -200.2 KB - Content
- image-20220709165402-10.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -19.0 KB - Content
- image-20220709165402-11.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -105.9 KB - Content
- image-20220709165402-12.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -29.0 KB - Content
- image-20220709165402-13.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -158.8 KB - Content
- image-20220709165402-14.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -48.1 KB - Content
- image-20220709165402-15.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -46.9 KB - Content
- image-20220709165402-16.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -140.7 KB - Content
- image-20220709165402-17.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -12.5 KB - Content
- image-20220709165402-18.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -32.2 KB - Content
- image-20220709165402-19.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -66.6 KB - Content
- image-20220709165402-2.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -188.5 KB - Content
- image-20220709165402-20.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -33.3 KB - Content
- image-20220709165402-21.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -124.8 KB - Content
- image-20220709165402-3.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -103.9 KB - Content
- image-20220709165402-4.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -4.0 KB - Content
- image-20220709165402-5.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -66.5 KB - Content
- image-20220709165402-6.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -110.0 KB - Content
- image-20220709165402-7.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -25.4 KB - Content
- image-20220709165402-8.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -64.2 KB - Content
- image-20220709165402-9.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -37.5 KB - Content
- image-20220709173500-1.png
-
- Author
-
... ... @@ -1,1 +1,0 @@ 1 -XWiki.Jim - Size
-
... ... @@ -1,1 +1,0 @@ 1 -1.5 MB - Content