changeset 1135:32ad0e5ff0fc

HttpUrlStatsMetric - in progress
author Devel 1
date Mon, 08 Jun 2020 22:44:16 +0200
parents 599886ac3146
children 8e488159250f
files stress-tester/src/main/java/com/passus/st/scanner/HttpUrlStatsMetric.java stress-tester/src/test/java/com/passus/st/scanner/HttpUrlStatsMetricTest.java stress-tester/src/test/resources/com/passus/st/scanner/nginx.csv
diffstat 3 files changed, 10116 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/stress-tester/src/main/java/com/passus/st/scanner/HttpUrlStatsMetric.java	Mon Jun 08 14:16:03 2020 +0200
+++ b/stress-tester/src/main/java/com/passus/st/scanner/HttpUrlStatsMetric.java	Mon Jun 08 22:44:16 2020 +0200
@@ -5,16 +5,34 @@
 import org.apache.commons.lang3.mutable.MutableInt;
 
 import java.util.HashMap;
+import java.util.Map;
 
 public class HttpUrlStatsMetric extends GenericMetric {
 
     public static final String DEFAULT_NAME = "HTTP URL stats";
 
-    private HashMap<String, MutableInt> urls = new HashMap<>();
+    private static final String[] CLEAN_RULES_ARR = {
+        ".css", ".js",
+        ".jpg", ".png", ".svg", ".gif", ".ico",
+        ".ttf", ".woff", ".woff2", ".eot",
+        ".pdf", ".doc", ".docx", ".ppt", ".pptx", ".txt",
+        "captcha"
+    };
+
+    private final HashMap<String, MutableInt> cleaned = new HashMap<>();
+
+    private final HashMap<String, MutableInt> urls = new HashMap<>();
+
+    {
+        for (String clean : CLEAN_RULES_ARR) {
+            cleaned.put(clean, new MutableInt());
+        }
+    }
 
     public HttpUrlStatsMetric(String name) {
         super(name);
         attrs.put("urls", urls);
+        attrs.put("cleaned", cleaned);
     }
 
     public HttpUrlStatsMetric() {
@@ -22,17 +40,47 @@
     }
 
     public void addUrl(String url) {
-        Metric.incrementCountMap(url, urls);
+        boolean ignored = false;
+        for (Map.Entry<String, MutableInt> e : cleaned.entrySet()) {
+            if (url.contains(e.getKey())) {
+                e.getValue().increment();
+                ignored = true;
+                break;
+            }
+        }
+        if (!ignored) {
+            Metric.incrementCountMap(url, urls);
+            String path;
+            String query;
+            int qidx = url.indexOf('?');
+            if (qidx < 0) {
+                path = url;
+                query = "";
+            } else {
+                path = url.substring(0, qidx);
+                if (qidx < url.length()) {
+                    query = url.substring(qidx + 1);
+                } else {
+                    query = "";
+                }
+            }
+            
+            path = path.toLowerCase().trim();
+            query = query.toLowerCase().trim();
+//            method = 
+        }
     }
 
     @Override
     public void update(Metric metric) {
         HttpUrlStatsMetric m = (HttpUrlStatsMetric) metric;
         Metric.updateCountMap(urls, m.urls);
+        Metric.updateCountMap(cleaned, m.cleaned);
     }
 
     @Override
     public void reset() {
         urls.clear();
+        cleaned.clear();
     }
 }
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/stress-tester/src/test/java/com/passus/st/scanner/HttpUrlStatsMetricTest.java	Mon Jun 08 22:44:16 2020 +0200
@@ -0,0 +1,66 @@
+package com.passus.st.scanner;
+
+import com.passus.commons.metric.Metric;
+import com.passus.st.utils.TestResourceUtils;
+import java.io.BufferedReader;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.InputStreamReader;
+import java.io.Serializable;
+import java.nio.charset.StandardCharsets;
+import java.util.HashMap;
+import java.util.Map;
+import org.apache.commons.lang3.mutable.MutableInt;
+import static org.testng.AssertJUnit.*;
+import org.testng.annotations.Test;
+
+/**
+ *
+ * @author mikolaj.podbielski
+ */
+public class HttpUrlStatsMetricTest {
+
+    @Test
+    public void testAddUrl() throws Exception {
+        HttpUrlStatsMetric instance = new HttpUrlStatsMetric();
+
+        File file = TestResourceUtils.getFile("com/passus/st/scanner/nginx.csv");
+        try (FileInputStream fis = new FileInputStream(file);
+                InputStreamReader isr = new InputStreamReader(fis, StandardCharsets.UTF_8);
+                BufferedReader br = new BufferedReader(isr)) {
+            for (String line; (line = br.readLine()) != null;) {
+                instance.addUrl(line);
+            }
+        }
+
+        HashMap<String, MutableInt> cleaned = (HashMap<String, MutableInt>) instance.getAttributeValue("cleaned");
+        assertEquals(435, cleaned.get(".js").intValue());
+        assertEquals(155, cleaned.get(".css").intValue());
+        assertEquals(613, sumValues(cleaned));
+
+        HashMap<String, MutableInt> urls = (HashMap<String, MutableInt>) instance.getAttributeValue("urls");
+        assertEquals(9387, sumValues(urls));
+
+        System.out.println("");
+    }
+
+    static int sumValues(HashMap<String, MutableInt> m) {
+        int sum = 0;
+        for (Map.Entry<String, MutableInt> e : m.entrySet()) {
+            sum += e.getValue().intValue();
+        }
+        return sum;
+    }
+
+    @Test
+    public void testUpdate() {
+        System.out.println("update");
+        Metric metric = null;
+        HttpUrlStatsMetric instance = new HttpUrlStatsMetric();
+        instance.update(metric);
+        instance.reset();
+        // TODO review the generated test code and remove the default call to fail.
+        fail("The test case is a prototype.");
+    }
+
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/stress-tester/src/test/resources/com/passus/st/scanner/nginx.csv	Mon Jun 08 22:44:16 2020 +0200
@@ -0,0 +1,10000 @@
+/ably?clientId=production_au.client%2F2689116&rnd=472337606124585
+/ably?clientId=production_au.client/3349798&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538321145.416488&access_code=sqxwycta&format=msgpack
+/ably?access_code=npucmocp&clientId=production_au.client/3172671&capability=
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=29626696458216895
+/ably?clientId=production_au.client%2F3076442&rnd=3970347051703975
+/ably?rnd=13084722039822405
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5129648878998936
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=30392034164501447
+/okcomputer
+/ably?rnd=5229214365542383
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=39344877787896637
+/ably?access_code=npucmocp&clientId=production_au.client/3172671&capability=
+/ably?clientId=production_au.client%2F2788682&rnd=9523362708311757
+/ably?clientId=production_au.client/3349798&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538321163.032402&access_code=sqxwycta&format=msgpack
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=901144707322701
+/ably?clientId=production_au.client%2F2210734&rnd=8475704831204978
+/ably?clientId=production_au.client%2F3411804&rnd=2545128770917714
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5084154364088551
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=43911566482050635
+/ably?clientId=production_au.client%2F2359097&rnd=43149086772575695
+/ably?clientId=production_au.client%2F2689116&rnd=24591923006487848
+/ably?clientId=production_au.client%2F3384126&rnd=24545188783369942
+/ably?clientId=production_au.client%2F3254665&rnd=7701448225450263
+/okcomputer
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8474905602804341
+/ably?clientId=production_au.client%2F3076442&rnd=13715093129467115
+/ably?rnd=9342809822055431
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7914463029748444
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=42265359264824487
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6336471843054465
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2788682&rnd=9333238842977027
+/ably?clientId=production_au.client%2F3352931&rnd=9457306478305152
+/ably?clientId=production_au.client%2F3411804&rnd=20385464683154408
+/pt/ably?clientId=production_au.provider%2F540919&rnd=1725417220335883
+/ably?clientId=production_au.client%2F2210734&rnd=6733666028429439
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=22549779928969893
+/ably?clientId=production_au.client%2F2689116&rnd=18817240874421381
+/ably?clientId=production_au.client%2F2359097&rnd=18753506877750525
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=89943553138772
+/ably?clientId=production_au.client%2F3254665&rnd=10010449090866769
+/okcomputer
+/ably?rnd=17598684133251186
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=51811495261028
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=0851263874445578
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9215350836976757
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=1746370229330303
+/ably?clientId=production_au.client%2F3076442&rnd=23794217368564008
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9834423435359676
+/ably?clientId=production_au.client%2F2788682&rnd=19091048472182148
+/ably?clientId=production_au.client%2F2210734&rnd=30470066346198466
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=23875434228089065
+/ably?clientId=production_au.client%2F3352931&rnd=3964103195473494
+/ably?clientId=production_au.client%2F2689116&rnd=06796424229839682
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=5048238096822317
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7571455940064507
+/okcomputer
+/ably?rnd=15125044210933014
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3767281016591306
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=41771402869237795
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=524288447365187
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F3254665&rnd=5803804086675537
+/ably?clientId=production_au.client%2F3411804&rnd=9009698330351339
+/pt/ably?clientId=production_au.provider%2F540919&rnd=062050669334617004
+/okcomputer
+/ably?clientId=production_au.client%2F2788682&rnd=42323221149417056
+/pt/ably?clientId=production_au.provider%2F1460&rnd=7752997945134787
+/ably?clientId=production_au.client%2F2210734&rnd=07295551447034154
+/ably?clientId=production_au.client%2F2689116&rnd=8409741651601481
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=4570120055957805
+/ably?clientId=production_au.client%2F3076442&rnd=4627505363042961
+/ably?clientId=production_au.client%2F2359097&rnd=12273475219155938
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8707933410517659
+/okcomputer
+/ably?rnd=2958454434254847
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7193330442456523
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=47590758060339944
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=44212238331561116
+/api/patient/zkqvdanu/device_registration/ios
+/api/patient/zkqvdanu/messages?birthYear=1962
+/api/patient/zkqvdanu/messages?birthYear=1962
+/api/patient/zkqvdanu/video_calls/channel
+/ably?clientId=production_au.client%2F3352931&rnd=9054952295952596
+/ably?clientId=production_au.client/2177623&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538321282.944942&access_code=zkqvdanu&format=msgpack
+/okcomputer
+/api/patient/zkqvdanu/program?birthYear=1962
+/api/patient/zkqvdanu/program?birthYear=1962
+/api/patient/zkqvdanu/settings
+/api/patient/zkqvdanu/settings
+/ably?clientId=production_au.client%2F3411804&rnd=9387364410723944
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7050650362217026
+/okcomputer
+/ably?clientId=production_au.client%2F2802754&rnd=3317382013506345
+/ably?clientId=production_au.client%2F2210734&rnd=05397127327472662
+/ably?clientId=production_au.client%2F2788682&rnd=8961988974618413
+/ably?clientId=production_au.client%2F2689116&rnd=14497380366554613
+/okcomputer
+/ably?clientId=production_au.client%2F3254665&rnd=3818055569188237
+/ably?clientId=production_au.client%2F2689116&rnd=31797217415121337
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3076442&rnd=8408826867422784
+/ably?clientId=production_au.client%2F2359097&rnd=30556870278655723
+/pt/ably?clientId=production_au.provider%2F193566&rnd=11527621470812277
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F723918&rnd=5093128893798181
+/ably?rnd=8521957188934219
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6667080169414463
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3772510629192296
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9278123498107935
+/okcomputer
+/okcomputer/all
+/ably?access_code=fiuojbgq&clientId=production_au.client/3396064&capability=
+/ably?capability=&clientId=production_au.client/3417095&access_code=opozhukh
+/ably?clientId=production_au.client%2F3411804&rnd=9777066449246345
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F95&rnd=6878736931349883
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9282015888132609
+/ably?clientId=production_au.client%2F2802754&rnd=42089373971802835
+/ably?access_code=rbaqbbfz&clientId=production_au.client/2858296&capability=
+/ably?clientId=production_au.client%2F3223240&rnd=6054183175092376
+/ably?clientId=production_au.client%2F2210734&rnd=5561021051242161
+/ably?clientId=production_au.client%2F3352931&rnd=21089384445511206
+/ably?clientId=production_au.client%2F2689116&rnd=9855274137289998
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=01162578144062909
+/ably?clientId=production_au.client%2F2788682&rnd=3436749874421363
+/pt/ably?clientId=production_au.provider%2F193566&rnd=18438015200440017
+/users/sign_in
+/ably?clientId=production_au.client%2F2359097&rnd=8549912006698672
+/okcomputer
+/exercises
+/ably?rnd=34710458194282956
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=1956030436829559
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5805735101845109
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8603495811243109
+/themes/7/categories.json
+/okcomputer
+/exercises.json?exercise_search%5Bquery%5D=&exercise_search%5Bfilters%5D%5Bdifficulty%5D=&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=2&exercise_search%5Bfilters%5D%5Bequipment_ids%5D=&exercise_search%5Bfilters%5D%5Btheme_ids%5D%5B%5D=7&exercise_search%5Bfilters%5D%5Bno_equipment%5D=false&exercise_search%5Bfilters%5D%5Bfavourites_only%5D=false&page=1
+/okcomputer
+/cart/exercises
+/ably?clientId=production_au.client%2F3411804&rnd=773972913274493
+/pt/ably?clientId=production_au.provider%2F540919&rnd=674571001970014
+/ably?clientId=production_au.client%2F3076442&rnd=5074026075222028
+/cart/exercises
+/ably?clientId=production_au.client%2F2210734&rnd=7063329159777554
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7089497008132224
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2689116&rnd=13306826986282294
+/cart/exercises/1113
+/login
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/ably?clientId=production_au.client%2F2788682&rnd=7019824368945017
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4267309169004818
+/users/sign_in
+/exercises
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/ably?clientId=production_au.client%2F2359097&rnd=7210588843740444
+/themes/0/categories.json
+/ably?capability=&clientId=production_au.client/3171399&access_code=wyzcqjbv
+/ably?rnd=002900182634761439
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7579263787535175
+/exercises.json?page=1
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=41184153099595755
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F3254665&rnd=5106126778525886
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5774462371894815
+/cart/exercises
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=9740003424032113
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9766215389368345
+/cart/exercises
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=8764318219034792
+/ably?clientId=production_au.client%2F2210734&rnd=8376009690005894
+/ably?clientId=production_au.client%2F2689116&rnd=37873795487292905
+/ably?clientId=production_au.client%2F3076442&rnd=4270351345371476
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7190770517545881
+/ably?clientId=production_au.client%2F2788682&rnd=6188272084339703
+/ably?clientId=production_au.client%2F2359097&rnd=76275067477795
+/ably?rnd=2790573087121029
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=314647288779609
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4787314685772033
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8534380458018591
+/ably?clientId=production_au.client%2F3254665&rnd=16658615309056413
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=4873565958217198
+/pt/ably?clientId=production_au.provider%2F540919&rnd=12314531772986537
+/ably?clientId=production_au.client%2F3352931&rnd=26193209528519
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/ably?clientId=production_au.client%2F2792761&rnd=8641225580637067
+/ably?capability=&clientId=production_au.client/2362801&access_code=oiykeoxx
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2689116&rnd=17590034154011303
+/ably?clientId=production_au.client%2F2210734&rnd=5388794118922366
+/ably?clientId=production_au.client%2F2689116&rnd=9019822002168574
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=47565404319709437
+/ably?clientId=production_au.client%2F3076442&rnd=47572254959624427
+/ably?clientId=production_au.client%2F2359097&rnd=11199896619804894
+/ably?rnd=44597496834642536
+/okcomputer
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8042560610013612
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3448282811316059
+/ably?clientId=production_au.client%2F2788682&rnd=3889019720195771
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7228393018230364
+/okcomputer
+/users/sign_in
+/exercises
+/ably?clientId=production_au.client%2F3411804&rnd=6260200065456878
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8327105697528088
+/themes/7/categories.json
+/exercises.json?exercise_search%5Bquery%5D=&exercise_search%5Bfilters%5D%5Bdifficulty%5D=&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=2&exercise_search%5Bfilters%5D%5Bequipment_ids%5D=&exercise_search%5Bfilters%5D%5Btheme_ids%5D%5B%5D=7&exercise_search%5Bfilters%5D%5Bno_equipment%5D=false&exercise_search%5Bfilters%5D%5Bfavourites_only%5D=false&page=1
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=09479346423798685
+/exercises.json?exercise_search%5Bquery%5D=&exercise_search%5Bfilters%5D%5Bdifficulty%5D=&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=2&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=5&exercise_search%5Bfilters%5D%5Bequipment_ids%5D=&exercise_search%5Bfilters%5D%5Btheme_ids%5D%5B%5D=7&exercise_search%5Bfilters%5D%5Bno_equipment%5D=false&exercise_search%5Bfilters%5D%5Bfavourites_only%5D=false&page=1
+/ably?clientId=production_au.client%2F2210734&rnd=3002684751824036
+/ably?clientId=production_au.client%2F3254665&rnd=23977774586553013
+/ably?clientId=production_au.client%2F2689116&rnd=13380469659943972
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=20372934238899076
+/ably?clientId=production_au.client%2F3352931&rnd=11277496012651955
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=6739917037779608
+/ably?rnd=43740269505100193
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=08980741149299698
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9357051910480041
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5922344559248651
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=06477337852399151
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3787499713529714
+/ably?capability=&clientId=production_au.client/2781794&access_code=yxmynvss
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=6443612707910732
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2788682&rnd=1469209831131031
+/ably?clientId=production_au.client%2F2689116&rnd=567681716970337
+/ably?clientId=production_au.client%2F2210734&rnd=07793382302677143
+/ably?clientId=production_au.client%2F2689116&rnd=9035697776008307
+/okcomputer
+/ably?clientId=production_au.client%2F3254665&rnd=04823315423093777
+/pt/ably?clientId=production_au.provider%2F193566&rnd=2910546770665563
+/okcomputer
+/okcomputer/all
+/ably?rnd=8747363340587806
+/ably?clientId=production_au.client%2F2359097&rnd=7228206082784969
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=1427641038625238
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=40875683107584115
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8069441081748292
+/okcomputer
+/api/patient/uqpuwaju/video_calls/channel
+/api/patient/uqpuwaju/device_registration/ios
+/ably?clientId=production_au.client/3386648&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538321502.563823&access_code=uqpuwaju&format=msgpack
+/api/patient/uqpuwaju/program
+/api/patient/uqpuwaju/settings
+/api/patient/uqpuwaju/program
+/api/patient/uqpuwaju/settings
+/ably?clientId=production_au.client%2F3352931&rnd=03900800041647878
+/ably?clientId=production_au.client%2F3411804&rnd=20945820370008483
+/pt/ably?clientId=production_au.provider%2F540919&rnd=08837390302996595
+/okcomputer
+/api/patient/uqpuwaju/exercises/405675456/complete
+/ably?clientId=production_au.client%2F2788682&rnd=7417264363035595
+/ably?rnd=04845481382306205
+/ably?clientId=production_au.client%2F2689116&rnd=3647409773434893
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7567838416524624
+/ably?clientId=production_au.client/3386648&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538321518.270570&access_code=uqpuwaju&format=msgpack
+/ably?clientId=production_au.client%2F2210734&rnd=676222343826616
+/ably?capability=&clientId=production_au.client/3417095&access_code=opozhukh
+/pt/ably?clientId=production_au.provider%2F193566&rnd=2171910274500055
+/ably?clientId=production_au.client%2F3254665&rnd=9066116661709964
+/okcomputer
+/ably?rnd=0865545691875127
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=15238920742885886
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6258830315552928
+/ably?clientId=production_au.client%2F2359097&rnd=3299118231631115
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6467900802442899
+/ably?clientId=production_au.client%2F3076442&rnd=15766266423854292
+/okcomputer
+/api/patient/uqpuwaju/exercises/405764937/complete
+/ably?clientId=production_au.client/3386648&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538321534.839788&access_code=uqpuwaju&format=msgpack
+/ably?access_code=bruefzdz&clientId=production_au.client/3400820&capability=
+/ably?clientId=production_au.client%2F3411804&rnd=7702991941966553
+/ably?capability=&clientId=production_au.client/3416247&access_code=czdcjvrg
+/ably?capability=&clientId=production_au.client/3416247&access_code=czdcjvrg
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6842075597982249
+/okcomputer
+/api/patient/uqpuwaju/exercises/405772081/complete
+/home-exercise-video/plank
+/api/patient/sqxwycta/exercises/400352136/complete
+/exercises.json?exercise_search%5Bquery%5D=&exercise_search%5Bfilters%5D%5Bdifficulty%5D=&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=2&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=5&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=55&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=56&exercise_search%5Bfilters%5D%5Bequipment_ids%5D=&exercise_search%5Bfilters%5D%5Btheme_ids%5D%5B%5D=7&exercise_search%5Bfilters%5D%5Bno_equipment%5D=false&exercise_search%5Bfilters%5D%5Bfavourites_only%5D=false&page=1
+/ably?clientId=production_au.client%2F3352931&rnd=9326860913480783
+/ably?clientId=production_au.client%2F2689116&rnd=5459497877353507
+/okcomputer
+/api/patient/uqpuwaju/exercises/405772221/complete
+/ably?clientId=production_au.client%2F2689116&rnd=10434916719649157
+/ably?clientId=production_au.client%2F2788682&rnd=040483557326783215
+/ably?clientId=production_au.client%2F2210734&rnd=6954866689816315
+/pt/ably?clientId=production_au.provider%2F193566&rnd=11743848808398982
+/api/patient/uqpuwaju/exercises/405772592/complete
+/okcomputer
+/okcomputer/all
+/ably?rnd=9125228889028305
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=16562455211254923
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6887058103656238
+/ably?clientId=production_au.client%2F2359097&rnd=3505474179480208
+/ably?clientId=production_au.client%2F3254665&rnd=11702129339525391
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3998461313797408
+/okcomputer
+/api/patient/uqpuwaju/exercises/405774615/complete
+/ably?clientId=production_au.client%2F3076442&rnd=8245634927078392
+/ably?clientId=production_au.client%2F3411804&rnd=6167733386322765
+/okcomputer
+/api/patient/uqpuwaju/exercises/405764965/complete
+/pt/ably?clientId=production_au.provider%2F540919&rnd=2080546450422478
+/cart/exercises
+/api/patient/uqpuwaju/exercises/405765000/complete
+/ably?clientId=production_au.client%2F2689116&rnd=9610091871936672
+/okcomputer
+/cart/exercises
+/ably?clientId=production_au.client%2F2689116&rnd=2873120232282773
+/api/patient/uqpuwaju/exercises/405765766/complete
+/pt/ably?clientId=production_au.provider%2F193566&rnd=13154474205145017
+/ably?clientId=production_au.client%2F2210734&rnd=7756015318297094
+/okcomputer
+/ably?clientId=production_au.client%2F2788682&rnd=8785672321146604
+/ably?rnd=6200282925678642
+/ably?clientId=production_au.client%2F3352931&rnd=7127219525517148
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=428236951742629
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=967786067429341
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=7140440195839706
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3673972061630042
+/api/patient/uqpuwaju/exercises/405771118/complete
+/ably?clientId=production_au.client%2F3411804&rnd=4482526963431712
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=43463896542108427
+/home-exercise-video/plank
+/api/patient/uqpuwaju/exercises/405771468/complete
+/ably?capability=&clientId=production_au.client/2684167&access_code=ftxuohyu
+/ably?clientId=production_au.client%2F3254665&rnd=3947078105275261
+/ably?clientId=production_au.client%2F3076442&rnd=5719778453644372
+/okcomputer
+/ably?capability=&clientId=production_au.client/2684167&access_code=ftxuohyu
+/ably?clientId=production_au.client%2F2689116&rnd=725655042330613
+/api/patient/uqpuwaju/exercises/405771503/complete
+/ably?clientId=production_au.client%2F2689116&rnd=763080175436494
+/ably?capability=&clientId=production_au.client/1883949&access_code=cmsmdtfa
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4276987727395096
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=07531583289560184
+/api/patient/uqpuwaju/exercises/405771591/complete
+/ably?clientId=production_au.client%2F2788682&rnd=6235870369418749
+/ably?rnd=6007263520838559
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=027449219868674657
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9189321039538816
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8813667369544536
+/ably?clientId=production_au.client%2F2359097&rnd=24064464792403717
+/pt/ably?clientId=production_au.provider%2F471723&rnd=22030815667468384
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=7002748625626962
+/ably?capability=&client_id=production_au.client/1640879&access_code=enmaxjox
+/pt/ably?clientId=production_au.provider%2F540919&rnd=2065827838426071
+/api/patient/uqpuwaju/exercises/405771850/complete
+/ably?clientId=production_au.client%2F3352931&rnd=36289910608266607
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=002750070985251485
+/ably?clientId=production_au.client%2F3254665&rnd=6627494513761678
+/ably?clientId=production_au.client%2F2689116&rnd=08920031371916992
+/api/patient/uqpuwaju/exercises/405772039/complete
+/pt/ably?clientId=production_au.provider%2F193566&rnd=902187478822392
+/okcomputer
+/api/patient/uqpuwaju/exercises/405797851/complete
+/ably?clientId=production_au.client%2F2210734&rnd=2695690340099104
+/ably?rnd=23189780220943446
+/ably?clientId=production_au.client%2F2788682&rnd=8698078652354212
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7479431955514038
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8523235556727782
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=08199197708550687
+/ably?clientId=production_au.client%2F3076442&rnd=13362737865922236
+/ably?clientId=production_au.client%2F2359097&rnd=6627183994498824
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=015245938313437734
+/home-exercise-video/plank
+/ably?capability=&clientId=production_au.client/2663144&access_code=gpfrjaru
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6880052266559504
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=25553513027430186
+/ably?clientId=production_au.client%2F2689116&rnd=40164113872722096
+/ably?clientId=production_au.client%2F3254665&rnd=5267598936373279
+/okcomputer/all
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4288526858524917
+/ably?capability=&clientId=production_au.client/2765934&access_code=hwptbjiw
+/ably?clientId=production_au.client%2F2210734&rnd=7501982347423473
+/ably?rnd=10084372316999413
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=014181234912906238
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9903155690732202
+/ably?access_code=dikbtxvu&clientId=production_au.client/3417083&capability=
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=27441770944953237
+/ably?clientId=production_au.client%2F2359097&rnd=7979805771999588
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=4292265163385603
+/pt/ably?clientId=production_au.provider%2F540919&rnd=001407457104086074
+/access/physiapp/xnrxopes
+/ably?clientId=production_au.client%2F3076442&rnd=6175147230599538
+/okcomputer
+/access/physiapp/xnrxopes
+/ably?access_code=rcojjreu&clientId=production_au.client/2857549&capability=
+/ably?access_code=rcojjreu&clientId=production_au.client/2857549&capability=
+/ably?clientId=production_au.client%2F2844195&rnd=7613959878043652
+/ably?clientId=production_au.client%2F2689116&rnd=06908329588541107
+/ably?clientId=production_au.client%2F2689116&rnd=8017654990165548
+/ably?clientId=production_au.client%2F2788682&rnd=5323132059650536
+/okcomputer
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/pt/ably?clientId=production_au.provider%2F193566&rnd=11876411314198143
+/ably?clientId=production_au.client%2F3254665&rnd=8169167135051374
+/ably?capability=&clientId=production_au.client/3401227&access_code=xsyghvis
+/.well-known/apple-app-site-association
+/ably?clientId=production_au.client%2F2210734&rnd=3667267676928929
+/okcomputer
+/ably?rnd=7180871769523345
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5601511765358456
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9966995873083693
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=30402730288341817
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=5094644518046543
+/ably?clientId=production_au.client%2F3352931&rnd=5038205261191984
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3389692&rnd=2964985257749484
+/ably?clientId=production_au.client%2F3411804&rnd=528865634133018
+/pt/ably?clientId=production_au.provider%2F540919&rnd=20897413317537739
+/ably?clientId=production_au.client%2F3076442&rnd=10208781650124732
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=606319214715592
+/ably?clientId=production_au.client%2F2689116&rnd=015868015981706174
+/okcomputer/all
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6171630731415632
+/exercises
+/anonymous_session
+/servers/demo
+/okcomputer
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/ably?clientId=production_au.client%2F2788682&rnd=37331523471895867
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/ably?clientId=production_au.client%2F2210734&rnd=8778919872728002
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/ably?rnd=027650213637068433
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2916691581161026
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7086289278707754
+/assets/pt/gb-6e3c323131e4d135e5e0fe5c347dc017a4f047560345dd019a4f8bab89a2fe14.svg
+/assets/pt/es-270bf782c1418e74e5891a16f8b05fc8114edfcf92793bf656cefe2e713e7c26.png
+/assets/pt/ie-5682d5880e5b217ed0e3d4b02012d43a0af54314021aaa35e6b3c0448926f89b.png
+/assets/pt/us-da972f763ff2c172073c355329a5bc46361fe58af040d11fc0eb326c73c91a7b.svg
+/assets/pt/ca-b3d2c4619761915b1d946d9a730ccfefdd2a5803c881ad357ba7fec324cd4b83.svg
+/assets/pt/fr-02c60c216b4a2274adb119547540899b87ba166ea0fd607e5baecf32f8af6586.svg
+/assets/pt/au-7b7b9bb584e5d247fd86c837afff021567f7d7e74eccdcac4764007811c10ff2.svg
+/assets/pt/nl-f9ef98965ae311bf847855b4bde6f559a559b4c58e499e5d1f79917438727a3c.svg
+/assets/pt/nz-083a746604c8d9afc02decf92e02ee43a38ca3ae2a62829b925f69972dff784d.svg
+/assets/pt/de-2f204ac18e3527b313ce45cd6d63ef4f0415621b31663443845e1a598debd3c2.svg
+/ably?clientId=production_au.client%2F3383671&rnd=31394959629323793
+/ably?clientId=production_au.client%2F3383671&rnd=4762498175962182
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=19874596101647835
+/ably?capability=&clientId=production_au.client/3222559&access_code=fqjnjqdh
+/okcomputer
+/ably?clientId=production_au.client%2F3254665&rnd=7805764099993249
+/ably?clientId=production_au.client%2F3411804&rnd=7357912156435924
+/servers
+/ably?clientId=production_au.client%2F2359097&rnd=4726580364737447
+/pt/ably?clientId=production_au.provider%2F540919&rnd=19432867599299652
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=9087003291212862
+/ably?clientId=production_au.client%2F2689116&rnd=7373492342258872
+/ably?clientId=production_au.client%2F2689116&rnd=46701025930849416
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=750410523671303
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6310414249826188
+/okcomputer
+/ably?clientId=production_au.client%2F2782109&rnd=9318672809383176
+/ably?clientId=production_au.client%2F2782109&rnd=6677550099258773
+/ably?clientId=production_au.client%2F2210734&rnd=684637522213732
+/ably?rnd=4697494395940429
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3002080429921148
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5457871240341892
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5629999868283573
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2788682&rnd=2761024999475036
+/ably?clientId=production_au.client%2F3411804&rnd=7384348238000219
+/ably?capability=&clientId=production_au.client/3351835&access_code=jigwovxu
+/ably?clientId=production_au.client%2F3254665&rnd=26216653929826506
+/ably?clientId=production_au.client%2F2359097&rnd=5450887414522127
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=36954349156680566
+/ably?clientId=production_au.client%2F2689116&rnd=9630733013374708
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2689116&rnd=9695727214042138
+/ably?access_code=rucetfnb&clientId=production_au.client/2120693&capability=
+/pt/ably?clientId=production_au.provider%2F193566&rnd=31763907700816807
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=9184406566360808
+/pt/ably?clientId=production_au.provider%2F3395722&rnd=12596126981098155
+/ably?clientId=production_au.client%2F3352931&rnd=6116376934322796
+/ably?rnd=7049758165148694
+/ably?clientId=production_au.client%2F2210734&rnd=7219076382826515
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=12759916920368775
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7358301863045338
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6144995381491607
+/ably?access_code=ykvqvufo&clientId=production_au.client/3338717&capability=
+/ably?clientId=production_au.client%2F3411804&rnd=5743494830933267
+/ably?clientId=production_au.client%2F2359097&rnd=15911825517648825
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7192519299170006
+/ably?clientId=production_au.client%2F2788682&rnd=191312694966149
+/ably?clientId=production_au.client%2F3340259&rnd=10749629848446829
+/ably?clientId=production_au.client%2F2782109&rnd=24196807645504204
+/okcomputer
+/ably?clientId=production_au.client%2F2782109&rnd=42530768123765916
+/ably?clientId=production_au.client%2F2689116&rnd=2648446553028516
+/ably?clientId=production_au.client%2F2689116&rnd=6906663982077661
+/ably?clientId=production_au.client%2F3254665&rnd=7707007287914438
+/pt/ably?clientId=production_au.provider%2F193566&rnd=11236387373219281
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=19597709068834535
+/ably?rnd=9258836158754984
+/api/patient/kswqrxyx/video_calls/channel
+/api/patient/kswqrxyx/messages?birthYear=1997
+/api/patient/kswqrxyx/messages?birthYear=1997
+/api/patient/kswqrxyx/device_registration/ios
+/api/patient/kswqrxyx/program?birthYear=1997
+/api/patient/kswqrxyx/program?birthYear=1997
+/api/patient/kswqrxyx/surveys
+/api/patient/kswqrxyx/surveys
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9770019160412899
+/ably?clientId=production_au.client/3401170&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538321837.728045&access_code=kswqrxyx&format=msgpack
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=15083230138122516
+/ably?access_code=sytqnnzo&clientId=production_au.client/3353437&capability=
+/api/patient/kswqrxyx/settings
+/api/patient/kswqrxyx/settings
+/ably?clientId=production_au.client%2F2210734&rnd=8353562562956645
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5766503189196912
+/home-exercise-video/plank
+/ably?clientId=production_au.client/3401170&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538321845.256030&access_code=kswqrxyx&format=msgpack
+/ably?clientId=production_au.client%2F3411804&rnd=4945768457566767
+/api/patient/kswqrxyx/messages?birthYear=1997
+/api/patient/kswqrxyx/program?birthYear=1997
+/access/xnrxopes
+/api/patient/kswqrxyx/surveys
+/api/patient/kswqrxyx/settings
+/okcomputer
+/ably?clientId=production_au.client/3303311&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538321846.931037&access_code=ygswsxmg&format=msgpack
+/program?redirected=
+/ably?clientId=production_au.client%2F2359097&rnd=3665673539356036
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5685400194046872
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/physi-app-bundle-794e53a95ad7106fd112.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/api/patient/aevjrbiz/video_calls/channel
+/api/patient/aevjrbiz/device_registration/ios
+/okcomputer/all
+/ably?clientId=production_au.client/3395744&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538321854.283417&access_code=aevjrbiz&format=msgpack
+/api/patient/aevjrbiz/program
+/okcomputer
+/api/patient/aevjrbiz/settings
+/ably?clientId=production_au.client%2F2689116&rnd=4288161840442115
+/api/patient/ygswsxmg/program
+/api/patient/aevjrbiz/program
+/ably?clientId=production_au.client%2F2689116&rnd=7853712808965088
+/api/patient/aevjrbiz/settings
+/exercises.json?exercise_search%5Bquery%5D=&exercise_search%5Bfilters%5D%5Bdifficulty%5D=&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=2&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=5&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=55&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=56&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=4&exercise_search%5Bfilters%5D%5Bequipment_ids%5D=&exercise_search%5Bfilters%5D%5Btheme_ids%5D%5B%5D=7&exercise_search%5Bfilters%5D%5Bno_equipment%5D=false&exercise_search%5Bfilters%5D%5Bfavourites_only%5D=false&page=1
+/ably?clientId=production_au.client%2F2782109&rnd=35075365708243555
+/ably?clientId=production_au.client%2F2782109&rnd=24526796295634468
+/pt/ably?clientId=production_au.provider%2F193566&rnd=08705714858499025
+/okcomputer
+/ably?clientId=production_au.client%2F3395517&rnd=8116946150629842
+/ably?clientId=production_au.client%2F3395517&rnd=5316925891483688
+/ably?clientId=production_au.client%2F2788682&rnd=020072695911894423
+/ably?rnd=16569124823714265
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=47684161403268654
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8427709870165685
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=8597928548618912
+/ably?clientId=production_au.client%2F3254665&rnd=8686664571773608
+/ably?clientId=production_au.client%2F3076442&rnd=8796143472009651
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=24773506112892596
+/ably?clientId=production_au.client/3401170&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538321875.059918&access_code=kswqrxyx&format=msgpack
+/api/patient/kswqrxyx/messages?birthYear=1997
+/api/patient/kswqrxyx/program?birthYear=1997
+/api/patient/kswqrxyx/surveys
+/ably?clientId=production_au.client%2F3411804&rnd=6573098973177674
+/api/patient/kswqrxyx/settings
+/okcomputer
+/ably?rnd=8354149247297349
+/pt/ably?clientId=production_au.provider%2F540919&rnd=49082508236790434
+/ably?rnd=8342084084266426
+/ably?clientId=production_au.client%2F2359097&rnd=3024052085184845
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=29527102388031956
+/ably?clientId=production_au.client%2F2689116&rnd=9472776468213535
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5912453687944685
+/okcomputer
+/ably?clientId=production_au.client/3401170&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538321892.595752&access_code=kswqrxyx&format=msgpack
+/api/patient/kswqrxyx/messages?birthYear=1997
+/api/patient/kswqrxyx/program?birthYear=1997
+/api/patient/kswqrxyx/surveys
+/cart/exercises
+/api/patient/kswqrxyx/settings
+/ably?clientId=production_au.client%2F3352931&rnd=3841791693309413
+/ably?clientId=production_au.client/3401170&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538321896.840615&access_code=kswqrxyx&format=msgpack
+/api/patient/kswqrxyx/messages?birthYear=1997
+/api/patient/kswqrxyx/program?birthYear=1997
+/api/patient/kswqrxyx/surveys
+/api/patient/kswqrxyx/settings
+/ably?rnd=6567097172951493
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=19565753084375603
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=882469780616298
+/ably?clientId=production_au.client%2F2788682&rnd=7844256605706373
+/api/patient/tnatmcba/video_calls/channel
+/api/patient/tnatmcba/messages?birthYear=1982
+/api/patient/tnatmcba/program?birthYear=1982
+/api/patient/tnatmcba/device_registration/ios
+/home-exercise-video/plank
+/ably?clientId=production_au.client/2093126&ttl=3600.000000&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538321902.329739&access_code=tnatmcba&format=msgpack
+/ably?clientId=production_au.client/2093126&ttl=3600.000000&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538321903.034107&access_code=tnatmcba&format=msgpack
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=18810528667388637
+/ably?clientId=production_au.client%2F2210734&rnd=8514355275962506
+/api/patient/tnatmcba/settings
+/ably?clientId=production_au.client%2F3254665&rnd=6240408104822752
+/ably?clientId=production_au.client%2F3411804&rnd=7291608708367625
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=054693862488534806
+/ably?clientId=production_au.client%2F2782109&rnd=49337645870242774
+/ably?clientId=production_au.client%2F2782109&rnd=655257230747232
+/pt/ably?clientId=production_au.provider%2F540919&rnd=13843700822618032
+/ably?clientId=production_au.client%2F2359097&rnd=8422530760687346
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=9229413311015198
+/ably?capability=&clientId=production_au.client/2362801&access_code=oiykeoxx
+/ably?clientId=production_au.client%2F2689116&rnd=17267416222543375
+/pt/ably?clientId=production_au.provider%2F193566&rnd=23222705540786692
+/pt/ably?clientId=production_au.provider%2F1563&rnd=14855710975413416
+/okcomputer
+/okcomputer
+/ably?rnd=13996706985340968
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=506762568058782
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6131230255776869
+/ably?clientId=production_au.client%2F2788682&rnd=7398352741338609
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6872704340671267
+/ably?clientId=production_au.client%2F3352931&rnd=47575744472456205
+/ably?clientId=production_au.client%2F2210734&rnd=30127697429729094
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=726942527944952
+/ably?clientId=production_au.client%2F3076442&rnd=27655789943983733
+/ably?clientId=production_au.client%2F3254665&rnd=7079504799515135
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8491804033802677
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=7874382640684194
+/api/patient/tnatmcba/exercises/406483882/complete
+/api/patient/tnatmcba/messages/1022480
+/ably?clientId=production_au.client%2F2689116&rnd=8493179940689315
+/ably?clientId=production_au.client%2F2689116&rnd=14927697052004874
+/cart/exercises/1511
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9874767876752979
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F1563&rnd=1722711759073079
+/ably?clientId=production_au.client%2F2782109&rnd=8269626423528601
+/ably?clientId=production_au.client%2F2782109&rnd=07636352192514595
+/okcomputer
+/ably?rnd=8189230463797204
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=30396858585754205
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9179821611567154
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3004341503635477
+/login
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/ably?clientId=production_au.client%2F2210734&rnd=15889456067626107
+/okcomputer
+/users/sign_in
+/exercises
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/ably?clientId=production_au.client%2F3411804&rnd=15491100921328765
+/themes/0/categories.json
+/ably?clientId=production_au.client%2F2788682&rnd=07865142868119523
+/exercises.json?page=1
+/ably?clientId=production_au.client%2F3254665&rnd=24497174217432605
+/pt/ably?clientId=production_au.provider%2F540919&rnd=21016937488893772
+/okcomputer/all
+/okcomputer
+/api/patient/tumitbtf/device_registration/ios
+/api/patient/tumitbtf/video_calls/channel
+/ably?clientId=production_au.client/2531826&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538321975.407314&access_code=tumitbtf&format=msgpack
+/api/patient/tumitbtf/program
+/api/patient/tumitbtf/program
+/api/patient/tumitbtf/settings
+/api/patient/tumitbtf/settings
+/ably?clientId=production_au.client%2F2359097&rnd=5657133164635586
+/ably?clientId=production_au.client%2F2689116&rnd=7654693551317071
+/ably?clientId=production_au.client%2F3352931&rnd=44026644898978695
+/ably?clientId=production_au.client%2F2689116&rnd=1325860521090645
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4706461774405395
+/ably?clientId=production_au.client%2F3076442&rnd=5575628784164786
+/exercises.json?exercise_search%5Bquery%5D=&exercise_search%5Bfilters%5D%5Bdifficulty%5D=&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=2&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=5&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=55&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=56&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=4&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=6&exercise_search%5Bfilters%5D%5Bequipment_ids%5D=&exercise_search%5Bfilters%5D%5Btheme_ids%5D%5B%5D=7&exercise_search%5Bfilters%5D%5Bno_equipment%5D=false&exercise_search%5Bfilters%5D%5Bfavourites_only%5D=false&page=1
+/okcomputer
+/api/patient/zoutwcpx/video_calls/channel
+/api/patient/zoutwcpx/device_registration/ios
+/ably?clientId=production_au.client/2767414&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538321991.808474&access_code=zoutwcpx&format=msgpack
+/ably?rnd=5146023216888778
+/api/patient/zoutwcpx/program
+/api/patient/zoutwcpx/program
+/api/patient/zoutwcpx/settings
+/api/patient/zoutwcpx/settings
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=62372247270764
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6986996369246576
+/ably?clientId=production_au.client%2F2821642&rnd=22827169611979725
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7420652964605017
+/pt/ably?clientId=production_au.provider%2F1563&rnd=5654125102994695
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=3524270668921796
+/ably?clientId=production_au.client%2F3411804&rnd=6990727032615513
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4999002367335166
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=7421996785644351
+/ably?clientId=production_au.client%2F2689116&rnd=2830150835528966
+/ably?clientId=production_au.client%2F2689116&rnd=853697166257507
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=1240796313888286
+/ably?clientId=production_au.client%2F2788682&rnd=38483754611031395
+/ably?clientId=production_au.client%2F3254665&rnd=9008582988145244
+/ably?access_code=hdwkoaev&clientId=production_au.client/2582689&capability=
+/okcomputer
+/home-exercise-video/plank
+/ably?rnd=9996274432270109
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=32784652766745626
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=512108835227947
+/ably?clientId=production_au.client%2F3076442&rnd=3756478839625924
+/ably?access_code=uakpvadi&clientId=production_au.client/3383587&capability=
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=15492734756008897
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=19188975393052066
+/ably?clientId=production_au.client%2F2210734&rnd=6411890325064107
+/okcomputer/all
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=377819647128111
+/ably?clientId=production_au.client%2F2689116&rnd=27548727406224915
+/cart/exercises
+/ably?clientId=production_au.client%2F2359097&rnd=4310548642051377
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=16233866732142488
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4416154517935349
+/okcomputer
+/ably?clientId=production_au.client%2F3254665&rnd=46362457461178797
+/ably?rnd=7213083207146556
+/ably?clientId=production_au.client%2F2788682&rnd=32467005463870646
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5469744235387157
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=354475788853448
+/ably?clientId=production_au.client%2F3076442&rnd=29484256755281524
+/ably?clientId=production_au.client%2F3411073&rnd=682028873678286
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=35587622992492207
+/ably?clientId=production_au.client%2F3411804&rnd=8958701795576553
+/ably?clientId=production_au.client%2F2210734&rnd=6411339833125678
+/ably?access_code=owqzecij&clientId=production_au.client/1375866&capability=
+/okcomputer
+/ably?access_code=owqzecij&clientId=production_au.client/1375866&capability=
+/exercises.json?exercise_search%5Bquery%5D=&exercise_search%5Bfilters%5D%5Bdifficulty%5D=&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=2&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=5&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=55&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=56&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=4&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=6&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=8&exercise_search%5Bfilters%5D%5Bequipment_ids%5D=&exercise_search%5Bfilters%5D%5Btheme_ids%5D%5B%5D=7&exercise_search%5Bfilters%5D%5Bno_equipment%5D=false&exercise_search%5Bfilters%5D%5Bfavourites_only%5D=false&page=1
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3724458823870922
+/ably?clientId=production_au.client%2F3352931&rnd=9582672111488353
+/ably?clientId=production_au.client%2F2689116&rnd=7895625452295962
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=525217150183924
+/ably?clientId=production_au.client%2F2689116&rnd=7402761367019495
+/pt/ably?clientId=production_au.provider%2F193566&rnd=849388303089905
+/okcomputer
+/home-exercise-video/plank
+/ably?rnd=07500298357195456
+/ably?clientId=production_au.client%2F2788682&rnd=014835596363073522
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6834569172635072
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5737558106264653
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=7599463592361501
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7542272439132529
+/ably?clientId=production_au.client%2F3411804&rnd=5517310126606671
+/pt/ably?clientId=production_au.provider%2F1266277&rnd=4745827826544289
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=6265536087247481
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=2817230774225321
+/ably?clientId=production_au.client%2F3352931&rnd=5699404244360009
+/ably?clientId=production_au.client%2F2689116&rnd=31901450690316535
+/okcomputer
+/exercises.json?exercise_search%5Bquery%5D=&exercise_search%5Bfilters%5D%5Bdifficulty%5D=&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=2&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=5&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=55&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=56&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=4&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=6&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=8&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=49&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=50&exercise_search%5Bfilters%5D%5Bequipment_ids%5D=&exercise_search%5Bfilters%5D%5Btheme_ids%5D%5B%5D=7&exercise_search%5Bfilters%5D%5Bno_equipment%5D=false&exercise_search%5Bfilters%5D%5Bfavourites_only%5D=false&page=1
+/ably?clientId=production_au.client%2F2359097&rnd=36196576877031994
+/ably?clientId=production_au.client%2F2689116&rnd=6706293730164063
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9869402227769282
+/okcomputer
+/exercises
+/ably?rnd=16197989043328898
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=05204352755873631
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9051312031931105
+/okcomputer
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/themes/7/categories.json
+/exercises.json?exercise_search%5Bquery%5D=&exercise_search%5Bfilters%5D%5Bdifficulty%5D=&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=2&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=5&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=55&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=56&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=4&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=6&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=8&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=49&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=50&exercise_search%5Bfilters%5D%5Bequipment_ids%5D=&exercise_search%5Bfilters%5D%5Btheme_ids%5D%5B%5D=7&exercise_search%5Bfilters%5D%5Bno_equipment%5D=false&exercise_search%5Bfilters%5D%5Bfavourites_only%5D=false&page=1
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=665845421828041
+/ably?clientId=production_au.client%2F2788682&rnd=8892102585506109
+/ably?clientId=production_au.client%2F3411804&rnd=14977636345732254
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F336073&rnd=014650586093697515
+/ably?clientId=production_au.client%2F2210734&rnd=06625070360110019
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8353563453828643
+/ably?clientId=production_au.client%2F2689116&rnd=38846260799664245
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7361554901768066
+/ably?clientId=production_au.client%2F3076442&rnd=24558781219026493
+/pt/ably?clientId=production_au.provider%2F193566&rnd=2862517650869165
+/ably?clientId=production_au.client%2F2359097&rnd=044923806512483955
+/okcomputer
+/ably?clientId=production_au.client%2F3254665&rnd=17857329529563448
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3352931&rnd=4481581245146651
+/ably?rnd=1374078149644795
+/okcomputer
+/ably?access_code=wkezvxvb&clientId=production_au.client/3385987&capability=
+/ably?access_code=wkezvxvb&clientId=production_au.client/3385987&capability=
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=551754704491445
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=632690999881564
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=372801237521148
+/ably?clientId=production_au.client%2F3411804&rnd=12352934229870616
+/okcomputer/all
+/okcomputer
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/ably?clientId=production_au.client%2F2210734&rnd=6243063443184291
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8134011326267099
+/pt/ably?clientId=production_au.provider%2F336073&rnd=7210768168925682
+/ably?clientId=production_au.client%2F2788682&rnd=8907545601111853
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6614696282132744
+/ably?clientId=production_au.client%2F2689116&rnd=0029720152620080764
+/pt/ably?clientId=production_au.provider%2F193566&rnd=43237986259262673
+/ably?clientId=production_au.client%2F2359097&rnd=6095508502686266
+/okcomputer
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/okcomputer
+/ably?rnd=31420154477604445
+/exercises.json?exercise_search%5Bquery%5D=&exercise_search%5Bfilters%5D%5Bdifficulty%5D=&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=5&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=55&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=56&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=4&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=6&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=8&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=49&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=50&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=2&exercise_search%5Bfilters%5D%5Bequipment_ids%5D=&exercise_search%5Bfilters%5D%5Btheme_ids%5D%5B%5D=7&exercise_search%5Bfilters%5D%5Bno_equipment%5D=false&exercise_search%5Bfilters%5D%5Bfavourites_only%5D=false&page=1
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=08167879841639603
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8939340812808705
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=06700686871863004
+/ably?clientId=production_au.client/3349798&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538322182.636593&access_code=sqxwycta&format=msgpack
+/
+/login
+/api/patient/sqxwycta/messages?birthYear=1965
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/ably?clientId=production_au.client%2F3411804&rnd=29027609591291725
+/okcomputer
+/ably?clientId=production_au.client%2F3254665&rnd=8557030570617539
+/api/patient/sqxwycta/program?birthYear=1965
+/ably?clientId=production_au.client%2F3076442&rnd=8928967695943106
+/api/patient/sqxwycta/settings
+/api/patient/sqxwycta/exercises/400352138/complete
+/pt/ably?clientId=production_au.provider%2F540919&rnd=32263197479883177
+/ably?clientId=production_au.client%2F2210734&rnd=9223897317363281
+/okcomputer
+/ably?clientId=production_au.client%2F2788682&rnd=7332407334117089
+/ably?clientId=production_au.client%2F2689116&rnd=9079962511356015
+/pt/ably?clientId=production_au.provider%2F336073&rnd=7343361925240615
+/ably?clientId=production_au.client%2F2689116&rnd=28362631572686925
+/ably?access_code=inxqqbxb&clientId=production_au.client/3393759&capability=
+/pt/ably?clientId=production_au.provider%2F193566&rnd=2259613182976683
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=32877799788677553
+/home-exercise-video/plank
+/okcomputer
+/ably?rnd=9587282354420552
+/api/patient/bdwudubo/messages?birthYear=1990
+/api/patient/bdwudubo/video_calls/channel
+/api/patient/bdwudubo/device_registration/ios
+/api/patient/bdwudubo/messages?birthYear=1990
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=35106372307844835
+/ably?clientId=production_au.client/2426374&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538322209.915388&access_code=bdwudubo&format=msgpack
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9981601873478008
+/ably?clientId=production_au.client/2426374&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538322210.942242&access_code=bdwudubo&format=msgpack
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3692888776498455
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=35944972138424624
+/api/patient/bdwudubo/program?birthYear=1990
+/api/patient/bdwudubo/program?birthYear=1990
+/ably?clientId=production_au.client%2F2531726&rnd=8352019239743047
+/pt/ably?clientId=production_au.provider%2F540919&rnd=13862675028836557
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=6969974461504818
+/ably?clientId=production_au.client%2F2689116&rnd=16099261110041563
+/ably?clientId=production_au.client%2F3254665&rnd=37961796633056166
+/ably?clientId=production_au.client%2F3076442&rnd=500373083150113
+/ably?clientId=production_au.client%2F2689116&rnd=2933208831639258
+/pt/ably?clientId=production_au.provider%2F193566&rnd=49011097265004255
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F336073&rnd=27415333379494644
+/ably?clientId=production_au.client%2F3352931&rnd=17134925347452912
+/ably?clientId=production_au.client%2F2359097&rnd=8649956598639157
+/ably?clientId=production_au.client%2F2788682&rnd=554372048589434
+/exercises/new
+/ably?rnd=4077155763889462
+/okcomputer
+/ably?rnd=21244100460831228
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3073939092316136
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8934088026508169
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4188137177539397
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=35431085738517703
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8439174885540721
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=8283227780028526
+/ably?clientId=production_au.client%2F2689116&rnd=45441854745401855
+/ably?clientId=production_au.client%2F3254665&rnd=03112417687157376
+/ably?clientId=production_au.client%2F2689116&rnd=5817489103310098
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8640987147049997
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client/3349798&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538322259.711753&access_code=sqxwycta&format=msgpack
+/api/patient/sqxwycta/messages?birthYear=1965
+/api/patient/sqxwycta/program?birthYear=1965
+/api/patient/sqxwycta/settings
+/ably?clientId=production_au.client%2F2359097&rnd=2753061353887094
+/ably?clientId=production_au.client%2F3076442&rnd=36147130821392603
+/ably?clientId=production_au.client%2F2788682&rnd=6402378966993527
+/pt/ably?clientId=production_au.provider%2F336073&rnd=01874708026725813
+/okcomputer
+/ably?rnd=4489088286245617
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8620467225704025
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5034421202557873
+/okcomputer/all
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2567806505417338
+/ably?capability=&clientId=production_au.client/2925116&access_code=ugzjsqzm
+/ably?clientId=production_au.client%2F3352931&rnd=3694233016405173
+/ably?clientId=production_au.client%2F3411804&rnd=8832872390441593
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6969970464249444
+/exercises/new
+/ably?access_code=npucmocp&clientId=production_au.client/3172671&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=8123462751537156
+/ably?clientId=production_au.client%2F2210734&rnd=3547462219300881
+/ably?clientId=production_au.client%2F2689116&rnd=3848748492856313
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6785745248373103
+/ably?clientId=production_au.client%2F3254665&rnd=1866238780846532
+/exercises/new
+/ably?clientId=production_au.client%2F2359097&rnd=9008308851428941
+/okcomputer
+/ably?clientId=production_au.client%2F2788682&rnd=8286614114569792
+/exercises
+/exercises.json?exercise_search%5Bquery%5D=&exercise_search%5Bfilters%5D%5Bdifficulty%5D=&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=5&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=55&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=56&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=4&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=6&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=8&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=49&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=50&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=2&exercise_search%5Bfilters%5D%5Bequipment_ids%5D=&exercise_search%5Bfilters%5D%5Btheme_ids%5D%5B%5D=7&exercise_search%5Bfilters%5D%5Bno_equipment%5D=false&exercise_search%5Bfilters%5D%5Bfavourites_only%5D=false&page=1
+/ably?rnd=791504899891869
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8420106012265081
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=130172023583482
+/okcomputer
+/exercises/new
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=26794863807224734
+/ably?clientId=production_au.client%2F3411804&rnd=42734172515444424
+/ably?clientId=production_au.client%2F3076442&rnd=9599172148638676
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3338584820055619
+/ably?clientId=production_au.client%2F2689116&rnd=4991487131965222
+/ably?clientId=production_au.client%2F3352931&rnd=8135035822052004
+/ably?capability=&clientId=production_au.client/3401227&access_code=xsyghvis
+/ably?clientId=production_au.client%2F2210734&rnd=46079369940746706
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=436071856753091
+/pt/ably?clientId=production_au.provider%2F193566&rnd=29401700507614636
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=3896500478966636
+/ably?clientId=production_au.client%2F2788682&rnd=359867310401324
+/ably?clientId=production_au.client%2F3254665&rnd=06621729917982044
+/ably?rnd=7862585123594286
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=14029576162820723
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=12356788033326582
+/okcomputer/all
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2166234028043159
+/ably?clientId=production_au.client%2F3411804&rnd=9993883032937897
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=990951402913083
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7827642656349689
+/ably?clientId=production_au.client%2F2689116&rnd=6123918442775678
+/ably?access_code=szrshted&clientId=production_au.client/3266236&capability=
+/ably?clientId=production_au.client%2F3352931&rnd=37541520065592304
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=40392569735851924
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8434580868614543
+/ably?clientId=production_au.client%2F2689116&rnd=44789299159737084
+/okcomputer
+/exercises
+/ably?clientId=production_au.client%2F2359097&rnd=29170105880773467
+/ably?clientId=production_au.client%2F2788682&rnd=6299171446320548
+/ably?rnd=5406945412306992
+/exercises.json?exercise_search%5Bquery%5D=&exercise_search%5Bfilters%5D%5Bdifficulty%5D=&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=5&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=55&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=56&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=4&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=6&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=8&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=49&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=50&exercise_search%5Bfilters%5D%5Bcategory_ids%5D%5B%5D=2&exercise_search%5Bfilters%5D%5Bequipment_ids%5D=&exercise_search%5Bfilters%5D%5Btheme_ids%5D%5B%5D=7&exercise_search%5Bfilters%5D%5Bno_equipment%5D=false&exercise_search%5Bfilters%5D%5Bfavourites_only%5D=false&page=1
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7747128721330461
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=39275108295803185
+/okcomputer
+/exercise_programs/edit_cart
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3695242994727854
+/exercise_programs/803555/edit?system=false
+/ably?clientId=production_au.client%2F3411804&rnd=9162240625201741
+/themes
+/exercise_programs/803555/edit?system=false&unique_target_id=2803555
+/okcomputer
+/ably?clientId=production_au.client%2F3254665&rnd=16344116182384805
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6681392458515343
+/ably?clientId=production_au.client%2F2689116&rnd=6979994160958145
+/okcomputer
+/ably?capability=&clientId=production_au.client/2857936&access_code=niafqbmo
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3352931&rnd=2176296531368307
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8887756293217288
+/ably?clientId=production_au.client%2F2689116&rnd=7068968191138172
+/ably?clientId=production_au.client%2F2210734&rnd=5339021186927555
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=3000804610200405
+/ably?clientId=production_au.client%2F2359097&rnd=41850867387748924
+/ably?clientId=production_au.client%2F2788682&rnd=012136027321470122
+/okcomputer/all
+/ably?rnd=714335672868142
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=13455289690242878
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8018068642191629
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=28007878703335387
+/ably?clientId=production_au.client%2F3411804&rnd=6986750051391988
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=1888016736460516
+/ably?clientId=production_au.client%2F3254665&rnd=07553196223925296
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7613191853878769
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8897663327990217
+/ably?clientId=production_au.client%2F2689116&rnd=22631859334456395
+/ably?clientId=production_au.client%2F3352931&rnd=08886232750455458
+/ably?clientId=production_au.client%2F2210734&rnd=6561843793334261
+/program_exercises/update_batch?protocol_id=803555
+/ably?access_code=zdhyxegz&clientId=production_au.client/3383704&capability=
+/okcomputer
+/ably?rnd=4182674700476301
+/ably?clientId=production_au.client%2F2359097&rnd=835021222471737
+/okcomputer
+/ably?rnd=28065477170030806
+/assign_protocols/clients?q=&page=1
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=46306954754040053
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8799437865379918
+/clients/new
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5895049186922126
+/ably?clientId=production_au.client%2F3411804&rnd=07109682022544467
+/okcomputer
+/ably?clientId=production_au.client%2F2788682&rnd=3802142690522563
+/pt/ably?clientId=production_au.provider%2F540919&rnd=43506728925957217
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=3543207853177518
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2689116&rnd=7936066123779557
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5866543893508898
+/ably?access_code=vkixazbj&clientId=production_au.client/3417264&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=9150375161441529
+/ably?clientId=production_au.client%2F3352931&rnd=9815075547567245
+/ably?access_code=vkixazbj&clientId=production_au.client/3417264&capability=
+/ably?clientId=production_au.client%2F2210734&rnd=941411715178635
+/okcomputer
+/ably?clientId=production_au.client%2F3254665&rnd=9043802014801086
+/okcomputer/all
+/api/patient/vkixazbj/program?birth_year=1960
+/okcomputer
+/ably?rnd=8030488736789434
+/ably?clientId=production_au.client%2F2359097&rnd=6097924333786477
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5592542563630232
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=628707821245057
+/api/patient/vkixazbj/video_calls/channel
+/api/patient/vkixazbj/messages?birth_year=1960
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=23967147426449675
+/api/patient/vkixazbj/surveys
+/ably?clientId=production_au.client%2F3411804&rnd=507252118754283
+/okcomputer
+/access/physiapp/xbmbvdic
+/ably?access_code=vkixazbj&clientId=production_au.client/3417264&capability=
+/pt/ably?clientId=production_au.provider%2F540919&rnd=38922664138728824
+/api/patient/vkixazbj/program?birth_year=1960
+/api/patient/vkixazbj/video_calls/channel
+/okcomputer
+/api/patient/vkixazbj/messages?birth_year=1960
+/api/patient/vkixazbj/surveys
+/ably?clientId=production_au.client%2F2689116&rnd=702079255614823
+/ably?clientId=production_au.client%2F2788682&rnd=7388411090819038
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9878521898882497
+/ably?clientId=production_au.client%2F2689116&rnd=33894546851046536
+/ably?access_code=vkixazbj&clientId=production_au.client/3417264&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=5952052679358806
+/ably?clientId=production_au.client%2F3076442&rnd=41685565916341005
+/ably?clientId=production_au.client%2F3254665&rnd=2850860908311743
+/okcomputer
+/ably?clientId=production_au.client/3349798&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538322485.353134&access_code=sqxwycta&format=msgpack
+/api/patient/sqxwycta/messages?birthYear=1965
+/api/patient/sqxwycta/program?birthYear=1965
+/ably?rnd=624804649451578
+/ably?clientId=production_au.client%2F2359097&rnd=34199852502208205
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7869672105999086
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4487865637809789
+/api/patient/sqxwycta/settings
+/ably?clientId=production_au.client%2F3352931&rnd=26273842155050997
+/api/patient/sqxwycta/exercises/413811198/complete
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=05967456946516014
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=9584874930256262
+/ably?capability=&clientId=production_au.client/3401227&access_code=xsyghvis
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=08766983362286229
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2689116&rnd=9371681607411562
+/ably?access_code=kbdaqedf&clientId=production_au.client/3254210&capability=
+/pt/ably?clientId=production_au.provider%2F193566&rnd=2732164997499882
+/ably?clientId=production_au.client%2F2689116&rnd=8820077564427649
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=5946518154105476
+/ably?clientId=production_au.client%2F3076442&rnd=23318998830717808
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client/3395744&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538322516.747064&access_code=aevjrbiz&format=msgpack
+/ably?clientId=production_au.client%2F2788682&rnd=889995410702566
+/api/patient/aevjrbiz/program
+/ably?rnd=7348824526142166
+/api/patient/aevjrbiz/settings
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=30985707044367805
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5705166222385583
+/ably?clientId=production_au.client%2F2359097&rnd=3059239895840977
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=23682742906713816
+/api/patient/aevjrbiz/program
+/home-exercise-video/sit-up-twist---with-medicine-ball
+/ably?clientId=production_au.client%2F3411804&rnd=5436027155232214
+/ably?clientId=production_au.client%2F3254665&rnd=539076943989589
+/ably?clientId=production_au.client%2F3352931&rnd=1989578082840402
+/okcomputer
+/ably?access_code=vkixazbj&clientId=production_au.client/3417264&capability=
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8360207417384253
+/ably?clientId=production_au.client%2F2689116&rnd=462882969167995
+/pt/ably?clientId=production_au.provider%2F193566&rnd=24177419999154703
+/ably?clientId=production_au.client%2F2689116&rnd=6440085372055386
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=504999238957947
+/okcomputer
+/ably?rnd=6692562631599643
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5901818640830261
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5677325637124653
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=5473942031344203
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=785648812276706
+/ably?clientId=production_au.client%2F3411804&rnd=7919851154337998
+/ably?clientId=production_au.client%2F3254665&rnd=08452109030984878
+/ably?clientId=production_au.client%2F3076442&rnd=5286132156174215
+/okcomputer
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4186224130538543
+/ably?clientId=production_au.client%2F2689116&rnd=15220611035634923
+/login
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7467373297294391
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=17091877604313166
+/users/sign_in
+/exercises
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/api/patient/vkixazbj/program?birth_year=1960
+/themes/0/categories.json
+/api/patient/vkixazbj/video_calls/channel
+/api/patient/vkixazbj/messages?birth_year=1960
+/api/patient/vkixazbj/surveys
+/ably?clientId=production_au.client%2F3352931&rnd=6767519447868631
+/exercises.json?page=1
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=12486185757067436
+/okcomputer
+/ably?access_code=vkixazbj&clientId=production_au.client/3417264&capability=
+/ably?rnd=8416356849127862
+/api/patient/vkixazbj/program?birth_year=1960
+/api/patient/vkixazbj/video_calls/channel
+/api/patient/vkixazbj/messages?birth_year=1960
+/ably?rnd=3287071413333349
+/api/patient/vkixazbj/surveys
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6792892686550436
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=791674209261134
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=7534285900026945
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3016928175608373
+/ably?clientId=production_au.client%2F3411804&rnd=7132029128544955
+/ably?access_code=vkixazbj&clientId=production_au.client/3417264&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2788682&rnd=5936799376751742
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5347545352229468
+/ably?clientId=production_au.client%2F3254665&rnd=7905434069299138
+/ably?clientId=production_au.client%2F2689116&rnd=6672724491100133
+/okcomputer
+/ably?access_code=vkixazbj&clientId=production_au.client/3417264&capability=
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4775395436916843
+/ably?clientId=production_au.client%2F2689116&rnd=15726463560281667
+/okcomputer
+/ably?capability=&clientId=production_au.client/3417095&access_code=opozhukh
+/ably?clientId=production_au.client%2F2210734&rnd=7430542855536422
+/ably?clientId=production_au.client%2F3076442&rnd=811765876847041
+/
+/login
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/ably?rnd=6440346265382846
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9929973979370543
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3674135098120055
+/ably?access_code=vkixazbj&clientId=production_au.client/3417264&capability=
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5414313200661653
+/ably?clientId=production_au.client%2F3411804&rnd=4534577376757945
+/ably?clientId=production_au.client%2F2359097&rnd=8360877901685162
+/ably?clientId=production_au.client%2F3352931&rnd=19524594070570567
+/okcomputer
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8312579635447725
+/ably?clientId=production_au.client%2F3254665&rnd=9957194570832588
+/ably?clientId=production_au.client%2F2689116&rnd=45902638702633936
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5721988947256116
+/ably?clientId=production_au.client%2F2689116&rnd=4525563077216912
+/okcomputer/all
+/okcomputer
+/
+/login
+/ably?clientId=production_au.client%2F2788682&rnd=2859405394373259
+/servers
+/ably?clientId=production_au.client%2F2210734&rnd=5946431156980772
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/ably?access_code=vkixazbj&clientId=production_au.client/3417264&capability=
+/ably?rnd=706295303533685
+/okcomputer
+/ably?capability=&clientId=production_au.client/2793272&access_code=jdvbhgnd
+/ably?access_code=vkixazbj&clientId=production_au.client/3417264&capability=
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6584675219734535
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=39700962007925145
+/ably?clientId=production_au.client%2F3076442&rnd=9005390678030366
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6893385286315075
+/ably?clientId=production_au.client%2F3411804&rnd=42314037231809243
+/ably?clientId=production_au.client%2F2359097&rnd=3099518617082955
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=044563976850742204
+/ably?clientId=production_au.client%2F2689116&rnd=6564240280601641
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8481503435307698
+/ably?clientId=production_au.client%2F2689116&rnd=03817405881093694
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=3703551868830355
+/ably?clientId=production_au.client%2F3254665&rnd=6416794746896926
+/okcomputer
+/ably?rnd=9217289843007559
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8228143866231887
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7081685988767876
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=915600147470699
+/ably?clientId=production_au.client%2F3411804&rnd=29333390741662696
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=12173486978001513
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3076442&rnd=37823739693298064
+/ably?capability=&client_id=production_au.client/2066399&access_code=ffguuors
+/pt/ably?clientId=production_au.provider%2F540919&rnd=04221240438666363
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=08388953145793199
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5466280299772179
+/ably?clientId=production_au.client%2F2689116&rnd=09210008506080869
+/okcomputer/all
+/okcomputer
+/ably?capability=&clientId=production_au.client/2545598&access_code=fcmrfrfp
+/ably?clientId=production_au.client%2F2788682&rnd=4274174708733628
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=21537516405425716
+/ably?clientId=production_au.client%2F3254665&rnd=6725657028859102
+/ably?clientId=production_au.client%2F3352931&rnd=46134923970339226
+/ably?rnd=7740162973457188
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=49435422776333326
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4115142663401017
+/ably?rnd=38675914085328267
+/pt/ably?clientId=production_au.provider%2F5533&rnd=18622848288344795
+/ably?clientId=production_au.client%2F3411804&rnd=22076399867615948
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6817906460147498
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=39247202770881006
+/ably?clientId=production_au.client%2F3076442&rnd=7553170503786065
+/pt/ably?clientId=production_au.provider%2F540919&rnd=04535794727431863
+/okcomputer
+/api/patient/xodeszad/device_registration/ios
+/api/patient/xodeszad/program?birthYear=1987
+/api/patient/xodeszad/video_calls/channel
+/api/patient/xodeszad/messages?birthYear=1987
+/api/patient/xodeszad/messages?birthYear=1987
+/ably?clientId=production_au.client%2F2689116&rnd=42434215485143256
+/api/patient/xodeszad/program?birthYear=1987
+/api/patient/xodeszad/settings
+/api/patient/xodeszad/settings
+/ably?clientId=production_au.client/3255061&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538322720.328894&access_code=xodeszad&format=msgpack
+/ably?clientId=production_au.client%2F2689116&rnd=951722649432678
+/pt/ably?clientId=production_au.provider%2F193566&rnd=2264919809153263
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/pt/ably?clientId=production_au.provider%2F138244&rnd=864733729463588
+/okcomputer
+/ably?access_code=ufamviba&clientId=production_au.client/2963883&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=00949827642145018
+/ably?rnd=45721276240825404
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=2924186700169873
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9462079718271799
+/ably?clientId=production_au.client%2F3411804&rnd=44249876249692704
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7282134495772099
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3254665&rnd=94146334686002
+/ably?access_code=ufamviba&clientId=production_au.client/2963883&capability=
+/ably?clientId=production_au.client%2F2359097&rnd=34898850958304606
+/ably?access_code=rbaqbbfz&clientId=production_au.client/2858296&capability=
+/ably?access_code=rbaqbbfz&clientId=production_au.client/2858296&capability=
+/ably?access_code=rbaqbbfz&clientId=production_au.client/2858296&capability=
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=21832486476161228
+/ably?clientId=production_au.client%2F3352931&rnd=1934330383481584
+/ably?clientId=production_au.client%2F2788682&rnd=9185172018240723
+/ably?clientId=production_au.client%2F2689116&rnd=8078216788445349
+/ably?clientId=production_au.client%2F3076442&rnd=33127147562271875
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7681214099127922
+/ably?clientId=production_au.client%2F2689116&rnd=22264491584154378
+/okcomputer/all
+/okcomputer
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=23449950670187425
+/ably?rnd=10974056286737333
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=050661626676694604
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=1705768542061732
+/ably?clientId=production_au.client%2F3411804&rnd=6044051441019353
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=568346979765775
+/ably?clientId=production_au.client%2F2359097&rnd=9511255438276147
+/okcomputer
+/ably?clientId=production_au.client%2F3254665&rnd=7775375223154284
+/pt/ably?clientId=production_au.provider%2F540919&rnd=21946583963505684
+/ably?clientId=production_au.client%2F2689116&rnd=7905460393606469
+/ably?clientId=production_au.client%2F2689116&rnd=6608092353969497
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3682497861002798
+/okcomputer
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=8335946838071109
+/ably?rnd=028741523794385104
+/ably?clientId=production_au.client%2F2210734&rnd=36482928495423095
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=44705982005331824
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=693613388006717
+/okcomputer
+/ably?clientId=production_au.client%2F2788682&rnd=8503085232444081
+/ably?clientId=production_au.client%2F3411804&rnd=16357150147763483
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3076442&rnd=977300740824795
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4612773835968538
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=40342472333181955
+/pt/ably?clientId=production_au.provider%2F540919&rnd=10646573896732381
+/ably?clientId=production_au.client%2F2689116&rnd=4845080956931198
+/ably?clientId=production_au.client%2F2689116&rnd=1880304501708856
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3554785518099517
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F3254665&rnd=573336093711333
+/okcomputer
+/ably?rnd=2864663157327312
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6979899624837467
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4117482886994748
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=8269853347919156
+/ably?clientId=production_au.client%2F3411804&rnd=0038025734927122356
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9429056451277149
+/okcomputer
+/ably?clientId=production_au.client%2F2788682&rnd=16268360001327742
+/ably?clientId=production_au.client%2F2359097&rnd=9069234973016735
+/pt/ably?clientId=production_au.provider%2F540919&rnd=07786778545782624
+/ably?clientId=production_au.client%2F3076442&rnd=5338614541428738
+/ably?clientId=production_au.client%2F2689116&rnd=08933882814038285
+/ably?clientId=production_au.client%2F2689116&rnd=5126745719783596
+/pt/ably?clientId=production_au.provider%2F193566&rnd=01572119803539218
+/ably?access_code=oteuienk&clientId=production_au.client/3344713&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F3254665&rnd=33227126180768973
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/okcomputer
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/ably?rnd=40254794183649945
+/okcomputer
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=036876809943456434
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=49674302635174916
+/ably?clientId=production_au.client%2F3411804&rnd=4315504091485147
+/ably?clientId=production_au.client%2F2210734&rnd=10410447842970094
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7300799824824862
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6099165256445063
+/ably?clientId=production_au.client%2F3076442&rnd=9586439197961041
+/ably?clientId=production_au.client%2F2359097&rnd=370121436703126
+/okcomputer/all
+/ably?clientId=production_au.client%2F2689116&rnd=09396740611974463
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7866103484101601
+/ably?clientId=production_au.client%2F2689116&rnd=7801129258326351
+/ably?capability=&clientId=production_au.client/3265618&access_code=xdxvqsvf
+/ably?clientId=production_au.client%2F3352931&rnd=09827049997199344
+/ably?clientId=production_au.client%2F2788682&rnd=1867603758433828
+/okcomputer
+/okcomputer
+/ably?clientId=production_au.client%2F3254665&rnd=446518132449957
+/ably?rnd=9497580177470355
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3889889768599595
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=746003787625444
+/ably?rnd=991832890920906
+/ably?clientId=production_au.client%2F3411804&rnd=7441667812616349
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5609970980994505
+/ably?clientId=production_au.client%2F2210734&rnd=5755552856456811
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7449400699762354
+/ably?clientId=production_au.client%2F2359097&rnd=23523970488062673
+/ably?clientId=production_au.client%2F2689116&rnd=5343635740044395
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=24151868683428313
+/ably?clientId=production_au.client%2F2689116&rnd=628997460633659
+/okcomputer
+/ably?capability=&clientId=production_au.client/3401227&access_code=xsyghvis
+/ably?clientId=production_au.client%2F3076442&rnd=1378148448951011
+/okcomputer
+/home-exercise-video/plank
+/ably?rnd=20942505099378006
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=752040546300718
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4298140787822835
+/ably?clientId=production_au.client%2F3352931&rnd=5745994849174094
+/ably?clientId=production_au.client%2F3411804&rnd=38198182966527294
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5202397354214865
+/ably?clientId=production_au.client%2F2210734&rnd=7013194811229595
+/okcomputer
+/ably?clientId=production_au.client%2F3254665&rnd=8463759730632741
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9108248635395284
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=20014348997023013
+/ably?clientId=production_au.client%2F2359097&rnd=6913563218219247
+/ably?capability=&clientId=production_au.client/3395392&access_code=yyzztjhr
+/ably?capability=&clientId=production_au.client/3395392&access_code=yyzztjhr
+/pt/ably?clientId=production_au.provider%2F193566&rnd=31854386517335076
+/ably?clientId=production_au.client%2F2689116&rnd=8552929162513767
+/okcomputer
+/api/patient/argdpqmc/video_calls/channel
+/api/patient/argdpqmc/messages?birthYear=1973
+/ably?clientId=production_au.client%2F3076442&rnd=13568738413397463
+/ably?clientId=production_au.client/2802579&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538322945.385143&access_code=argdpqmc&format=msgpack
+/api/patient/argdpqmc/device_registration/ios
+/api/patient/argdpqmc/messages?birthYear=1973
+/api/patient/argdpqmc/program?birthYear=1973
+/api/patient/argdpqmc/program?birthYear=1973
+/api/patient/argdpqmc/settings
+/api/patient/argdpqmc/settings
+/okcomputer
+/ably?rnd=40769948361776454
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=760216120331445
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9455519227417715
+/ably?clientId=production_au.client%2F3411804&rnd=18009161465422324
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7074509011909187
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=5662384399309317
+/ably?clientId=production_au.client%2F2788682&rnd=9346192320240341
+/ably?clientId=production_au.client%2F3352931&rnd=014301952482175695
+/pt/ably?clientId=production_au.provider%2F540919&rnd=31683709124127546
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6503141794321896
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9799533867607035
+/ably?clientId=production_au.client%2F2359097&rnd=13638594028117334
+/ably?clientId=production_au.client%2F2689116&rnd=3268176445434472
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=5535022058625769
+/ably?clientId=production_au.client%2F3254665&rnd=331853278548605
+/ably?clientId=production_au.client/2802579&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538322978.669449&access_code=argdpqmc&format=msgpack
+/api/patient/argdpqmc/messages?birthYear=1973
+/okcomputer
+/home-exercise-video/plank
+/api/patient/argdpqmc/program?birthYear=1973
+/api/patient/argdpqmc/settings
+/ably?rnd=30587972588288803
+/ably?access_code=ufamviba&clientId=production_au.client/2963883&capability=
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=29698467399469575
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9674747443039435
+/ably?clientId=production_au.client%2F3411804&rnd=37099888013033216
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=1311003179096446
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=7472781973714324
+/okcomputer/all
+/okcomputer
+/ably?capability=&clientId=production_au.client/2925116&access_code=ugzjsqzm
+/pt/ably?clientId=production_au.provider%2F540919&rnd=1503256287610344
+/ably?clientId=production_au.client%2F2689116&rnd=21048227540150877
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3013461075373012
+/ably?clientId=production_au.client%2F2689116&rnd=8030876328929073
+/ably?clientId=production_au.client%2F2359097&rnd=7371685901744673
+/api/patient/argdpqmc/messages/1022481
+/okcomputer
+/api/patient/argdpqmc/exercises/392108370/complete
+/ably?access_code=rbaqbbfz&clientId=production_au.client/2858296&capability=
+/ably?clientId=production_au.client%2F3254665&rnd=4472713414541787
+/okcomputer
+/.well-known/apple-app-site-association
+/ably?rnd=49837261886431317
+/ably?clientId=production_au.client%2F3076442&rnd=8300264268977865
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4771419001548136
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=48861787414707636
+/ably?clientId=production_au.client%2F3411804&rnd=1811457969554333
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7974845596373286
+/ably?clientId=production_au.client%2F2210734&rnd=6709720491477826
+/ably?capability=&clientId=production_au.client/2820288&access_code=cxyyvhty
+/ably?capability=&clientId=production_au.client/2820288&access_code=cxyyvhty
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9012082759548805
+/ably?access_code=geyhnjhh&clientId=production_au.client/3385888&capability=
+/ably?access_code=geyhnjhh&clientId=production_au.client/3385888&capability=
+/ably?access_code=geyhnjhh&clientId=production_au.client/3385888&capability=
+/ably?access_code=geyhnjhh&clientId=production_au.client/3385888&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=919567333341395
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6601183593266982
+/ably?clientId=production_au.client%2F2689116&rnd=48825299486006
+/ably?clientId=production_au.client%2F2359097&rnd=8943151376571303
+/okcomputer
+/ably?clientId=production_au.client%2F2788682&rnd=2738461139223457
+/ably?access_code=oteuienk&clientId=production_au.client/3344713&capability=
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3076442&rnd=017205568367904656
+/ably?rnd=6283715459826889
+/ably?clientId=production_au.client%2F3396068&rnd=9616631251061684
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=34609891140432336
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4026128011939625
+/ably?clientId=production_au.client%2F3411804&rnd=7309808627847946
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6738363474658444
+/ably?clientId=production_au.client%2F3352931&rnd=38731802201339915
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=4749481324295337
+/ably?clientId=production_au.client%2F3254665&rnd=3178640177560579
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3796328476826101
+/ably?clientId=production_au.client%2F2689116&rnd=6925858162605574
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4789565035941157
+/ably?clientId=production_au.client%2F2689116&rnd=1371203114055899
+/okcomputer
+/api/patient/argdpqmc/exercises/392108378/complete
+/ably?clientId=production_au.client%2F2359097&rnd=45451761547870695
+/okcomputer
+/ably?access_code=iudhcxav&clientId=production_au.client/2868206&capability=
+/ably?rnd=08323431482910926
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8516190133468322
+/ably?clientId=production_au.client%2F3076442&rnd=768280288768114
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=05854280731918493
+/ably?clientId=production_au.client%2F3411804&rnd=6654612371203417
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4646307860720553
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/ably?clientId=production_au.client%2F2788682&rnd=4683612349226802
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=12573382971945146
+/pt/ably?clientId=production_au.provider%2F540919&rnd=13931108834918327
+/ably?clientId=production_au.client%2F2689116&rnd=43666359103101016
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3030087404183188
+/ably?clientId=production_au.client%2F2689116&rnd=8004340272871258
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=0957637183733504
+/ably?clientId=production_au.client%2F2359097&rnd=4036733264281649
+/ably?clientId=production_au.client%2F3254665&rnd=9613858479822588
+/okcomputer
+/home-exercise-video/plank
+/ably?rnd=916052142239326
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=11360288870968205
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=15513818522023648
+/ably?clientId=production_au.client%2F3411804&rnd=40652514554768465
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3507549250481454
+/ably?clientId=production_au.client%2F3076442&rnd=5116219490656267
+/okcomputer/all
+/okcomputer
+/.well-known/apple-app-site-association
+/ably?clientId=production_au.client%2F2210734&rnd=8249099944499505
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5455073992829533
+/ably?clientId=production_au.client%2F2689116&rnd=03938845747736197
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7307081643404163
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=04298011369774413
+/ably?clientId=production_au.client%2F2359097&rnd=7911685864583957
+/ably?rnd=6862346639006187
+/okcomputer
+/ably?clientId=production_au.client%2F3254665&rnd=406531004795458
+/api/patient/argdpqmc/exercises/392108379/complete
+/ably?clientId=production_au.client%2F3352931&rnd=9821713288696055
+/okcomputer
+/ably?rnd=7389715858314434
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=1622301706423357
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7173660116419982
+/ably?clientId=production_au.client%2F2788682&rnd=48942422024714394
+/ably?clientId=production_au.client%2F3411804&rnd=884612276728943
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8895859697350466
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=4289391802715008
+/ably?clientId=production_au.client%2F3076442&rnd=7108780783671811
+/pt/ably?clientId=production_au.provider%2F540919&rnd=07634726830179495
+/ably?clientId=production_au.client%2F2689116&rnd=39686575164366733
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6434759189784729
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7220744485230952
+/ably?capability=&clientId=production_au.client/2064122&access_code=rvuneoop
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=6473493736590981
+/home-exercise-video/plank
+/login
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/users/sign_in
+/okcomputer
+/exercises
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/ably?rnd=551290482946974
+/themes/0/categories.json
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=2607227155638281
+/ably?clientId=production_au.client%2F3411804&rnd=24934473224354903
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=568081832254395
+/ably?clientId=production_au.client%2F3254665&rnd=5108382949298365
+/exercises.json?page=1
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7898564007002931
+/okcomputer/all
+/api/patient/argdpqmc/exercises/392108371/complete
+/okcomputer
+/ably?clientId=production_au.client%2F2788682&rnd=2481221182852783
+/pt/ably?clientId=production_au.provider%2F540919&rnd=2851771442533797
+/ably?clientId=production_au.client%2F2689116&rnd=9758122682466059
+/ably?clientId=production_au.client%2F2210734&rnd=3100201133948548
+/pt/ably?clientId=production_au.provider%2F193566&rnd=1299817308221396
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=09974954016617155
+/ably?clientId=production_au.client%2F2689116&rnd=8953827963565524
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=23021131810674067
+/okcomputer
+/ably?rnd=5241391864289398
+/ably?clientId=production_au.client%2F3411804&rnd=9643073385432783
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6349730829535221
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8658950530255369
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=598134538219028
+/ably?clientId=production_au.client%2F11657&rnd=1322168444748968
+/okcomputer
+/ably?clientId=production_au.client%2F3254665&rnd=8251915338582179
+/ably?clientId=production_au.client%2F2788682&rnd=33382716907938736
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3036404980250649
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4375170536989732
+/ably?clientId=production_au.client%2F2689116&rnd=0424660077246497
+/ably?clientId=production_au.client%2F2210734&rnd=39547520744486353
+/ably?clientId=production_au.client%2F2689116&rnd=9793993013140014
+/ably?clientId=production_au.client%2F3076442&rnd=8494740220903225
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2359097&rnd=941878229398347
+/ably?clientId=production_au.client%2F3352931&rnd=5411044699440197
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F1777249&rnd=5400463724345
+/ably?rnd=9686681031990416
+/ably?clientId=production_au.client%2F3411804&rnd=022177763554187102
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9761817587853951
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=16485672335285262
+/okcomputer/all
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9674349153442756
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4879817405643334
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9606043681680039
+/ably?clientId=production_au.client%2F2689116&rnd=24052141969905927
+/ably?clientId=production_au.client%2F2210734&rnd=3085488921174784
+/ably?clientId=production_au.client%2F2788682&rnd=9100020526266437
+/ably?clientId=production_au.client%2F2689116&rnd=7948597927925922
+/api/patient/argdpqmc/exercises/392108375/complete
+/ably?clientId=production_au.client%2F3254665&rnd=6502357465263178
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=1750703148690107
+/ably?clientId=production_au.client%2F3076442&rnd=33059999297290865
+/okcomputer
+/ably?rnd=7887230914750429
+/ably?clientId=production_au.client%2F3411804&rnd=6807756395967593
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4844150171724746
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6278229697535411
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6494051970215244
+/ably?access_code=geyhnjhh&clientId=production_au.client/3385888&capability=
+/ably?clientId=production_au.client%2F3352931&rnd=7842167265049393
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9653099268617882
+/pt/ably?clientId=production_au.provider%2F540919&rnd=2209455927653925
+/ably?clientId=production_au.client%2F2689116&rnd=7377689517073927
+/ably?clientId=production_au.client%2F2689116&rnd=6373676445249121
+/ably?clientId=production_au.client%2F2210734&rnd=2236999635959438
+/okcomputer
+/home-exercise-video/plank
+/ably?capability=&clientId=production_au.client/2793272&access_code=jdvbhgnd
+/ably?clientId=production_au.client%2F3254665&rnd=5789336846291602
+/ably?clientId=production_au.client%2F3076442&rnd=8354019749201754
+/ably?clientId=production_au.client%2F2788682&rnd=8664138713770461
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=983555684704484
+/ably?clientId=production_au.client%2F2952572&rnd=007060291214861403
+/ably?rnd=9678383373476234
+/ably?clientId=production_au.client%2F3411804&rnd=9985149056783052
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4305912535782517
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9556597938897937
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=22594446069413232
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=520961583556725
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/pt/ably?clientId=production_au.provider%2F540919&rnd=20970290972399952
+/ably?clientId=production_au.client%2F2689116&rnd=48878228203753893
+/ably?clientId=production_au.client%2F2689116&rnd=5229517019583094
+/ably?clientId=production_au.client%2F2210734&rnd=2532836321778622
+/okcomputer
+/ably?rnd=4540879410458707
+/ably?clientId=production_au.client%2F3352931&rnd=9993537341245986
+/ably?clientId=production_au.client%2F3076442&rnd=28657492787981553
+/okcomputer
+/ably?capability=&clientId=production_au.client/3400764&access_code=vvctmjru
+/ably?clientId=production_au.client%2F2359097&rnd=5257183264877643
+/ably?capability=&clientId=production_au.client/2847164&access_code=vxredbqi
+/api/patient/argdpqmc/exercises/392108394/complete
+/ably?rnd=27745283725862735
+/ably?clientId=production_au.client%2F3411804&rnd=31023320698093654
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=26179891504127784
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9481592832005208
+/ably?access_code=xyfcfujg&clientId=production_au.client/2698029&capability=
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6757030281493399
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9952928511070245
+/api/patient/kedkyarn/video_calls/channel
+/api/patient/kedkyarn/program
+/api/patient/kedkyarn/program
+/pt/ably?clientId=production_au.provider%2F540919&rnd=37678760785007315
+/ably?clientId=production_au.client%2F2689116&rnd=8209741181065238
+/api/patient/kedkyarn/device_registration/ios
+/ably?clientId=production_au.client/2483613&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538323337.580130&access_code=kedkyarn&format=msgpack
+/ably?clientId=production_au.client%2F2689116&rnd=09978791896942996
+/okcomputer
+/home-exercise-video/plank
+/api/patient/kedkyarn/settings
+/api/patient/kedkyarn/settings
+/ably?clientId=production_au.client%2F2210734&rnd=31628635284089146
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=6120317176782197
+/ably?clientId=production_au.client%2F3076442&rnd=6413585072870738
+/okcomputer/all
+/ably?rnd=6438410503134522
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=28773654208765714
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9135183059522298
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=27624559042891783
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6105722963697673
+/api/patient/argdpqmc/messages/1022482
+/okcomputer
+/api/patient/argdpqmc/exercises/392108398/complete
+/api/patient/argdpqmc/exercises/392108390/complete
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6531536814612959
+/ably?clientId=production_au.client%2F2689116&rnd=23292852222807325
+/pt/ably?clientId=production_au.provider%2F540919&rnd=25470019669455657
+/api/patient/argdpqmc/exercises/392108399/complete
+/ably?clientId=production_au.client%2F3254665&rnd=669942165657704
+/ably?clientId=production_au.client%2F2689116&rnd=04504386039322905
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=34829046866578306
+/api/patient/argdpqmc/exercises/392108391/complete
+/okcomputer
+/api/patient/argdpqmc/exercises/392108395/complete
+/api/patient/kedkyarn/messages?birthYear=1988
+/ably?clientId=production_au.client%2F2359097&rnd=8999048677834729
+/okcomputer
+/ably?rnd=5888164961761944
+/ably?clientId=production_au.client%2F3411804&rnd=41458877974139496
+/ably?clientId=production_au.client%2F3076442&rnd=08520938860211302
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=0950020386885384
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6287725343194357
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3968866439505281
+/api/patient/argdpqmc/exercises/392108397/complete
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=010248391494378062
+/ably?clientId=production_au.client%2F2689116&rnd=0534809666448941
+/pt/ably?clientId=production_au.provider%2F540919&rnd=15214172575567098
+/ably?clientId=production_au.client%2F3352931&rnd=8931095972202885
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2689116&rnd=8105534448563496
+/ably?clientId=production_au.client%2F3254665&rnd=9621471011845457
+/ably?capability=&clientId=production_au.client/3172519&access_code=mwwmhznf
+/pt/ably?clientId=production_au.provider%2F1222721&rnd=03862781841624696
+/ably?clientId=production_au.client%2F2210734&rnd=8445286525870075
+/okcomputer
+/api/patient/argdpqmc/exercises/406185858/complete
+/okcomputer/all
+/ably?clientId=production_au.client/3349798&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538323413.980606&access_code=sqxwycta&format=msgpack
+/api/patient/sqxwycta/messages?birthYear=1965
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=7987284233152254
+/ably?clientId=production_au.client%2F3411804&rnd=7080507937149494
+/api/patient/sqxwycta/program?birthYear=1965
+/ably?rnd=934177084578919
+/ably?clientId=production_au.client%2F3076442&rnd=8891858303957956
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7132596186403335
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8776689155838051
+/api/patient/sqxwycta/exercises/413812486/complete
+/api/patient/sqxwycta/settings
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6982995466248285
+/okcomputer
+/api/patient/sqxwycta/exercises/413812401/complete
+/api/patient/argdpqmc/exercises/406270407/complete
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4645907854583644
+/ably?clientId=production_au.client%2F2689116&rnd=668969383470525
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=26788048732123326
+/ably?clientId=production_au.client%2F2689116&rnd=5399991067959666
+/ably?clientId=production_au.client%2F3254665&rnd=2002643460781972
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=5193539863562373
+/ptdirect/sign_in
+/api/patient/argdpqmc/exercises/406270659/complete
+/ably?clientId=production_au.client%2F3352931&rnd=9714629568975408
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=7348574909340123
+/ably?clientId=production_au.client%2F2359097&rnd=5769250925128888
+/api/patient/argdpqmc/exercises/406270929/complete
+/ably?rnd=12363479916010345
+/ably?capability=&clientId=production_au.client/2857936&access_code=niafqbmo
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6004239807564242
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4937421381536502
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8197785011327545
+/okcomputer
+/api/patient/argdpqmc/exercises/406273540/complete
+/exercises
+/pt/ably?clientId=production_au.provider%2F193566&rnd=1201709750461255
+/ably?clientId=production_au.client%2F2689116&rnd=9671195309082075
+/anonymous_session
+/okcomputer
+/home-exercise-video/plank
+/exercises
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/pt/ably?clientId=production_au.provider%2F540919&rnd=46759547612887786
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/ably?clientId=production_au.client%2F2689116&rnd=818839085454101
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/ably?clientId=production_au.client%2F3076442&rnd=406278288982006
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=32775513417272806
+/okcomputer/all
+/ably?clientId=production_au.client%2F3254665&rnd=8048847087488396
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=6695041689283021
+/ably?rnd=40450284543663795
+/ably?clientId=production_au.client%2F2359097&rnd=4373497814968563
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8873565055603057
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7929277397586412
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=32143548535208355
+/ably?clientId=production_au.client%2F3352931&rnd=9916514018851921
+/ably?clientId=production_au.client%2F2689116&rnd=6650607151191099
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9089062543687307
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9568167065679849
+/ably?clientId=production_au.client%2F2689116&rnd=8439356785495702
+/ably?clientId=production_au.client%2F3076442&rnd=0480582287999588
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=1458644010900636
+/ably?clientId=production_au.client%2F3399110&rnd=3574767013824991
+/okcomputer
+/ably?clientId=production_au.client%2F3254665&rnd=06309800287803435
+/ably?clientId=production_au.client%2F3411804&rnd=6469725713480366
+/ably?rnd=5894970682651259
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=21400916534531778
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=2484137801589381
+/ably?clientId=production_au.client%2F2359097&rnd=2927605271543767
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3768578323552467
+/themes/0/categories.json
+/pt_check_black.svg
+/ably?clientId=production_au.client%2F2689116&rnd=48900411776249597
+/exercises.json?page=1
+/home-exercise-video/plank
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5391593309874168
+/ably?capability=&client_id=production_au.client/1059283&access_code=iendwp
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5582766330556237
+/ably?clientId=production_au.client%2F2689116&rnd=8386021620083122
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=8341354152015525
+/ably?clientId=production_au.client%2F3076442&rnd=29695776868327717
+/okcomputer
+/ably?access_code=oteuienk&clientId=production_au.client/3344713&capability=
+/ably?access_code=oteuienk&clientId=production_au.client/3344713&capability=
+/ably?clientId=production_au.client%2F3411804&rnd=3164957874411384
+/ably?rnd=8070131097321254
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=33707081242163395
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6203965178782012
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=4677827146680944
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8263551870865498
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7730259923484535
+/ably?clientId=production_au.client%2F3254665&rnd=9230150695615853
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8872458650713424
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7027931369016598
+/ably?clientId=production_au.client%2F2689116&rnd=7575169495230305
+/okcomputer
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=2636971856677113
+/api/patient/argdpqmc/messages
+/api/patient/argdpqmc/messages/1022485
+/ably?clientId=production_au.client%2F3076442&rnd=202316229585368
+/ably?clientId=production_au.client%2F3411804&rnd=41332987417691075
+/ably?rnd=5644796698072814
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9339650628846692
+/ably?clientId=production_au.client%2F3352931&rnd=03803718178440252
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6116046010552509
+/ably?clientId=production_au.client%2F2359097&rnd=003170659865015857
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4204049151753244
+/ably?clientId=production_au.client/3349798&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538323579.555791&access_code=sqxwycta&format=msgpack
+/api/patient/sqxwycta/messages?birthYear=1965
+/okcomputer
+/home-exercise-video/plank
+/api/patient/sqxwycta/program?birthYear=1965
+/ably?clientId=production_au.client%2F2689116&rnd=743939334306488
+/api/patient/sqxwycta/settings
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8233136557248695
+/api/patient/sqxwycta/exercises/413812840/complete
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3812685295692848
+/ably?clientId=production_au.client%2F2689116&rnd=8561896188073979
+/okcomputer
+/okcomputer/all
+/okcomputer
+/ably?capability=&clientId=production_au.client/3395416&access_code=cawyxera
+/ably?clientId=production_au.client%2F3254665&rnd=16650038476875384
+/ably?clientId=production_au.client%2F2210734&rnd=7323615783130015
+/ably?clientId=production_au.client%2F3076442&rnd=24049611448811614
+/ably?clientId=production_au.client%2F3411804&rnd=26698312639003885
+/okcomputer
+/ably?rnd=20828456299079945
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6436407518624319
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=09234204073521135
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2486643102169217
+/ably?clientId=production_au.client%2F2359097&rnd=7087005014146206
+/ably?rnd=49541596521126885
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=34765113920314983
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6824371510816292
+/ably?clientId=production_au.client%2F3352931&rnd=8369613004383847
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7930966744860439
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=658298307566898
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=0036535925822076543
+/ably?clientId=production_au.client%2F3411804&rnd=3360997327665691
+/okcomputer
+/ably?rnd=5571522317118185
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=2435357313742572
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=0002966736362770561
+/ably?clientId=production_au.client%2F3076442&rnd=5597234207194859
+/api/patient/dvhsbizf/device_registration/ios
+/api/patient/dvhsbizf/video_calls/channel
+/api/patient/dvhsbizf/program
+/api/patient/dvhsbizf/program
+/ably?clientId=production_au.client/2060706&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538323636.815856&access_code=dvhsbizf&format=msgpack
+/api/patient/dvhsbizf/settings
+/api/patient/dvhsbizf/settings
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8121591832815451
+/ably?clientId=production_au.client%2F2359097&rnd=8689257423323848
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=4501548525795118
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7692049564210206
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9871438045648184
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=5483831280406712
+/ably?clientId=production_au.client/2060706&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538323652.754363&access_code=dvhsbizf&format=msgpack
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=9730568110257143
+/ably?clientId=production_au.client%2F2210734&rnd=7898021345340485
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=030367938853631038
+/ably?rnd=11417271214046476
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=10859981020016751
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4362694265029403
+/ably?clientId=production_au.client%2F3390926&rnd=31651042203191593
+/ably?clientId=production_au.client%2F3076442&rnd=9037010577818346
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4990631254192206
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=4708084390159979
+/ably?clientId=production_au.client%2F3221748&rnd=6206565449390995
+/ably?clientId=production_au.client%2F3254665&rnd=6624550724558482
+/pt/ably?clientId=production_au.provider%2F193566&rnd=37459923915260873
+/ably?clientId=production_au.client%2F2689116&rnd=3481474208659858
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=31000166981349864
+/pt/ably?clientId=production_au.provider%2F540919&rnd=1391855538959499
+/ably?capability=&clientId=production_au.client/3396850&access_code=kjjdnzuv
+/ably?capability=&clientId=production_au.client/3396850&access_code=kjjdnzuv
+/ably?access_code=pujnzfjw&clientId=production_au.client/3384471&capability=
+/okcomputer
+/ably?capability=&clientId=production_au.client/3265618&access_code=xdxvqsvf
+/ably?capability=&clientId=production_au.client/3265618&access_code=xdxvqsvf
+/ably?capability=&clientId=production_au.client/3265618&access_code=xdxvqsvf
+/okcomputer
+/ably?capability=&clientId=production_au.client/3396850&access_code=kjjdnzuv
+/ably?clientId=production_au.client%2F2210734&rnd=7934970840264781
+/ably?clientId=production_au.client%2F3411804&rnd=8118533999971087
+/ably?rnd=8109434564940787
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=015248399692976866
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8530038118931476
+/ably?capability=&clientId=production_au.client/3396850&access_code=kjjdnzuv
+/ably?clientId=production_au.client%2F3076442&rnd=6680897622544258
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=15097684118461463
+/home-exercise-video/plank
+/okcomputer
+/ably?capability=&clientId=production_au.client/3396850&access_code=kjjdnzuv
+/ably?capability=&clientId=production_au.client/3396850&access_code=kjjdnzuv
+/ably?clientId=production_au.client%2F2359097&rnd=03468728236012608
+/ably?clientId=production_au.client%2F3254665&rnd=8934494166987184
+/ably?capability=&clientId=production_au.client/3396850&access_code=kjjdnzuv
+/ably?clientId=production_au.client%2F3221748&rnd=6131991334778826
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6776224308121317
+/ably?clientId=production_au.client%2F2689116&rnd=26020965380853034
+/ably?capability=&clientId=production_au.client/3396850&access_code=kjjdnzuv
+/okcomputer
+/api/patient/kjjdnzuv/program
+/ably?clientId=production_au.client%2F2689116&rnd=029578728654790165
+/api/patient/kjjdnzuv/video_calls/channel
+/api/patient/kjjdnzuv/surveys
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5603866164766684
+/ably?capability=&clientId=production_au.client/3396850&access_code=kjjdnzuv
+/okcomputer/all
+/api/patient/kjjdnzuv/program
+/api/patient/kjjdnzuv/video_calls/channel
+/api/patient/kjjdnzuv/surveys
+/okcomputer
+/ably?capability=&clientId=production_au.client/3396850&access_code=kjjdnzuv
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=39746524373336905
+/ably?clientId=production_au.client%2F2210734&rnd=6360567073328527
+/ably?rnd=4542472042387373
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8020420135874211
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=2944801605810696
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=12026482314113385
+/ably?capability=&clientId=production_au.client/3396850&access_code=kjjdnzuv
+/ably?clientId=production_au.client%2F3076442&rnd=7488802621778
+/ably?capability=&clientId=production_au.client/3396850&access_code=kjjdnzuv
+/ably?clientId=production_au.client%2F2359097&rnd=1448117933148052
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6066323277315571
+/ably?clientId=production_au.client%2F2689116&rnd=3669021829380268
+/okcomputer
+/ably?clientId=production_au.client%2F3254665&rnd=7088723899947715
+/ably?clientId=production_au.client%2F2689116&rnd=48825303347640725
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4874823142994533
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=9209881180033277
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=7062597676628111
+/ably?clientId=production_au.client%2F2210734&rnd=0026245838989715775
+/ably?rnd=6790394824862886
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7162474721722538
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=48514516917029815
+/okcomputer
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=11747265753014657
+/ably?clientId=production_au.client%2F3076442&rnd=9576287153653233
+/login
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4281687150130793
+/users/sign_in
+/ably?clientId=production_au.client%2F2689116&rnd=8301853580197331
+/ably?clientId=production_au.client%2F2359097&rnd=08900444359097736
+/okcomputer
+/exercises
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/ably?clientId=production_au.client%2F2689116&rnd=09718780226657175
+/ably?clientId=production_au.client/2060706&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538323770.811286&access_code=dvhsbizf&format=msgpack
+/themes/0/categories.json
+/ably?clientId=production_au.client%2F3254665&rnd=6460447129793436
+/exercises.json?page=1
+/api/patient/dvhsbizf/program
+/pt/ably?clientId=production_au.provider%2F540919&rnd=49388650536500056
+/api/patient/dvhsbizf/settings
+/okcomputer/all
+/ably?clientId=production_au.client%2F3396068&rnd=034611850709840075
+/okcomputer
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=2866816051478539
+/ably?rnd=0525876013231672
+/ably?clientId=production_au.client%2F2210734&rnd=4158192820453228
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6144416377665893
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7411245488225311
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=2093708226749338
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6750714240962172
+/ably?rnd=620555330285659
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7483225164806304
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6034793085489849
+/ably?clientId=production_au.client%2F2359097&rnd=6739143016649076
+/ably?clientId=production_au.client%2F3076442&rnd=3425381304661004
+/ably?clientId=production_au.client%2F2689116&rnd=732862366947115
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8652217476302018
+/ably?clientId=production_au.client%2F3254665&rnd=9379601500056898
+/okcomputer
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=7455204481832802
+/ably?capability=&clientId=production_au.client/3171399&access_code=wyzcqjbv
+/ably?rnd=14140894594582454
+/home-exercise-video/plank
+/okcomputer
+/ably?capability=&clientId=production_au.client/3171399&access_code=wyzcqjbv
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8916983204468432
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9667378537715317
+/ably?clientId=production_au.client%2F2210734&rnd=7429898582387977
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4739406011764584
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=29223394785981305
+/ably?clientId=production_au.client%2F2689116&rnd=5177080928186097
+/ably?clientId=production_au.client%2F2689116&rnd=21422491375754293
+/ably?clientId=production_au.client%2F2359097&rnd=2270230605362189
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F540919&rnd=122604996392085
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=803733982977843
+/ably?clientId=production_au.client%2F3352931&rnd=8811543610769828
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=1663820485337451
+/okcomputer
+/ably?rnd=10788976202875089
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=09904957432530748
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=043656267385934644
+/ably?clientId=production_au.client%2F2210734&rnd=45823027267063376
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8823939434590311
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3967285308450943
+/ably?clientId=production_au.client%2F2689116&rnd=21645376386193793
+/ably?clientId=production_au.client%2F2689116&rnd=8517875173094687
+/ably?clientId=production_au.client%2F2359097&rnd=44256321829757383
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5581798813279488
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=21113130712935613
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=1689594653650679
+/home-exercise-video/plank
+/okcomputer
+/ably?rnd=8587135478161687
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2944480454312324
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=21878564472098572
+/ably?clientId=production_au.client%2F2210734&rnd=46705678261366534
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2790095071947418
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5203936015914854
+/ably?clientId=production_au.client%2F2689116&rnd=12258764319814408
+/okcomputer/all
+/ably?clientId=production_au.client%2F2689116&rnd=18217367371619342
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3714123860234406
+/ably?clientId=production_au.client%2F2359097&rnd=7620105328072031
+/ably?clientId=production_au.client%2F3076442&rnd=37093280166388254
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=9233520528000598
+/okcomputer
+/ably?rnd=2882972304485225
+/ably?clientId=production_au.client%2F3352931&rnd=0457292040532542
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=876099319136419
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9030240986113935
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6088098692905137
+/ably?clientId=production_au.client%2F2210734&rnd=5486170692891457
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=26717924083754685
+/ably?clientId=production_au.client%2F2689116&rnd=7566431625213841
+/ably?clientId=production_au.client%2F2689116&rnd=4575228834341982
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4833961196981693
+/ably?clientId=production_au.client%2F2359097&rnd=9900080494056194
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3411804&rnd=4440270340428839
+/okcomputer
+/ably?rnd=6022270698486296
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=1829134784544224
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6411807307006903
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=022957349791683512
+/ably?clientId=production_au.client%2F2210734&rnd=5593399435244384
+/ably?clientId=production_au.client%2F3076442&rnd=14279146418053623
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4309406198978323
+/ably?clientId=production_au.client%2F2689116&rnd=18918651809329057
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=19852576531601995
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5358381992241215
+/ably?clientId=production_au.client%2F3352931&rnd=13968778093251566
+/ably?clientId=production_au.client%2F2359097&rnd=8457183266626198
+/okcomputer
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=033334003723895556
+/ably?rnd=7656841843786615
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4179298508301945
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7719372977449808
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=44491851853394704
+/ably?clientId=production_au.client%2F2210734&rnd=7320827576014217
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9517149131162634
+/
+/login
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/ably?clientId=production_au.client%2F2689116&rnd=3639731320660886
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7035188602427409
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7098118421209556
+/ably?clientId=production_au.client%2F2782109&rnd=6258455093459312
+/ably?clientId=production_au.client%2F2782109&rnd=39376656205433547
+/ably?clientId=production_au.client%2F2359097&rnd=5698512139792891
+/ably?clientId=production_au.client%2F3352931&rnd=23002605668720055
+/okcomputer
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=3443485639958268
+/ably?clientId=production_au.client%2F3411804&rnd=7282964141427133
+/ably?rnd=9744592522416531
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=31571773824203975
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8603089043414518
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7674211084280829
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7550234508761968
+/ably?clientId=production_au.client%2F2210734&rnd=0017165808489778556
+/ably?clientId=production_au.client%2F2689116&rnd=5709536257497134
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=962638908015321
+/pt/ably?clientId=production_au.provider%2F540919&rnd=49276248355869545
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=3308131603415716
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=93703006685929
+/ably?rnd=7058758133754928
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5030889087761186
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=09901368681009659
+/ably?clientId=production_au.client%2F3076442&rnd=817844584708082
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3187925824825124
+/pt/ably?clientId=production_au.provider%2F193566&rnd=39495902279368966
+/ably?clientId=production_au.client%2F2689116&rnd=40896689122740004
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=2563176142039978
+/ably?clientId=production_au.client%2F2689116&rnd=8354123289170505
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3634468818019294
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=2948127625666217
+/ably?access_code=qvwyohtq&clientId=production_au.client/3390587&capability=
+/home-exercise-video/plank
+/ably?access_code=qvwyohtq&clientId=production_au.client/3390587&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=11833783382100044
+/ably?rnd=7753567021581684
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4582717079740577
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3721313652885023
+/ably?clientId=production_au.client%2F3076442&rnd=8344059728937384
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=24365159347608345
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F193566&rnd=09881607538588288
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=30357557084792264
+/ably?clientId=production_au.client%2F2210734&rnd=22718882212280667
+/ably?clientId=production_au.client%2F2689116&rnd=17336992339951807
+/ably?capability=&clientId=production_au.client/2857936&access_code=niafqbmo
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8976369097430026
+/ably?clientId=production_au.client%2F3352931&rnd=6444858223074552
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=04284165523992067
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=41203713820956206
+/okcomputer
+/ably?rnd=7893371848699209
+/ably?access_code=bnuimedh&clientId=production_au.client/2621338&capability=
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=08153225328818858
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5242624553238937
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=197875294970689
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9024861670082067
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=4773475405056544
+/ably?clientId=production_au.client%2F2210734&rnd=958262922982051
+/ably?clientId=production_au.client%2F2689116&rnd=12911788091072318
+/ably?access_code=qvwyohtq&clientId=production_au.client/3390587&capability=
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8641307157893261
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F362142&rnd=5430072654617917
+/ably?clientId=production_au.client%2F2359097&rnd=06465637468407426
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3076442&rnd=39196801795865754
+/ably?clientId=production_au.client%2F3352931&rnd=7580525094480952
+/ably?clientId=production_au.client%2F3397578&rnd=9362414546124816
+/ably?clientId=production_au.client%2F3411804&rnd=7762755785252728
+/okcomputer
+/ably?rnd=4048318185775577
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=03955408348348599
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9486383378615362
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=12308552292580854
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7723416401962324
+/ably?clientId=production_au.client%2F2689116&rnd=863713656221339
+/ably?clientId=production_au.client%2F2210734&rnd=14484650748078254
+/ably?clientId=production_au.client%2F2689116&rnd=5058945984410006
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6697683709945346
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=1827646458862786
+/cohorts.json?date=2013-10-01
+/cohorts.json?date=2013-11-01
+/ably?clientId=production_au.client%2F3397578&rnd=7749831471875461
+/cohorts.json?date=2013-12-01
+/cohorts.json?date=2014-01-01
+/ably?rnd=4686202297055222
+/cohorts.json?date=2014-02-01
+/cohorts.json?date=2014-03-01
+/ably?clientId=production_au.client%2F3411804&rnd=43935892133635873
+/cohorts.json?date=2014-05-01
+/cohorts.json?date=2014-04-01
+/cohorts.json?date=2014-06-01
+/okcomputer
+/api/patient/myaonxsi/device_registration/ios
+/api/patient/myaonxsi/program
+/api/patient/myaonxsi/program
+/api/patient/myaonxsi/video_calls/channel
+/cohorts.json?date=2014-08-01
+/ably?rnd=6943334167135158
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7136261254674536
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5661100628026159
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=09395135298743806
+/okcomputer
+/cohorts.json?date=2014-07-01
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6397043147092027
+/cohorts.json?date=2014-09-01
+/cohorts.json?date=2014-10-01
+/ably?clientId=production_au.client%2F3352931&rnd=06142926764757117
+/ably?capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538324168.637791&access_code&format=msgpack
+/ably?clientId=production_au.client/2822265&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538324168.761781&access_code=myaonxsi&format=msgpack
+/cohorts.json?date=2014-11-01
+/api/patient/myaonxsi/settings
+/api/patient/myaonxsi/settings
+/cohorts.json?date=2014-12-01
+/ably?clientId=production_au.client%2F2689116&rnd=13326558430034252
+/cohorts.json?date=2015-02-01
+/cohorts.json?date=2015-01-01
+/cohorts.json?date=2015-03-01
+/cohorts.json?date=2015-04-01
+/cohorts.json?date=2015-05-01
+/ably?clientId=production_au.client%2F3076442&rnd=15791951111690683
+/cohorts.json?date=2015-06-01
+/cohorts.json?date=2015-07-01
+/cohorts.json?date=2015-08-01
+/okcomputer
+/cohorts.json?date=2015-09-01
+/api/patient/myaonxsi/program
+/ably?clientId=production_au.client%2F2210734&rnd=23794830451687488
+/ably?clientId=production_au.client%2F2689116&rnd=17207410393684874
+/cohorts.json?date=2015-10-01
+/cohorts.json?date=2015-11-01
+/pt/ably?clientId=production_au.provider%2F540919&rnd=09313099871669972
+/cohorts.json?date=2015-12-01
+/cohorts.json?date=2016-01-01
+/cohorts.json?date=2016-02-01
+/cohorts.json?date=2016-03-01
+/cohorts.json?date=2016-04-01
+/cohorts.json?date=2016-05-01
+/cohorts.json?date=2016-06-01
+/cohorts.json?date=2016-08-01
+/cohorts.json?date=2016-07-01
+/cohorts.json?date=2016-09-01
+/cohorts.json?date=2016-10-01
+/home-exercise-video/plank
+/okcomputer
+/cohorts.json?date=2016-11-01
+/cohorts.json?date=2016-12-01
+/cohorts.json?date=2017-01-01
+/cohorts.json?date=2017-02-01
+/cohorts.json?date=2017-03-01
+/cohorts.json?date=2017-05-01
+/cohorts.json?date=2017-04-01
+/ably?clientId=production_au.client%2F2359097&rnd=11083134225076008
+/cohorts.json?date=2017-06-01
+/cohorts.json?date=2017-07-01
+/cohorts.json?date=2017-08-01
+/cohorts.json?date=2017-09-01
+/cohorts.json?date=2017-10-01
+/ably?clientId=production_au.client%2F3411804&rnd=3231324729595417
+/cohorts.json?date=2017-11-01
+/cohorts.json?date=2017-12-01
+/okcomputer
+/cohorts.json?date=2018-01-01
+/cohorts.json?date=2018-02-01
+/cohorts.json?date=2018-03-01
+/cohorts.json?date=2018-04-01
+/cohorts.json?date=2018-05-01
+/cohorts.json?date=2018-06-01
+/cohorts.json?date=2018-07-01
+/cohorts.json?date=2018-08-01
+/cohorts.json?date=2018-09-01
+/aggregates.json?date=2018-09-30
+/okcomputer/all
+/okcomputer
+/ably?rnd=5373428151624791
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=31177097977424717
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=41632167261525255
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=08918386250897692
+/pt/ably?clientId=production_au.provider%2F193566&rnd=2622464129925772
+/ably?clientId=production_au.client%2F2689116&rnd=7668002258336977
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=8424276990974955
+/ably?clientId=production_au.client%2F2689116&rnd=9503989554470227
+/pt/ably?clientId=production_au.provider%2F540919&rnd=2575496253999303
+/ably?clientId=production_au.client%2F2210734&rnd=019611125618988368
+/ably?capability=&clientId=production_au.client/2064122&access_code=rvuneoop
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=9481010329349371
+/ably?clientId=production_au.client%2F3411804&rnd=026995944492552604
+/okcomputer
+/
+/login
+/okcomputer
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/ably?rnd=3579850595884284
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9828342772492531
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5543467682113532
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=1832349682829142
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8093572633547899
+/api/patient/erxxmuum/program
+/ably?clientId=production_au.client%2F2689116&rnd=43618663298314453
+/api/patient/erxxmuum/settings
+/api/patient/erxxmuum/video_calls/channel
+/api/patient/erxxmuum/program
+/api/patient/erxxmuum/device_registration/ios
+/api/patient/erxxmuum/settings
+/ably?clientId=production_au.client/3417255&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538324232.865874&access_code=erxxmuum&format=msgpack
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=15589933142767398
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4905279365401909
+/ably?clientId=production_au.client%2F2210734&rnd=10836882576139772
+/ably?clientId=production_au.client%2F2620813&rnd=4479415025962059
+/home-exercise-video/plank
+/okcomputer
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/ably?clientId=production_au.client%2F3076442&rnd=36477832457667114
+/ably?clientId=production_au.client%2F2359097&rnd=24297611988071654
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=5636220345472628
+/okcomputer/all
+/ably?clientId=production_au.client%2F3352931&rnd=1518701355581622
+/okcomputer
+/ably?capability=&clientId=production_au.client/1654751&access_code=iywgyakg
+/ably?rnd=5109152275556856
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=11219295463451018
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7799757005877199
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7531257602856489
+/pt/ably?clientId=production_au.provider%2F193566&rnd=18516044326761794
+/ably?clientId=production_au.client%2F2689116&rnd=5331929197491241
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=07708047165464538
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8229686978045592
+/ably?clientId=production_au.client%2F2210734&rnd=8597213885535138
+/okcomputer
+/ably?access_code=rbaqbbfz&clientId=production_au.client/2858296&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=8103416082479188
+/ably?clientId=production_au.client%2F2359097&rnd=36815772795954804
+/ably?rnd=0803611065496046
+/okcomputer
+/ably?rnd=4002535047153579
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3113277621178845
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6776430493284327
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=38145832904145993
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5719915241882971
+/ably?clientId=production_au.client%2F2689116&rnd=4470021529388555
+/okcomputer
+/ably?access_code=gwijjqxq&clientId=production_au.client/2858337&capability=
+/ably?access_code=gwijjqxq&clientId=production_au.client/2858337&capability=
+/ably?access_code=gwijjqxq&clientId=production_au.client/2858337&capability=
+/ably?access_code=gwijjqxq&clientId=production_au.client/2858337&capability=
+/ably?access_code=gwijjqxq&clientId=production_au.client/2858337&capability=
+/ably?access_code=gwijjqxq&clientId=production_au.client/2858337&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=368056228379412
+/ably?clientId=production_au.client%2F3076442&rnd=6530830525083167
+/pt/ably?clientId=production_au.provider%2F540919&rnd=20224197282357648
+/ably?clientId=production_au.client%2F3352931&rnd=4074368718425261
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=9156250412581615
+/pt/ably?clientId=production_au.provider%2F1174793&rnd=18861143576581774
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=6178709356854778
+/ably?clientId=production_au.client%2F2359097&rnd=6786444438147232
+/okcomputer/all
+/okcomputer
+/ably?rnd=886950613152631
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8170311105669146
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8239172557488836
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=11420082722363256
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9701297758607923
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=8164367652756894
+/ably?rnd=6521796963927251
+/ably?clientId=production_au.client%2F2689116&rnd=7753255973849154
+/ably?clientId=production_au.client%2F3076442&rnd=3438466816618937
+/pt/ably?clientId=production_au.provider%2F540919&rnd=22738991969459055
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=8645691655636865
+/ably?capability=&clientId=production_au.client/2362801&access_code=oiykeoxx
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/okcomputer
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/ably?clientId=production_au.client%2F3411804&rnd=09053173407352777
+/ably?clientId=production_au.client%2F2359097&rnd=6902251087471329
+/ably?clientId=production_au.client%2F3352931&rnd=26435113422370593
+/okcomputer
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/pt/ably?clientId=production_au.provider%2F193566&rnd=37563682826963585
+/ably?rnd=12691987989192288
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8604717219722027
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=09106052335695214
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=510812713631243
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=20372674641512756
+/ably?clientId=production_au.client%2F2689116&rnd=10537239658705344
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F540919&rnd=36442877985488376
+/okcomputer
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/login
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/ably?clientId=production_au.client%2F2210734&rnd=7923461402038974
+/users/sign_in
+/exercises
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/okcomputer
+/themes/0/categories.json
+/exercises.json?page=1
+/ably?clientId=production_au.client%2F3076442&rnd=2712522996864415
+/ably?clientId=production_au.client%2F3411804&rnd=9177755434655951
+/okcomputer/all
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/ably?clientId=production_au.client%2F2359097&rnd=15032272883584508
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5889353821314329
+/ably?rnd=057904471294112136
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=1320471240415093
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5769591573116302
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=08976517237553616
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=32042705133785887
+/ably?clientId=production_au.client%2F2689116&rnd=5874166177799895
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=2621759346792971
+/ably?clientId=production_au.client%2F2210734&rnd=6636907753626968
+/okcomputer
+/ably?clientId=production_au.client/2839989&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538324400.210176&access_code=hqimucgu&format=msgpack
+/ably?capability=&clientId=production_au.client/3413061&access_code=spmeebxo
+/ably?capability=&clientId=production_au.client/3413061&access_code=spmeebxo
+/ably?capability=&clientId=production_au.client/3413061&access_code=spmeebxo
+/ably?capability=&clientId=production_au.client/3413061&access_code=spmeebxo
+/ably?rnd=6776018300502351
+/ably?clientId=production_au.client%2F3411804&rnd=5914512357861084
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=8398814731482329
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=47983366619499357
+/ably?rnd=12032451253472676
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8766649055374707
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3649803665986393
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5056668119419716
+/ably?clientId=production_au.client%2F2689116&rnd=4102464123092324
+/ably?clientId=production_au.client%2F3076442&rnd=9029087910911435
+/ably?clientId=production_au.client%2F2689116&rnd=8712832805389539
+/home-exercise-video/plank
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=615348672383333
+/webpack/physi-app-bundle-34341f083da33f3a6f1f.css
+/assets/physi_app-e58f8f57dcbd6e78aec340184e236532f10ea7e846e1e5772f2e60d5a6ad8f3b.css
+/assets/physi_app/application-50966baa7493623700e8fbc145577815e17f28afde72fcd3677839588528c2d4.js
+/webpack/vendor-bundle-b44218a586e542f80957.js
+/webpack/physi-app-bundle-34341f083da33f3a6f1f.js
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=22695632333618065
+/ably?clientId=production_au.client%2F2210734&rnd=24384169030848746
+/okcomputer/all
+/ably?clientId=production_au.client%2F3411804&rnd=643574351445337
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=2479465871862887
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5603893231747838
+/ably?rnd=6685502096047844
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=23358110660755216
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=35172867038237654
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8833329216707548
+/ably?clientId=production_au.client%2F2689116&rnd=11300527999769172
+/ably?clientId=production_au.client%2F2689116&rnd=07236194006761476
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=027272474624282284
+/ably?clientId=production_au.client%2F3076442&rnd=8544017744296503
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=8417182234642466
+/ably?clientId=production_au.client%2F3411804&rnd=36086583604370054
+/okcomputer
+/ably?clientId=production_au.client%2F3340008&rnd=07812982535465429
+/ably?clientId=production_au.client%2F2359097&rnd=9722711540568643
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=8512418400152906
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7340128550682017
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9661551258041119
+/ably?rnd=7871873661408602
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4277183364648489
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9939442903114315
+/ably?clientId=production_au.client%2F2689116&rnd=9283978598109877
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=17824448445346763
+/pt/ably?clientId=production_au.provider%2F540919&rnd=45190656609706403
+/okcomputer
+/exercises
+/anonymous_session
+/servers/demo
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=2087476974534641
+/ably?clientId=production_au.client%2F3411804&rnd=9721356765629234
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=4710296190796587
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=9511597986176505
+/pt/ably?clientId=production_au.provider%2F193566&rnd=17757222753052582
+/ably?rnd=9089840379876297
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8164866383406224
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9407843660543693
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8056634291196723
+/ably?clientId=production_au.client%2F2689116&rnd=43364124023730577
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=5867522345182614
+/ably?clientId=production_au.client%2F3352931&rnd=5663437876063404
+/pt/ably?clientId=production_au.provider%2F540919&rnd=976443954982311
+/okcomputer
+/ably?capability=&client_id=production_au.client/1060700&access_code=dwrmuk
+/ably?clientId=production_au.client%2F2210734&rnd=3757925016271211
+/ably?clientId=production_au.client%2F3411804&rnd=3613130854736827
+/okcomputer
+/okcomputer
+/ably?clientId=production_au.client%2F3386939&rnd=035547130562817
+/ably?clientId=production_au.client%2F2359097&rnd=5390376211106969
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3496553420175852
+/ably?rnd=2946338843168608
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9762244713449297
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=43607663388136775
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=0723774757322071
+/ably?clientId=production_au.client%2F2689116&rnd=9130315158962363
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=1712999132344003
+/ably?clientId=production_au.client%2F2689116&rnd=22271214057015198
+/ably?access_code=xwthtsuo&clientId=production_au.client/3415082&capability=
+/pt/ably?clientId=production_au.provider%2F540919&rnd=16559745375377943
+/okcomputer
+/access/qarnpbwz
+/program?redirected=
+/ably?rnd=7710117320060534
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=7529246356355786
+/ably?clientId=production_au.client%2F2210734&rnd=2224234547125219
+/ably?clientId=production_au.client%2F2802754&rnd=9628249266665154
+/ably?capability=&client_id=production_au.client/2066399&access_code=ffguuors
+/okcomputer
+/ably?clientId=production_au.client%2F3410726&rnd=039359798799088574
+/exercises/408515351
+/ably?rnd=32517358304266697
+/pt/ably?clientId=production_au.provider%2F193566&rnd=17295098139278786
+/ably?clientId=production_au.client%2F2359097&rnd=04816300440646182
+/ably?rnd=7672645005996135
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=30689979113494603
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=003201166092324792
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=1297164130273647
+/ably?clientId=production_au.client%2F2689116&rnd=12386064342711367
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=8789069456626537
+/ably?capability=&clientId=production_au.client/2857936&access_code=niafqbmo
+/ably?clientId=production_au.client%2F2689116&rnd=2495254165556391
+/pt/ably?clientId=production_au.provider%2F540919&rnd=24398434419553316
+/okcomputer
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=7952774389363497
+/ably?clientId=production_au.client%2F2210734&rnd=7152792964427244
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8530213921510084
+/ably?rnd=31320789531518756
+/ably?clientId=production_au.client%2F2359097&rnd=3310617231851771
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7380975859757184
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2237947557674953
+/ably?rnd=15299430965121918
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3906370526172618
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2689116&rnd=724444327989801
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=9027173739867198
+/ably?clientId=production_au.client%2F2689116&rnd=19174293217830063
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=22471790233806277
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=7692587945028175
+/ably?clientId=production_au.client%2F3076442&rnd=5640166954610154
+/ably?clientId=production_au.client%2F2210734&rnd=7608945694095604
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5338198989802307
+/ably?rnd=7827443193795742
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=14721883108547007
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8516394763967112
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2683267026733622
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=8264686424512782
+/ably?clientId=production_au.client%2F2689116&rnd=520001168279751
+/ably?clientId=production_au.client%2F2689116&rnd=2207183063185021
+/okcomputer
+/ably?rnd=8957981722983552
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6934533926302442
+/exercises/408515352
+/ably?rnd=9526298980938999
+/ably?clientId=production_au.client%2F3352931&rnd=04658810628088883
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=6932318687955434
+/ably?clientId=production_au.client%2F3076442&rnd=562652748060684
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=4154614973316759
+/ably?clientId=production_au.client%2F3400226&rnd=9575239258607195
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8777399297087614
+/home-exercise-video/plank
+/okcomputer
+/ably?rnd=9543664526846798
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=1449304095932693
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8413803706317349
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=12867353029735096
+/ably?clientId=production_au.client%2F2689116&rnd=24658996635688935
+/ably?clientId=production_au.client%2F2359097&rnd=4730327373793688
+/ably?clientId=production_au.client%2F2689116&rnd=6888353717781812
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=2066406786541739
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=7580446919346473
+/ably?clientId=production_au.client%2F3076442&rnd=9908772315422416
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=9998764809792571
+/ably?clientId=production_au.client%2F3352931&rnd=16077304516439805
+/ably?rnd=6488952709539728
+/exercises/408515353
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7137026064742891
+/ably?rnd=1875246023139603
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4299713210960123
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=18945228334264463
+/ably?rnd=7943212251800504
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7274271550935061
+/ably?clientId=production_au.client%2F2689116&rnd=17405516193339743
+/ably?clientId=production_au.client%2F2359097&rnd=24918487279701362
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=9568813455011949
+/.well-known/apple-app-site-association
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5810634270707207
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=8219262274736636
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=08190370787984602
+/ably?clientId=production_au.client%2F2210734&rnd=3464430878149338
+/ably?access_code=npucmocp&clientId=production_au.client/3172671&capability=
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F193566&rnd=1962512558977585
+/okcomputer
+/ably?clientId=production_au.client%2F3386578&rnd=33104317067493527
+/ably?rnd=8093564488315113
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7906857727558478
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=05172314288254287
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6682630719765732
+/ably?clientId=production_au.client%2F2689116&rnd=6744401170172865
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=06359314392657023
+/ably?clientId=production_au.client%2F2689116&rnd=8341105676125584
+/ably?access_code=npucmocp&clientId=production_au.client/3172671&capability=
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6606499381308646
+/okcomputer/all
+/okcomputer
+/ably?capability=&clientId=production_au.client/3400821&access_code=zjryqdgm
+/ably?clientId=production_au.client%2F3411804&rnd=6055912284107512
+/okcomputer
+/ably?clientId=production_au.client%2F3384126&rnd=33986513704706334
+/ably?clientId=production_au.client%2F2210734&rnd=4029401609842047
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=40248958062494156
+/ably?clientId=production_au.client%2F3076442&rnd=14015722364412375
+/ably?clientId=production_au.client%2F2689116&rnd=1088471012104908
+/ably?rnd=634125069825797
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8404951699096754
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=726918831039985
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8244833793432484
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=4567175266407295
+/ably?clientId=production_au.client%2F2689116&rnd=9998518678504811
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9966736012894222
+/ably?capability=&clientId=production_au.client/3400821&access_code=zjryqdgm
+/okcomputer
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/ably?clientId=production_au.client%2F3411804&rnd=30653337815844694
+/okcomputer
+/ably?rnd=4236256418904967
+/ably?clientId=production_au.client%2F3352931&rnd=29494256544618014
+/exercises/408515354
+/ably?rnd=5158288046303068
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=9811011611596032
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9489113946438423
+/ably?clientId=production_au.client%2F3076442&rnd=42223220205888234
+/ably?clientId=production_au.client%2F2689116&rnd=7098603569757367
+/ably?rnd=9985419334191685
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=34749178129232106
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3924570796075135
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6654296500653658
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=8502853283465932
+/ably?clientId=production_au.client%2F2359097&rnd=46288706213973363
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F540919&rnd=38712500859731835
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=19332866845935925
+/okcomputer
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=1994682966916994
+/ably?clientId=production_au.client%2F2210734&rnd=29327765503208303
+/ably?clientId=production_au.client%2F3076442&rnd=5956265538901379
+/ably?rnd=4709299682762358
+/ably?clientId=production_au.client%2F2689116&rnd=6021835801627935
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6574622617735053
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7536507921559374
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6832049998170224
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=8198028425620993
+/ably?clientId=production_au.client%2F2689116&rnd=9873223470161328
+/ably?clientId=production_au.client%2F2359097&rnd=6746243968270122
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7350065568052218
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F1460&rnd=32897689262774676
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=21975008294859127
+/home-exercise-video/plank
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5818151259500133
+/ably?clientId=production_au.client%2F2210734&rnd=07666995733231818
+/ably?clientId=production_au.client%2F2689116&rnd=7669452299832074
+/ably?rnd=114963459552476
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=27500771654947864
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=09164926163266873
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=03106129592031248
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=22846678319006875
+/okcomputer/all
+/ably?clientId=production_au.client%2F2689116&rnd=4094468023808133
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7027963631955572
+/ably?clientId=production_au.client%2F2359097&rnd=8001637036481024
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=8270589954418057
+/ably?clientId=production_au.client%2F3411804&rnd=8964555676454454
+/ably?capability=&clientId=production_au.client/3265154&access_code=wpnnaiwe
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6037701016052577
+/ably?rnd=1611612437439338
+/ably?clientId=production_au.client%2F2689116&rnd=5120550679818228
+/ably?clientId=production_au.client%2F2210734&rnd=20360331844091206
+/pt/ably?clientId=production_au.provider%2F723918&rnd=18250240829487124
+/okcomputer
+/ably?rnd=2098646410063456
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9371098541844203
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8416081971661797
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8337099051659576
+/ably?clientId=production_au.client%2F2689116&rnd=4417446721785443
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=844470959996551
+/ably?capability=&clientId=production_au.client/2952021&access_code=kujyzwvh
+/ably?clientId=production_au.client%2F2359097&rnd=9808045123571372
+/ably?capability=&clientId=production_au.client/3417095&access_code=opozhukh
+/pt/ably?clientId=production_au.provider%2F95&rnd=3494263216496263
+/ably?rnd=4649927563733327
+/okcomputer
+/exercises/408515355
+/ably?rnd=8305991607531495
+/ably?clientId=production_au.client%2F3223240&rnd=027189595560286328
+/ably?clientId=production_au.client%2F3411804&rnd=6926346067639889
+/home-exercise-video/plank
+/ably?access_code=rbaqbbfz&clientId=production_au.client/2858296&capability=
+/ably?clientId=production_au.client%2F3076442&rnd=8876785272525545
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=18496526242711453
+/ably?clientId=production_au.client%2F2689116&rnd=5783483083076335
+/okcomputer
+/ably?rnd=9879072502842223
+/ably?clientId=production_au.client%2F2210734&rnd=7579181051291908
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5964454768261847
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6042208709596133
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=32241291332798316
+/okcomputer/all
+/ably?clientId=production_au.client%2F2689116&rnd=43342117451671025
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=18420791951944038
+/ably?clientId=production_au.client%2F2359097&rnd=4879112993538022
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=7299491819021431
+/okcomputer
+/ably?capability=&clientId=production_au.client/3265154&access_code=wpnnaiwe
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9241065710891054
+/ably?clientId=production_au.client%2F3076442&rnd=2973934537570698
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6406819346857513
+/ably?rnd=44665090007865627
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=023252751590109755
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=08175151854545737
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=07281379909557395
+/ably?clientId=production_au.client%2F2210734&rnd=7293735722558714
+/ably?capability=&clientId=production_au.client/3171399&access_code=wyzcqjbv
+/ably?clientId=production_au.client%2F2689116&rnd=4889100085393625
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4935256376168611
+/ably?clientId=production_au.client%2F3352931&rnd=03570329337966749
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=846088084398164
+/ably?clientId=production_au.client%2F3411804&rnd=2179187213313909
+/home-exercise-video/plank
+/okcomputer
+/ptdirect/providers
+/login
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5173408853828603
+/users/sign_in
+/exercises
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/okcomputer
+/themes/0/categories.json
+/exercises.json?page=1
+/ably?clientId=production_au.client%2F2689116&rnd=5211170411109569
+/ably?rnd=8812678530432727
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=15328531772640241
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8198508448487065
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8455249540576777
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=08508036783946404
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=7196417554526667
+/ably?clientId=production_au.client%2F2689116&rnd=7804699859609461
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7234268921826434
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=9958184489237254
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/ably?clientId=production_au.client%2F3411804&rnd=15739007417938822
+/ably?capability=&clientId=production_au.client/2362801&access_code=oiykeoxx
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=104307152809899
+/ably?clientId=production_au.client%2F3352931&rnd=4095736443797948
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3230722231954035
+/okcomputer
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=8836284848393607
+/ably?rnd=8521041476113249
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=436491018930909
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3621786989943152
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=0854978496307417
+/ably?clientId=production_au.client%2F2210734&rnd=6694627750681761
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=9366219488314811
+/ably?clientId=production_au.client%2F3076442&rnd=2098660373305472
+/pt/ably?clientId=production_au.provider%2F540919&rnd=21105444299512377
+/ably?access_code=ecvwjhwt&clientId=production_au.client/1413979&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=8927076711575537
+/ably?clientId=production_au.client%2F3411804&rnd=8219521636640426
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=10991903894580735
+/pt/ably?clientId=production_au.provider%2F193566&rnd=010889077665381164
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7659643700190932
+/okcomputer/all
+/ably?rnd=6065549667718644
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7062750578721388
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=16597267913799252
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=019752084753606125
+/ably?capability=&clientId=production_au.client/2848506&access_code=dageppqt
+/ably?clientId=production_au.client%2F3352931&rnd=9667089725684059
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=29530910518386055
+/ably?capability=&clientId=production_au.client/2848506&access_code=dageppqt
+/ably?clientId=production_au.client%2F2689116&rnd=5778089283824182
+/ably?clientId=production_au.client%2F3076442&rnd=023153996638741403
+/pt/ably?clientId=production_au.provider%2F540919&rnd=15415783931152882
+/pt/ably?clientId=production_au.provider%2F2484725&rnd=03674972368565288
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=5252248466485128
+/ably?clientId=production_au.client%2F3411804&rnd=024176771706999278
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=3303205659417183
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4724067713769935
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=8807450559167249
+/ably?rnd=18942482197905264
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6283546247226766
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=24246978413754805
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=034419011496344964
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7160932479958675
+/ably?clientId=production_au.client%2F2210734&rnd=4409898131554213
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3030193539414403
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=6352252838439408
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3411804&rnd=7046441564522641
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=9152361812721532
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8633008786425194
+/ably?capability=&clientId=production_au.client/3417095&access_code=opozhukh
+/ably?clientId=production_au.client%2F2689116&rnd=7329246586110407
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9780897491357214
+/ably?rnd=15286905039148202
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=828402664804055
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9919500451675081
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=589324767571914
+/ably?clientId=production_au.client%2F2210734&rnd=36183749902211293
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4322852899046863
+/ably?clientId=production_au.client%2F3340259&rnd=5147226425580145
+/ably?capability=&clientId=production_au.client/3416247&access_code=czdcjvrg
+/ably?capability=&clientId=production_au.client/3416247&access_code=czdcjvrg
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=4215737160818888
+/ably?clientId=production_au.client%2F2359097&rnd=258427165298847
+/ably?rnd=7274475574751889
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4367893885820957
+/ably?clientId=production_au.client%2F2689116&rnd=30464035903951814
+/ably?clientId=production_au.client%2F3352931&rnd=26088992463320904
+/ably?clientId=production_au.client%2F3076442&rnd=30753337993282104
+/okcomputer
+/ably?rnd=4639049195577032
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6372104232521769
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=49334560883826595
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7660436827879857
+/ably?clientId=production_au.client%2F2689116&rnd=773909438709667
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=09515098495565466
+/pt/ably?clientId=production_au.provider%2F540919&rnd=17910573607360458
+/ably?clientId=production_au.client%2F3340259&rnd=6052945626170875
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=019203750071447367
+/ably?clientId=production_au.client%2F2359097&rnd=8402677474570057
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6916665559482504
+/okcomputer/all
+/ably?clientId=production_au.client%2F3076442&rnd=20839353314684494
+/ably?clientId=production_au.client%2F2689116&rnd=8179816901138595
+/okcomputer
+/ably?rnd=13410208732357698
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7116447320717962
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5258934496810339
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6404436597621326
+/ably?clientId=production_au.client%2F2689116&rnd=2888172212052531
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=20573909343370622
+/ably?clientId=production_au.client%2F2210734&rnd=7154506395785967
+/pt/ably?clientId=production_au.provider%2F540919&rnd=1833367876850176
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=3334043618738317
+/ably?capability=&clientId=production_au.client/2684167&access_code=ftxuohyu
+/ably?clientId=production_au.client%2F2359097&rnd=7522619081132071
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7041956672837479
+/ably?clientId=production_au.client%2F3340259&rnd=5353243058066025
+/ably?clientId=production_au.client%2F3076442&rnd=8650699438091061
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7349229768721344
+/ably?rnd=10751954644698603
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=563222217780821
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7582543949862499
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9566508087654384
+/ably?clientId=production_au.client%2F2689116&rnd=32005395662935476
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F471723&rnd=11524540075823975
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6689680506424844
+/ably?clientId=production_au.client%2F2210734&rnd=32862810002013676
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=3697193771190088
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=5271168965797184
+/ably?clientId=production_au.client%2F2359097&rnd=6736473894935777
+/pt/ably?clientId=production_au.provider%2F193566&rnd=19869139167887817
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=32260841966724096
+/ably?rnd=5808970294012585
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=14538548951787034
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=464316097795064
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=694541627560421
+/ably?clientId=production_au.client%2F2689116&rnd=5167649395838203
+/ably?clientId=production_au.client%2F3076442&rnd=11303198226996913
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=9948629075767677
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9179194507850241
+/ably?clientId=production_au.client%2F2210734&rnd=0051364250065981665
+/pt/ably?rnd=0029547130681359945
+/okcomputer
+/ably?clientId=production_au.client%2F3411804&rnd=04295242429267837
+/ably?clientId=production_au.client%2F2792761&rnd=0497086219675531
+/ably?access_code=cqjnbvqh&clientId=production_au.client/3389982&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=18601244659027882
+/pt/ably?clientId=production_au.provider%2F193566&rnd=03801507456394648
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7123577750565631
+/ably?rnd=5803055650090956
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=03675287010874406
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=19775881084427427
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=1978666506663571
+/ably?clientId=production_au.client%2F2689116&rnd=7637050842033486
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=08890439687548535
+/pt/ably?clientId=production_au.provider%2F540919&rnd=14316367164661914
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=6356642304855207
+/ably?clientId=production_au.client%2F3340259&rnd=3841145919635208
+/ably?clientId=production_au.client%2F3411804&rnd=7323530661368759
+/robots.txt
+/okcomputer
+/
+/ably?access_code=rcojjreu&clientId=production_au.client/2857549&capability=
+/ably?access_code=rcojjreu&clientId=production_au.client/2857549&capability=
+/ably?clientId=production_au.client%2F2844195&rnd=5207911031489084
+/okcomputer/all
+/ably?clientId=production_au.client%2F2359097&rnd=6322958414934252
+/login
+/pt/ably?clientId=production_au.provider%2F193566&rnd=2047136560456826
+/okcomputer
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/ably?capability=&clientId=production_au.client/3401227&access_code=xsyghvis
+/ably?clientId=production_au.client%2F2689116&rnd=12299344112486632
+/ably?rnd=666923341424001
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=0477719888043453
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5736482552140221
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4278775625498583
+/ably?capability=&clientId=production_au.client/2848506&access_code=dageppqt
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6337537057820499
+/ably?clientId=production_au.client%2F3076442&rnd=8517709904125708
+/pt/ably?clientId=production_au.provider%2F540919&rnd=46698441728242646
+/okcomputer
+/ably?clientId=production_au.client%2F3389692&rnd=9494299753631394
+/ably?clientId=production_au.client%2F2210734&rnd=5308228551529361
+/ably?clientId=production_au.client%2F3411804&rnd=6917771522679399
+/ably?clientId=production_au.client%2F3352931&rnd=681278780159775
+/okcomputer
+/ably?clientId=production_au.client%2F3350330&rnd=718750434681892
+/ably?clientId=production_au.client%2F3340259&rnd=10168911317721308
+/pt/ably?clientId=production_au.provider%2F193566&rnd=28313617306048333
+/ably?clientId=production_au.client%2F2359097&rnd=9425149009049964
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6945906218575191
+/ably?rnd=36844865110274805
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=1995098626074503
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6287796658798499
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5970898383957428
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=010922808496812708
+/ably?clientId=production_au.client%2F3383671&rnd=01979106011416465
+/ably?clientId=production_au.client%2F3383671&rnd=9784576727955556
+/home-exercise-video/plank
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7249832754593499
+/ably?clientId=production_au.client%2F2210734&rnd=24611611523306953
+/ably?clientId=production_au.client%2F3076442&rnd=05597448311803632
+/ably?clientId=production_au.client%2F3411804&rnd=1959769387792028
+/okcomputer
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F193566&rnd=740731796200025
+/okcomputer
+/ably?clientId=production_au.client%2F2536387&rnd=6802851618548501
+/ably?clientId=production_au.client%2F2536387&rnd=2699286226354075
+/ably?clientId=production_au.client%2F2359097&rnd=22963843987078647
+/ably?clientId=production_au.client%2F3352931&rnd=11805083285683282
+/ably?clientId=production_au.client%2F2689116&rnd=09567720367892041
+/api/physiapp/intake/settings
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8767629192775597
+/ably?rnd=07757775628506658
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9013780600190036
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9466640246463882
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=07464745515081095
+/ably?clientId=production_au.client%2F2689116&rnd=5348440024487915
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8105069306425372
+/ably?clientId=production_au.client%2F3076442&rnd=15790035773305144
+/ably?clientId=production_au.client%2F2210734&rnd=9933170340813411
+/okcomputer
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5608300446135399
+/ably?clientId=production_au.client%2F2359097&rnd=3111997124719832
+/ably?clientId=production_au.client%2F2689116&rnd=8457916435628374
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4121781965224576
+/ably?rnd=18398028251033693
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=13414709775920675
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=24495183825455458
+/pt/ably?clientId=production_au.provider%2F3395722&rnd=736879402058388
+/ably?clientId=production_au.client%2F2689116&rnd=6294694111676806
+/home-exercise-video/plank
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=35543534025624757
+/ably?clientId=production_au.client%2F3352931&rnd=5814175730643867
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=10316171748073688
+/ably?clientId=production_au.client%2F3340259&rnd=866875357194937
+/ably?clientId=production_au.client%2F2210734&rnd=9342142084183231
+/okcomputer/all
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6600591133852909
+/ably?clientId=production_au.client%2F2359097&rnd=34689530766389165
+/ably?clientId=production_au.client%2F2689116&rnd=035932832625818145
+/okcomputer
+/ably?rnd=07529782115116279
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=820901731630796
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4320335238779187
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9580762032821983
+/ably?clientId=production_au.client%2F2689116&rnd=15831949650993593
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7420634850840646
+/ably?clientId=production_au.client%2F3390415&rnd=8405759791580122
+/pt/ably?clientId=production_au.provider%2F661724&rnd=6424939663290362
+/pt/ably?clientId=production_au.provider%2F661724&rnd=009626432328883494
+/okcomputer
+/ably?rnd=321947129897336
+/ably?clientId=production_au.client%2F2210734&rnd=7472350954190754
+/ably?clientId=production_au.client%2F3340259&rnd=07375958126824556
+/ably?clientId=production_au.client%2F3076442&rnd=8768959826261437
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=35896304472650975
+/ably?clientId=production_au.client%2F2359097&rnd=40267110782533644
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=03481965302834178
+/ably?rnd=3081197059508105
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=13213794669421675
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=687370538099066
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4014395336007144
+/ably?clientId=production_au.client%2F2689116&rnd=6452447305721003
+/home-exercise-video/plank
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6924861162906812
+/api/patient/kguoduha/video_calls/channel
+/api/patient/kguoduha/messages?birthYear=1965
+/api/patient/kguoduha/device_registration/ios
+/okcomputer
+/api/patient/kguoduha/messages?birthYear=1965
+/ably?clientId=production_au.client/2840521&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538325450.345492&access_code=kguoduha&format=msgpack
+/api/patient/kguoduha/program?birthYear=1965
+/api/patient/kguoduha/program?birthYear=1965
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=8254389711177708
+/api/patient/kguoduha/settings
+/api/patient/kguoduha/settings
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=9841099880153018
+/pt/ably?clientId=production_au.provider%2F193566&rnd=13426891665253726
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=28927139275844427
+/ably?clientId=production_au.client%2F2689116&rnd=9887177938467637
+/ably?clientId=production_au.client/2840521&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538325467.967700&access_code=kguoduha&format=msgpack
+/ably?rnd=9391373018909559
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=621389001008344
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5201952077101466
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=03643916341348885
+/ably?clientId=production_au.client%2F3352931&rnd=08426456073064825
+/ably?clientId=production_au.client%2F2689116&rnd=719544857586669
+/okcomputer
+/api/patient/kguoduha/exercises/370891260/complete
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4441340445194939
+/pt/ably?clientId=production_au.provider%2F2441006&rnd=6048345592155218
+/okcomputer
+/api/patient/kguoduha/exercises/370891261/complete
+/ably?clientId=production_au.client/2840521&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538325483.966423&access_code=kguoduha&format=msgpack
+/ably?clientId=production_au.client%2F3340259&rnd=23861934744474622
+/ably?clientId=production_au.client%2F2210734&rnd=19334141257793447
+/okcomputer
+/ably?capability=&clientId=production_au.client/2362801&access_code=oiykeoxx
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7127458825171735
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=4857206817703492
+/ably?clientId=production_au.client%2F2359097&rnd=9486041845422382
+/ably?rnd=942123958690769
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9253437399884941
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=1954883091898303
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=17859196075162664
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2689116&rnd=8178566372168008
+/okcomputer
+/api/patient/kguoduha/exercises/370891262/complete
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6149714019876915
+/ably?clientId=production_au.client%2F3076442&rnd=7659205188508992
+/okcomputer
+/api/patient/kguoduha/exercises/370891263/complete
+/okcomputer/all
+/ably?clientId=production_au.client%2F3352931&rnd=06698054833330658
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=5003091193140061
+/pt/ably?clientId=production_au.provider%2F193566&rnd=25802370166530997
+/pt/ably?clientId=production_au.provider%2F364355&rnd=49092885594139923
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=06961100479841553
+/ably?rnd=49009472180939495
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5501931408515393
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=32072583948966216
+/ably?clientId=production_au.client%2F2359097&rnd=9928928099941363
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7512779948780588
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=5243749350914304
+/api/patient/kguoduha/exercises/370891265/complete
+/pt/ably?clientId=production_au.provider%2F540919&rnd=349583231261263
+/okcomputer
+/ably?clientId=production_au.client%2F2821642&rnd=24009254204146002
+/pt/ably?clientId=production_au.provider%2F3413050&rnd=36249985461181766
+/ably?capability=&clientId=production_au.client/2847134&access_code=dbpkdcuf
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=4071694247348031
+/ably?clientId=production_au.client%2F2210734&rnd=6856828469690659
+/ably?clientId=production_au.client%2F3340259&rnd=9084948819240262
+/pt/ably?clientId=production_au.provider%2F193566&rnd=42632998124714394
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=2719969560056388
+/ably?clientId=production_au.client%2F2689116&rnd=646396524486883
+/home-exercise-video/plank
+/ably?rnd=1914735092942883
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8350682498417377
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=23325098020061819
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3586123284150391
+/ably?clientId=production_au.client%2F2359097&rnd=703485389651032
+/okcomputer
+/api/physiapp/intake/settings
+/ably?clientId=production_au.client%2F2689116&rnd=8593158549369257
+/login
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/users/sign_in
+/exercises
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/themes/0/categories.json
+/okcomputer
+/exercises.json?page=1
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9959405944947985
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=7135250091355736
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5287797179566498
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7080329816020561
+/ably?rnd=3293609440775629
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8402892320907347
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=936004439722786
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7106536105137715
+/ably?clientId=production_au.client%2F2359097&rnd=29362972859238145
+/ably?clientId=production_au.client%2F2689116&rnd=22377214678229662
+/okcomputer
+/ably?capability=&clientId=production_au.client/1523279&access_code=romfnyyz
+/pt/ably?clientId=production_au.provider%2F540919&rnd=013621169649440379
+/ably?capability=&clientId=production_au.client/1523279&access_code=romfnyyz
+/ably?clientId=production_au.client%2F3340259&rnd=5200420847245882
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=646439478248023
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8555046630722747
+/ably?clientId=production_au.client%2F2210734&rnd=8626019633854216
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=27835808395951145
+/home-exercise-video/plank
+/okcomputer
+/ably?rnd=5601411632063951
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=035454266897853914
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=08427160578636528
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5346179966868037
+/ably?clientId=production_au.client%2F2689116&rnd=7242807548951333
+/ably?clientId=production_au.client%2F3411073&rnd=902192884701907
+/ably?clientId=production_au.client%2F2359097&rnd=021450230575232654
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F1563&rnd=6632532928648498
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7305370931440598
+/okcomputer/all
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4572984492609471
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=9920625666397405
+/ably?clientId=production_au.client%2F3352931&rnd=5441753077044718
+/ably?clientId=production_au.client%2F2210734&rnd=7592762301578388
+/ably?clientId=production_au.client%2F2689116&rnd=076793720489722
+/okcomputer
+/ably?rnd=8100892935121444
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8919862287448637
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=06046404493752355
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=2585686964712697
+/ably?clientId=production_au.client%2F2689116&rnd=30768368267920065
+/ably?clientId=production_au.client%2F2359097&rnd=05827725417789331
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F1563&rnd=7753082500697074
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3115017225522705
+/pt/ably?clientId=production_au.provider%2F1266277&rnd=25964256170433964
+/ably?clientId=production_au.client%2F3340259&rnd=6769095700876994
+/okcomputer
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=892904494269892
+/ably?clientId=production_au.client%2F2210734&rnd=30776215416255015
+/ably?clientId=production_au.client%2F3352931&rnd=9180474849798677
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3076442&rnd=7709805702395046
+/ably?clientId=production_au.client%2F2689116&rnd=7816948883964379
+/okcomputer
+/ably?rnd=7156037280906606
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=13942343244053368
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5136577599220191
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=07400361974733727
+/ably?clientId=production_au.client%2F2689116&rnd=40311775218405876
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=4709349455711418
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6856727612540532
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/okcomputer
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8215645977590558
+/ably?rnd=4409909009773878
+/ably?clientId=production_au.client%2F2210734&rnd=36487276075313435
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=44649203959023875
+/ably?clientId=production_au.client%2F3076442&rnd=8216246017823864
+/ably?rnd=27964083941401774
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8255924732373914
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5172935775521541
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=669835967837636
+/ably?capability=&clientId=production_au.client/3396850&access_code=kjjdnzuv
+/ably?capability=&clientId=production_au.client/3396850&access_code=kjjdnzuv
+/ably?clientId=production_au.client%2F2689116&rnd=6680354558327339
+/okcomputer
+/ably?capability=&clientId=production_au.client/3396850&access_code=kjjdnzuv
+/ably?clientId=production_au.client%2F3352931&rnd=7230167888885379
+/ably?clientId=production_au.client%2F2359097&rnd=4531626175467771
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4748449648264539
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/okcomputer
+/ably?access_code=uakpvadi&clientId=production_au.client/3383587&capability=
+/ably?clientId=production_au.client%2F3340259&rnd=33274600600647863
+/okcomputer
+/ably?clientId=production_au.client%2F3395517&rnd=024448415325679207
+/ably?clientId=production_au.client%2F3395517&rnd=11993735561972718
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5286568550176896
+/ably?clientId=production_au.client%2F2741449&rnd=2649296137784616
+/home-exercise-video/plank
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/ably?clientId=production_au.client%2F2210734&rnd=946034059568533
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6506782928991299
+/ably?clientId=production_au.client%2F3416538&rnd=02202642622246298
+/ably?clientId=production_au.client%2F3416538&rnd=29541028194828955
+/ably?rnd=3886063952082601
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=31141161284484786
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=2543056272602402
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=788010064007193
+/ably?clientId=production_au.client%2F2689116&rnd=3963312102476313
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2359097&rnd=1623631811587356
+/pt/ably?clientId=production_au.provider%2F540919&rnd=19055311551852605
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=42676724704715585
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6547113605233166
+/ably?access_code=inxqqbxb&clientId=production_au.client/3393759&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=1920743465735113
+/ably?clientId=production_au.client%2F2689116&rnd=9679401760845365
+/ably?rnd=7919405155003858
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=03539932659652667
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7060773222561523
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8680854019242801
+/ably?access_code=srqtytmv&clientId=production_au.client/3415345&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=7571247825357081
+/okcomputer
+/
+/login
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9694834056748953
+/ably?clientId=production_au.client%2F2359097&rnd=3985742455596797
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=3083444479056239
+/ably?clientId=production_au.client%2F2531726&rnd=2362841062317813
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4375104403518435
+/api/patient/jxezwiki/video_calls/channel
+/home-exercise-video/plank
+/api/patient/jxezwiki/device_registration/ios
+/ably?clientId=production_au.client/2973660&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538325801.768343&access_code=jxezwiki&format=msgpack
+/okcomputer
+/api/patient/jxezwiki/program
+/api/patient/jxezwiki/settings
+/ably?clientId=production_au.client%2F3352931&rnd=40761582485774217
+/ably?clientId=production_au.client%2F2689116&rnd=15451226294780152
+/ably?clientId=production_au.client%2F2210734&rnd=06443674259858456
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=939024832316113
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=42100213259272357
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7764046537395743
+/ably?rnd=29433346740649124
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6135571269917091
+/ably?clientId=production_au.client%2F3076442&rnd=3347548442333791
+/robots.txt
+/okcomputer/all
+/ably?clientId=production_au.client%2F2788682&rnd=448767467907333
+/home-exercise-video/tmj-isometric-retrusion-%2528retraction%2529
+/okcomputer
+/ably?clientId=production_au.client/2973660&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538325818.227105&access_code=jxezwiki&format=msgpack
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6580591378183775
+/ably?clientId=production_au.client%2F2359097&rnd=9145177065394865
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8616545106604372
+/okcomputer
+/ably?clientId=production_au.client/2973660&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538325834.232938&access_code=jxezwiki&format=msgpack
+/ably?clientId=production_au.client%2F2689116&rnd=5973406331765005
+/ably?clientId=production_au.client%2F2210734&rnd=18168107494851826
+/okcomputer
+/ably?rnd=7904253270800534
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=39547473132615907
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5912474989946721
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8842828585441544
+/ably?clientId=production_au.client%2F2689116&rnd=6756747843282
+/okcomputer
+/ably?capability=&clientId=production_au.client/2925116&access_code=ugzjsqzm
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4184820348373497
+/ably?clientId=production_au.client%2F3352931&rnd=064745978411751
+/ably?clientId=production_au.client%2F3076442&rnd=04345915375412823
+/ably?clientId=production_au.client%2F2359097&rnd=13568853162741368
+/ably?clientId=production_au.client%2F3340259&rnd=7257632209928147
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=029841620694843973
+/ably?access_code=npucmocp&clientId=production_au.client/3172671&capability=
+/home-exercise-video/plank
+/okcomputer
+/ably?rnd=2746479624972533
+/ably?clientId=production_au.client%2F2689116&rnd=28206001123694957
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=45245744733470117
+/ably?rnd=11032657377574684
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9058849590704967
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=48353576585004276
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7677245351862076
+/ably?clientId=production_au.client%2F2689116&rnd=9821894386294796
+/
+/login
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/okcomputer/all
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/okcomputer
+/ably?clientId=production_au.client%2F2788682&rnd=4121027332774979
+/pt/ably?clientId=production_au.provider%2F336073&rnd=9456097029724679
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8325460028023728
+/ably?access_code=ktwzjqkn&clientId=production_au.client/2530873&capability=
+/ably?clientId=production_au.client%2F2359097&rnd=9327121692302123
+/ably?clientId=production_au.client%2F3076442&rnd=5710117848873945
+/okcomputer
+/ably?capability=&clientId=production_au.client/3401227&access_code=xsyghvis
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4141752395469003
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=11217074993023113
+/ably?clientId=production_au.client%2F2689116&rnd=7794088678336828
+/okcomputer
+/ably?rnd=5127656075029627
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4081161747014346
+/ably?clientId=production_au.client%2F2210734&rnd=381365294014798
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5077261161712696
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=0568153524083268
+/ably?clientId=production_au.client%2F2689116&rnd=13067438293820666
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F336073&rnd=20442804215003207
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9037849337358106
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=8205024979613726
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F193566&rnd=12149271272507578
+/ably?clientId=production_au.client%2F3340259&rnd=5781849998993479
+/okcomputer
+/ably?access_code=owqzecij&clientId=production_au.client/1375866&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=8097315627532977
+/ably?clientId=production_au.client%2F3076442&rnd=776790877455363
+/ably?rnd=9305379943142313
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4931118748637098
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7033669305080481
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=10965120127415706
+/okcomputer/all
+/ably?clientId=production_au.client%2F2689116&rnd=030649912697812365
+/ably?clientId=production_au.client%2F2210734&rnd=4398525597235299
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6883387141899451
+/ably?capability=&clientId=production_au.client/2844859&access_code=jtmqxrps
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=6385521735387509
+/ably?access_code=owqzecij&clientId=production_au.client/1375866&capability=
+/ably?clientId=production_au.client%2F2788682&rnd=31653329895170945
+/ably?capability=&clientId=production_au.client/2857936&access_code=niafqbmo
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7440897199751757
+/ably?clientId=production_au.client%2F3352931&rnd=461236291233561
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=8564067261183044
+/ably?rnd=5540082607985959
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=12090450690709398
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=672862412942014
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2273981288400322
+/ably?clientId=production_au.client%2F2689116&rnd=8264874138885925
+/ably?clientId=production_au.client%2F2210734&rnd=4651544952253781
+/
+/login
+/servers
+/okcomputer
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/ably?access_code=bnuimedh&clientId=production_au.client/2621338&capability=
+/pt/ably?clientId=production_au.provider%2F540919&rnd=19448555524409317
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=12589999512914107
+/home-exercise-video/plank
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9560621013447845
+/ably?clientId=production_au.client%2F3340259&rnd=6736797956767021
+/ably?access_code=zdhyxegz&clientId=production_au.client/3383704&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=24035106205911205
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5523295543029745
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5912997831365017
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=16941768504704102
+/ably?rnd=7701353860185869
+/ably?clientId=production_au.client%2F2689116&rnd=21404582329139643
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=8559518089198426
+/ably?clientId=production_au.client%2F2788682&rnd=48761894996893784
+/ably?clientId=production_au.client%2F3352931&rnd=18902398166665968
+/pt/ably?clientId=production_au.provider%2F540919&rnd=2497812204863512
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=8498903840999146
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=565000877608915
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=2975897872475579
+/ably?rnd=3946903123158261
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=1863197358479176
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9093995552793697
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8810142692226075
+/ably?clientId=production_au.client%2F2689116&rnd=829544966046702
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=5425720558180229
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=45829672798508514
+/ably?clientId=production_au.client%2F2788682&rnd=40008026856829104
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=4967881062061348
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5342480191728349
+/ably?clientId=production_au.client%2F3352931&rnd=2563198184052582
+/ably?clientId=production_au.client%2F3340259&rnd=23177958921042252
+/okcomputer
+/webpack/pt-bundle-122ca5e1593a9091bbb1.js
+/okcomputer/all
+/webpack/pt-bundle-122ca5e1593a9091bbb1.css
+/ably?clientId=production_au.client%2F2689116&rnd=8304015209846571
+/ably?rnd=03757558651270965
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=05158683166437261
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=01464486190971126
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=030387490662127314
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=39928851574572066
+/ably?clientId=production_au.client%2F2210734&rnd=04175577853669821
+/okcomputer
+/assets/pt/application-9b2a32137903d94d447c3361c2913826208d437912461b2320d0468d14380861.js
+/pt/ably?clientId=production_au.provider%2F540919&rnd=04618063033337716
+/webpack/vendor-bundle-4b6d2b03180e6dc583d0.js
+/ably?capability=&clientId=production_au.client/3401227&access_code=xsyghvis
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=34770021486355773
+/ably?rnd=34870260771749284
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3359399845868398
+/ably?access_code=kbdaqedf&clientId=production_au.client/3254210&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=1724674301653546
+/okcomputer
+/ably?rnd=893720239059248
+/ably?clientId=production_au.client%2F2689116&rnd=9237139733657289
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=16073711889454811
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=16867851715294413
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7058095274795946
+/ably?clientId=production_au.client%2F2210734&rnd=9579760383545257
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9254154439429394
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=4013375626775062
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4695956039563882
+/ably?clientId=production_au.client%2F3340259&rnd=11215760664364871
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2689116&rnd=8405073278025244
+/okcomputer
+/ably?rnd=38989585891651735
+/ably?clientId=production_au.client%2F2689116&rnd=46391414906110584
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=12684288448742742
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=45651262435057327
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3166469535910108
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=07882520579373709
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8470345791547627
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=41875739478333296
+/ably?capability=&clientId=production_au.client/3399023&access_code=wxpfyuvs
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9906651773927988
+/ably?clientId=production_au.client%2F2359097&rnd=3768530118138298
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=9166841799903493
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=1386143364959722
+/ably?rnd=9157926332919344
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9072728758420701
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9106088065776614
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=37774802178508504
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=8602953845783101
+/pt/ably?clientId=production_au.provider%2F540919&rnd=40598119672717137
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=02400680335144545
+/login
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/ably?rnd=8962883757098166
+/users/sign_in
+/exercises
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/pt/ably?clientId=production_au.provider%2F193566&rnd=14563302675016265
+/themes/0/categories.json
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=4864153693051896
+/okcomputer/all
+/exercises.json?page=1
+/ably?clientId=production_au.client%2F3352931&rnd=08870517921231946
+/ably?capability=&clientId=production_au.client/3417095&access_code=opozhukh
+/ably?clientId=production_au.client%2F2689116&rnd=4729479443151692
+/okcomputer
+/ably?rnd=3836996396764578
+/ably?clientId=production_au.client%2F2689116&rnd=1783995024241669
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=16335050398123374
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3574116917121992
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8123742003317256
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7970464887460837
+/ably?clientId=production_au.client%2F2210734&rnd=305102882710363
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=20546973647969047
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=3395081899339336
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=9651174149953452
+/ably?clientId=production_au.client%2F2689116&rnd=4000559603218887
+/ably?rnd=03689437255590633
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3134186839070361
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6701671801695184
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7018877164246116
+/ably?capability=&clientId=production_au.client/2793272&access_code=jdvbhgnd
+/okcomputer
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F540919&rnd=03930231378203253
+/ably?clientId=production_au.client%2F3352931&rnd=5282964563687338
+/ably?clientId=production_au.client%2F2210734&rnd=7147775399003828
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=15962600621028256
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=12984162001717148
+/program?redirected=
+/sign_in
+/apple-touch-icon-precomposed.png
+/apple-touch-icon.png
+/okcomputer/all
+/program?redirected=
+/sign_in
+/ably?clientId=production_au.client%2F2359097&rnd=9973911492043268
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=4621591537434895
+/ably?rnd=6799076782321265
+/ably?clientId=production_au.client%2F2689116&rnd=11767912415669635
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9446350232541241
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=49671144585006366
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7494598656984115
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=15543567550337367
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=30493976528657485
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=21116750750703428
+/ably?clientId=production_au.client%2F2359097&rnd=5421722886238631
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=9122562942562011
+/ably?clientId=production_au.client%2F2689116&rnd=6025380942000527
+/ably?rnd=46991109425898636
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7408849613376878
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=24662088787106562
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4506551152436564
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F5533&rnd=51693313026552
+/home-exercise-video/plank
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4754421830553923
+/ably?clientId=production_au.client%2F3340259&rnd=3071027604802319
+/ably?capability=&client_id=production_au.client/2066399&access_code=ffguuors
+/ably?clientId=production_au.client%2F2210734&rnd=8589408100839573
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=499056655367079
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F138244&rnd=6786244358454379
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=9486326088212129
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=3349776423298412
+/ably?access_code=ufamviba&clientId=production_au.client/2963883&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=43282602119856217
+/ably?rnd=5390472706299165
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7704594849608897
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8919563072750265
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6725980766420265
+/ably?clientId=production_au.client%2F3352931&rnd=23870251444728052
+/okcomputer
+/ably?access_code=ufamviba&clientId=production_au.client/2963883&capability=
+/pt/ably?clientId=production_au.provider%2F540919&rnd=712726295636267
+/ably?clientId=production_au.client%2F2210734&rnd=6653509884188993
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6275900169488973
+/ably?access_code=rbaqbbfz&clientId=production_au.client/2858296&capability=
+/ably?access_code=rbaqbbfz&clientId=production_au.client/2858296&capability=
+/ably?access_code=rbaqbbfz&clientId=production_au.client/2858296&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=626011403657585
+/ably?clientId=production_au.client%2F2689116&rnd=40859973387992854
+/ably?clientId=production_au.client%2F2689116&rnd=4560574467662417
+/okcomputer
+/ably?rnd=6945631655239675
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=470172873554336
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9904918152658115
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6894417213895343
+/home-exercise-video/plank
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3659743502824362
+/ably?clientId=production_au.client%2F3340259&rnd=04939270740172108
+/ably?clientId=production_au.client%2F2210734&rnd=5505001254357618
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F3352931&rnd=6146317814918629
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8001919754591196
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=08834058320241311
+/ably?clientId=production_au.client%2F2359097&rnd=5722652532093928
+/ably?clientId=production_au.client%2F2689116&rnd=7883570522046588
+/okcomputer
+/ably?rnd=49587431375167057
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4696145780893106
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6808605036634805
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=45050002130625355
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5981517201218898
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=6040637684099259
+/.well-known/apple-app-site-association
+/pt/ably?clientId=production_au.provider%2F193566&rnd=2820018110302842
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=4397180951094155
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=3811629924985518
+/ably?clientId=production_au.client%2F2359097&rnd=25084356545407904
+/ably?rnd=7293865762069671
+/ably?clientId=production_au.client%2F2378281&rnd=8106467300388145
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=1302091310572573
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7145888496581703
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=49590985036866964
+/ably?clientId=production_au.client%2F3352931&rnd=31727302664832613
+/home-exercise-video/plank
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=2218725685366354
+/ably?clientId=production_au.client%2F3340259&rnd=3539453471489131
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=2162212847286582
+/pt/ably?clientId=production_au.provider%2F193566&rnd=40423809423477675
+/ably?access_code=oteuienk&clientId=production_au.client/3344713&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=3995691615209669
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=601249219453676
+/ably?clientId=production_au.client%2F2359097&rnd=2829509343874268
+/ably?rnd=9058675703367278
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=13110744005668318
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=12898232438783386
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2501685867147083
+/ably?clientId=production_au.client%2F2378281&rnd=9440481411751642
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/okcomputer
+/ably?access_code=ecvwjhwt&clientId=production_au.client/1413979&capability=
+/ably?access_code=ecvwjhwt&clientId=production_au.client/1413979&capability=
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3082522377750665
+/okcomputer
+/ably?rnd=9204711157879375
+/ably?clientId=production_au.client%2F2210734&rnd=6069120160596735
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5534337058770105
+/okcomputer
+/ably?capability=&clientId=production_au.client/3265618&access_code=xdxvqsvf
+/ably?clientId=production_au.client%2F2689116&rnd=838697659392136
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6107721194357643
+/ably?rnd=3402230932427348
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6159986271741176
+/ably?clientId=production_au.client%2F2359097&rnd=12236428286558265
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5045522632045254
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=2745002471576987
+/ably?clientId=production_au.client%2F2378281&rnd=430227502008907
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=9426690299579378
+/pt/ably?clientId=production_au.provider%2F540919&rnd=05983479492770205
+/okcomputer
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9009589250587686
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=8198789853778647
+/ably?clientId=production_au.client%2F3352931&rnd=35190756284041735
+/ably?capability=&clientId=production_au.client/3401227&access_code=xsyghvis
+/ably?clientId=production_au.client%2F2689116&rnd=9745499538633824
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=982951996243284
+/ably?rnd=9602339884402911
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3781273674299821
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=06865861482513003
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8950925879739995
+/ably?clientId=production_au.client%2F2378281&rnd=35622082909140995
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=37518668412405387
+/pt/ably?clientId=production_au.provider%2F540919&rnd=31791693708813895
+/okcomputer
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7575318257645163
+/ably?clientId=production_au.client%2F2210734&rnd=042462326726538935
+/ably?clientId=production_au.client%2F3352931&rnd=23683049925019173
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=26576830863228174
+/ably?clientId=production_au.client%2F2689116&rnd=8219367925041519
+/home-exercise-video/plank
+/ably?rnd=6698683570437691
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3705017676960405
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3909703860058189
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=34718027892595105
+/okcomputer
+/ably?clientId=production_au.client%2F2378281&rnd=023665619949900796
+/ably?clientId=production_au.client%2F3340259&rnd=23120573454090876
+/ably?clientId=production_au.client%2F2359097&rnd=23949967634892744
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6469283856922465
+/okcomputer/all
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8492103810374849
+/ably?clientId=production_au.client%2F2210734&rnd=44373669967401264
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=201825398765618
+/api/patient/hrfckpjy/video_calls/channel
+/api/patient/hrfckpjy/messages?birthYear=1992
+/api/patient/hrfckpjy/messages?birthYear=1992
+/api/patient/hrfckpjy/device_registration/ios
+/ably?clientId=production_au.client%2F2689116&rnd=8905897241966076
+/okcomputer
+/ably?rnd=1365626978879695
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7085215285349604
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=47396051796997507
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=35423199885551915
+/ably?access_code=ufamviba&clientId=production_au.client/2963883&capability=
+/ably?clientId=production_au.client%2F2378281&rnd=40293404005231914
+/ably?clientId=production_au.client%2F2359097&rnd=8522579338437413
+/ably?clientId=production_au.client%2F3352931&rnd=8907204880027726
+/api/patient/hrfckpjy/program?birthYear=1992
+/api/patient/hrfckpjy/program?birthYear=1992
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=10038503481191685
+/ably?capability=&clientId=production_au.client/2925116&access_code=ugzjsqzm
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=015478053990934937
+/ably?clientId=production_au.client%2F2210734&rnd=5796782577682913
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=4761223263408366
+/ably?clientId=production_au.client%2F2689116&rnd=9723627604104941
+/ably?clientId=production_au.client%2F2689116&rnd=6551680747638944
+/home-exercise-video/plank
+/okcomputer
+/ably?rnd=6125006871014853
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=942712095030706
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=24952542105878184
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4950159200072628
+/ably?access_code=rbaqbbfz&clientId=production_au.client/2858296&capability=
+/ably?clientId=production_au.client%2F2378281&rnd=45265541026378653
+/ably?clientId=production_au.client%2F2359097&rnd=5195045253166277
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=1626654477120577
+/okcomputer/all
+/ably?capability=&clientId=production_au.client/2820288&access_code=cxyyvhty
+/ably?capability=&clientId=production_au.client/2820288&access_code=cxyyvhty
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3045730455839488
+/ably?clientId=production_au.client%2F3352931&rnd=31523223880893814
+/ably?access_code=oteuienk&clientId=production_au.client/3344713&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=05154965899708652
+/ably?clientId=production_au.client%2F2689116&rnd=20646803866734964
+/ably?clientId=production_au.client%2F2689116&rnd=2690579267322386
+/okcomputer
+/ably?rnd=11553974089276275
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5887626843576248
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9758289105093729
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=18831566473100825
+/ably?clientId=production_au.client%2F3396068&rnd=06660903142601438
+/ably?clientId=production_au.client%2F2378281&rnd=27620813704797476
+/ably?clientId=production_au.client%2F2788682&rnd=12788540587662067
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=9367929064550016
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6800131481668696
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=27214491175158506
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=4151925056677106
+/ably?clientId=production_au.client%2F3340259&rnd=24415535439664204
+/ably?clientId=production_au.client%2F2210734&rnd=5930873297426831
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2689116&rnd=897926479821642
+/okcomputer
+/ably?rnd=4953261597902392
+/ably?access_code=iudhcxav&clientId=production_au.client/2868206&capability=
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=23500600394294713
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5488230678307806
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5096040862796649
+/ably?clientId=production_au.client%2F3352931&rnd=3027547763138252
+/ably?clientId=production_au.client%2F2378281&rnd=20233930880520612
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=7519310680672302
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6511675275554514
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/okcomputer
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9531786425070803
+/okcomputer
+/ably?clientId=production_au.client%2F2788682&rnd=1957031807276548
+/ably?clientId=production_au.client%2F2689116&rnd=45235809513682024
+/ably?clientId=production_au.client%2F2210734&rnd=6291134626997859
+/ably?clientId=production_au.client%2F2689116&rnd=301318128648572
+/okcomputer
+/ably?rnd=6607992314185822
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5672680536086248
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2764173606145639
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5274274671851951
+/okcomputer
+/ably?clientId=production_au.client%2F2378281&rnd=41491322511487705
+/ably?clientId=production_au.client%2F2359097&rnd=35091348619270213
+/pt/ably?clientId=production_au.provider%2F540919&rnd=07646499883893743
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=9614015790312649
+/ably?access_code=gcxwrzka&clientId=production_au.client/3416106&capability=
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6436057352095015
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=9877331539403835
+/ably?clientId=production_au.client%2F2689116&rnd=5078822937789738
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2210734&rnd=49773294128231926
+/ably?clientId=production_au.client%2F2689116&rnd=8155697833630846
+/okcomputer
+/ably?rnd=8592302291099034
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=01477953201190818
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=20610482671921715
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=025428814378677167
+/ably?clientId=production_au.client%2F2788682&rnd=6669521006731524
+/okcomputer
+/ably?clientId=production_au.client%2F2378281&rnd=8474291103930469
+/okcomputer/all
+/ably?clientId=production_au.client%2F2359097&rnd=5696164587678052
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9957889695092859
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8181314665433634
+/okcomputer
+/ably?capability=&clientId=production_au.client/2064122&access_code=rvuneoop
+/ably?clientId=production_au.client%2F2689116&rnd=2495286104144967
+/ably?clientId=production_au.client%2F3352931&rnd=2812333562885736
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=19975250030434832
+/ably?clientId=production_au.client%2F2210734&rnd=35329169136734895
+/ably?rnd=05919672468883763
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=950650906825244
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5159946232378496
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7871858829511851
+/okcomputer
+/ably?clientId=production_au.client%2F2378281&rnd=9110543079707512
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8472800374457967
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=4088933072006984
+/ably?clientId=production_au.client%2F2788682&rnd=7159481700230296
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=42374804653730047
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3340259&rnd=5278854026247544
+/ably?clientId=production_au.client%2F2689116&rnd=6111189268623629
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=20424214041811828
+/login
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/ably?clientId=production_au.client%2F2210734&rnd=14937182822171535
+/users/sign_in
+/exercises
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/themes/0/categories.json
+/ably?rnd=6876452581662964
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6267619641130155
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4106982797037615
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6952199402024457
+/okcomputer
+/exercises.json?page=1
+/okcomputer/all
+/ably?clientId=production_au.client%2F2378281&rnd=02952028285467856
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5502627573797598
+/ably?clientId=production_au.client%2F2359097&rnd=5162958759765346
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=03001254049406965
+/ably?clientId=production_au.client%2F2788682&rnd=7908440269373296
+/ably?rnd=5247035623134835
+/ably?clientId=production_au.client%2F2689116&rnd=6551654686296076
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=21335281970868514
+/ably?clientId=production_au.client%2F2210734&rnd=5686236175943697
+/ably?capability=&client_id=production_au.client/1059283&access_code=iendwp
+/okcomputer
+/ably?rnd=33240943379864873
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=35242288465206273
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9735048331743745
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4325160346106631
+/ably?capability=&clientId=production_au.client/2589325&access_code=ajyghdbx
+/pt/ably?clientId=production_au.provider%2F1777249&rnd=17277488020375986
+/ably?clientId=production_au.client%2F2378281&rnd=23967729705047702
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7436269264451549
+/ably?clientId=production_au.client%2F2359097&rnd=7552125548123589
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4926303821461173
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3352931&rnd=5070308660046727
+/ably?clientId=production_au.client%2F3340259&rnd=5656490758861695
+/ably?clientId=production_au.client%2F2689116&rnd=7071276461030649
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=3100758557324388
+/ably?clientId=production_au.client%2F2210734&rnd=7604052457304185
+/okcomputer
+/ably?rnd=5677369731993844
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=48593478887065356
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=1915109679056357
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=19463409760553252
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F2378281&rnd=31517504759554593
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8750443241456916
+/ably?clientId=production_au.client%2F2788682&rnd=5942438242664007
+/ably?clientId=production_au.client%2F2359097&rnd=44155765034788374
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6371471665338149
+/okcomputer
+/ably?capability=&clientId=production_au.client/2793272&access_code=jdvbhgnd
+/ably?clientId=production_au.client%2F2689116&rnd=2113458101271677
+/ably?clientId=production_au.client%2F2689116&rnd=6040890789022813
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=3189726329042091
+/ably?rnd=3673339759484393
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6864061846245195
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9898790291355053
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=522509492134428
+/ably?capability=&clientId=production_au.client/3385868&access_code=uhvfoqsn
+/ably?clientId=production_au.client%2F2952572&rnd=1230960478594596
+/ably?clientId=production_au.client%2F3352931&rnd=6486784687101486
+/okcomputer
+/ably?clientId=production_au.client%2F2378281&rnd=5546900192850059
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8947035381890502
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=5345878188750224
+/pt/ably?clientId=production_au.provider%2F193566&rnd=010872153841029908
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=20465050716928324
+/ably?clientId=production_au.client%2F2788682&rnd=34607682671804674
+/ably?clientId=production_au.client%2F2689116&rnd=18238993902465017
+/.well-known/apple-app-site-association
+/ably?clientId=production_au.client%2F2689116&rnd=4004107620562187
+/ably?capability=&clientId=production_au.client/3400764&access_code=vvctmjru
+/okcomputer
+/ably?rnd=8255017945779761
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=6654931838468203
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=06803551491866844
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=26714160843071033
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=42582242803080894
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=1729737236260307
+/ably?clientId=production_au.client%2F2378281&rnd=7803885095378797
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8742461041498457
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=8620497493515666
+/pt/ably?clientId=production_au.provider%2F193566&rnd=08140611364384265
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=829698546858344
+/ably?clientId=production_au.client%2F2689116&rnd=9749590842631006
+/okcomputer
+/ably?rnd=3949525131713727
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=33318077966002235
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=12742797084199142
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6149965388990071
+/ably?clientId=production_au.client%2F2788682&rnd=25384483656372636
+/ably?clientId=production_au.client%2F2210734&rnd=38465246708334133
+/okcomputer
+/ably?clientId=production_au.client%2F2378281&rnd=36296694035939714
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3406374930083651
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2359097&rnd=9370006588946258
+/pt/ably?clientId=production_au.provider%2F193566&rnd=943074213978627
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=22708957920788442
+/ably?clientId=production_au.client%2F3340259&rnd=3752893439427717
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=5980144804721361
+/okcomputer/all
+/ably?rnd=7717018977203745
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6741437176081571
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8686492661723837
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3993964228139526
+/ably?clientId=production_au.client%2F2210734&rnd=03483026484543639
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4432894119261559
+/ably?clientId=production_au.client%2F2378281&rnd=890905836350868
+/okcomputer
+/ably?clientId=production_au.client%2F2788682&rnd=5704954053681836
+/ably?rnd=08488613312322402
+/ably?clientId=production_au.client%2F2359097&rnd=6711600041706489
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=19476730041446633
+/pt/ably?clientId=production_au.provider%2F1222721&rnd=14352580694427985
+/ably?capability=&clientId=production_au.client/3172519&access_code=mwwmhznf
+/ably?clientId=production_au.client%2F2689116&rnd=6019608138487575
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=2608134030728919
+/ably?rnd=33086120584143
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6908364061472867
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9670295776397033
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5435733372498226
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=9523307607103171
+/ably?clientId=production_au.client%2F2210734&rnd=8172466935469533
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8727978863039674
+/ably?clientId=production_au.client%2F2378281&rnd=9466439918409875
+/home-exercise-video/plank
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5359196901411998
+/ably?clientId=production_au.client%2F2359097&rnd=9075809631484046
+/ably?clientId=production_au.client%2F2689116&rnd=34725642743162255
+/ably?clientId=production_au.client%2F3340259&rnd=047688822986635016
+/ably?clientId=production_au.client%2F2788682&rnd=026631119613952592
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=509434542170631
+/okcomputer/all
+/ably?rnd=40964971177243537
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=36564379527931545
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=45776699943982835
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9564359214043372
+/okcomputer
+/ably?capability=&clientId=production_au.client/2857936&access_code=niafqbmo
+/ably?clientId=production_au.client%2F2210734&rnd=40959526494494014
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5737817661297071
+/ably?clientId=production_au.client%2F2378281&rnd=7971300186442558
+/ably?clientId=production_au.client%2F3352931&rnd=43135538411846586
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5968916095408432
+/ably?clientId=production_au.client%2F2359097&rnd=9319411128794304
+/ably?clientId=production_au.client%2F2689116&rnd=23591011908142656
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6910516693874356
+/okcomputer
+/ably?rnd=3059065059098909
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6420793710537487
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4952853693886399
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5124455840628415
+/ably?clientId=production_au.client%2F2788682&rnd=7599685760816834
+/ably?clientId=production_au.client%2F2210734&rnd=24202946180121265
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5817838139178131
+/ably?clientId=production_au.client%2F2378281&rnd=5585107727123908
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3340259&rnd=510648329602668
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=027253147685883494
+/ably?access_code=geyhnjhh&clientId=production_au.client/3385888&capability=
+/ably?access_code=geyhnjhh&clientId=production_au.client/3385888&capability=
+/ably?access_code=geyhnjhh&clientId=production_au.client/3385888&capability=
+/ably?access_code=geyhnjhh&clientId=production_au.client/3385888&capability=
+/ably?access_code=geyhnjhh&clientId=production_au.client/3385888&capability=
+/ably?access_code=geyhnjhh&clientId=production_au.client/3385888&capability=
+/ably?access_code=geyhnjhh&clientId=production_au.client/3385888&capability=
+/ably?access_code=geyhnjhh&clientId=production_au.client/3385888&capability=
+/ably?clientId=production_au.client%2F2359097&rnd=9458635443967351
+/ably?clientId=production_au.client%2F2689116&rnd=26133336225193937
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=47426843833845034
+/okcomputer/all
+/ably?clientId=production_au.client%2F3399110&rnd=8782337068790611
+/ably?clientId=production_au.client%2F2689116&rnd=6148796607358951
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=45788051581117695
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7756057531956961
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8538975177772754
+/ably?rnd=5855192171409227
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=7808448163317521
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7648186975448887
+/ably?clientId=production_au.client%2F2378281&rnd=13416321749964832
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=1920565694935068
+/ably?clientId=production_au.client%2F2689116&rnd=2712625612955788
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=2309091675653785
+/ably?clientId=production_au.client%2F2689116&rnd=8334687181153617
+/okcomputer
+/ably?access_code=oteuienk&clientId=production_au.client/3344713&capability=
+/ably?access_code=oteuienk&clientId=production_au.client/3344713&capability=
+/ably?rnd=8041111812451989
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6733470708105114
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2657582528310696
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=09564719984934977
+/ably?clientId=production_au.client%2F2788682&rnd=6952677854257286
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=7177316190069238
+/pt/ably?clientId=production_au.provider%2F540919&rnd=14008510584116385
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2378281&rnd=27706787362058294
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=2825071963658915
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6438818585885806
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=3635192729886336
+/ably?clientId=production_au.client%2F2359097&rnd=8018863264671638
+/okcomputer/all
+/ably?clientId=production_au.client%2F2689116&rnd=8436377797092567
+/okcomputer
+/ably?rnd=9215014987593402
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=19850052387309947
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9605149087251728
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8778743622842078
+/webpack/common-bundle-4ae081dd1393f0a832a8.js
+/webpack/pt-bundle-36ad8ad934e1d2ddfc00.js
+/okcomputer
+/webpack/vendor-bundle-21be6081e3c84f377c79.js
+/ably?clientId=production_au.client%2F2210734&rnd=8023939882001361
+/pt/ably?clientId=production_au.provider%2F540919&rnd=34304643340301255
+/ably?clientId=production_au.client%2F2378281&rnd=1181440306471584
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=38855051286803244
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=11271320251396433
+/ably?clientId=production_au.client%2F2689116&rnd=3500759307548895
+/ably?clientId=production_au.client%2F3352931&rnd=842059049807079
+/ably?clientId=production_au.client%2F2788682&rnd=4487300125058391
+/ably?clientId=production_au.client%2F2359097&rnd=15563685967562102
+/ably?clientId=production_au.client%2F2689116&rnd=08053697297520168
+/okcomputer
+/ably?rnd=42984228760062004
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=31252503124642894
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4535708306558741
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5808361183908721
+/ably?clientId=production_au.client%2F1827671&rnd=7254367050086907
+/okcomputer
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F540919&rnd=15923631967184582
+/ably?clientId=production_au.client%2F2210734&rnd=1480198885300683
+/ably?clientId=production_au.client%2F2378281&rnd=8282623310748496
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=9247921074291645
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7751264318701634
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=6339603362252787
+/ably?clientId=production_au.client%2F2689116&rnd=7067817695421563
+/okcomputer/all
+/ably?clientId=production_au.client%2F2359097&rnd=4013161060616508
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=4090175812058119
+/ably?clientId=production_au.client%2F3352931&rnd=9161525164371154
+/ably?rnd=6810089183080157
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=24151067645961688
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4452808050958126
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=34133254759595033
+/okcomputer
+/program/2018-09-30
+/sign_in
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8649851141734368
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=9985146580392656
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3879861825983819
+/sign_in
+/ably?clientId=production_au.client%2F3293671&rnd=9622324362972826
+/
+/ably?clientId=production_au.client%2F3076442&rnd=48790115007769763
+/program?redirected=
+/ably?clientId=production_au.client%2F2689116&rnd=6631342403339038
+/ably?rnd=7853436390572703
+/ably?clientId=production_au.client%2F2788682&rnd=7233569622421374
+/program/2018-09-30
+/ably?rnd=8818593015786889
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=9690945095090642
+/ably?clientId=production_au.client%2F2689116&rnd=3346658949031813
+/exercises/272257752
+/ably?rnd=32574657971073684
+/ably?rnd=1532780650986576
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5093320326815729
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=46692445560952467
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4614228272109073
+/okcomputer
+/exercises/272257752/feedback
+/home-exercise-video/plank
+/exercises/272257752/next
+/exercises/276689070
+/ably?rnd=7936809124922328
+/okcomputer
+/ably?clientId=production_au.client%2F3390926&rnd=760179649029975
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8331039104211053
+/ably?clientId=production_au.client%2F2210734&rnd=25150616187992636
+/ably?clientId=production_au.client%2F3352931&rnd=6521032369431654
+/ably?clientId=production_au.client%2F3340259&rnd=5198736345120748
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=07777363465276843
+/okcomputer/all
+/ably?access_code=pujnzfjw&clientId=production_au.client/3384471&capability=
+/exercises/276689070/feedback
+/ably?clientId=production_au.client%2F2689116&rnd=48341537890782393
+/exercises/276689070/next
+/okcomputer
+/exercises/288024682
+/ably?rnd=701349265709275
+/ably?clientId=production_au.client%2F2689116&rnd=474794902149013
+/ably?clientId=production_au.client%2F2359097&rnd=05895242696197944
+/ably?capability=&clientId=production_au.client/3265618&access_code=xdxvqsvf
+/ably?capability=&clientId=production_au.client/3265618&access_code=xdxvqsvf
+/ably?capability=&clientId=production_au.client/3265618&access_code=xdxvqsvf
+/ably?clientId=production_au.client%2F3076442&rnd=00812049907217871
+/exercises/288024682/feedback
+/ably?rnd=851431654773827
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5708767142701665
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=47222742893686465
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7259391873848557
+/ably?clientId=production_au.client%2F2788682&rnd=44955953290634465
+/exercises/288024682/next
+/exercises/288025082
+/ably?rnd=39839109366628156
+/okcomputer
+/exercises/288025082/feedback
+/pt/ably?clientId=production_au.provider%2F540919&rnd=36033643929310477
+/ably?rnd=2017040850564802
+/ably?clientId=production_au.client%2F2210734&rnd=33811890032360825
+/okcomputer
+/exercises/288025082/next
+/exercises/288025492
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7125493128302196
+/ably?rnd=08703982060546522
+/exercises/288025492/feedback
+/ably?clientId=production_au.client%2F2689116&rnd=25965935755249037
+/okcomputer
+/exercises/288025492/next
+/exercises/304862994
+/ably?clientId=production_au.client%2F2689116&rnd=09911514061375337
+/ably?rnd=6700075097172973
+/ably?clientId=production_au.client%2F2359097&rnd=13307608604572985
+/program/2018-09-30
+/ably?rnd=5068063521390345
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9683847201094515
+/ably?rnd=11869444267937723
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=03020446595151549
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=29941351576980013
+/ably?clientId=production_au.client%2F3076442&rnd=9975889627627176
+/exercises/372509870
+/ably?rnd=48265671019352685
+/home-exercise-video/plank
+/exercises/372509870/feedback
+/okcomputer
+/exercises/372509870/next
+/exercises/304862994
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4354389552585469
+/ably?rnd=819695134562672
+/ably?clientId=production_au.client%2F2788682&rnd=7283343474658337
+/program/2018-09-30
+/ably?clientId=production_au.client%2F2210734&rnd=7659858088820872
+/ably?rnd=8355343715802572
+/ably?clientId=production_au.client%2F3340259&rnd=604412779808572
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=62763972300241
+/ably?access_code=hdwkoaev&clientId=production_au.client/2582689&capability=
+/okcomputer/all
+/exercises/346501549
+/ably?rnd=03335392446060648
+/ably?clientId=production_au.client%2F2689116&rnd=6605555527786342
+/okcomputer
+/exercises/346501549/feedback
+/ably?clientId=production_au.client%2F2689116&rnd=8661882542967843
+/ably?clientId=production_au.client%2F2359097&rnd=023028760698152295
+/okcomputer
+/exercises/346501549/next
+/exercises/304862994
+/ably?rnd=9085193142776615
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9294310004156376
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=09680383059208886
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8804724174015739
+/ably?rnd=7613512239088371
+/program/2018-09-30
+/ably?clientId=production_au.client%2F3076442&rnd=2763472743731158
+/ably?rnd=7230687710561672
+/okcomputer
+/exercises/346499689
+/ably?clientId=production_au.client%2F3352931&rnd=9085546915246174
+/ably?rnd=4459630196994948
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7904840290951574
+/exercises/346499689/feedback
+/okcomputer
+/exercises/346499689/next
+/exercises/304862994
+/ably?clientId=production_au.client%2F2210734&rnd=9061518429312416
+/ably?rnd=6651699732641634
+/pt/ably?clientId=production_au.provider%2F193566&rnd=520306009701915
+/ably?clientId=production_au.client%2F3396068&rnd=7224006986510212
+/ably?clientId=production_au.client%2F2689116&rnd=06652406376558861
+/okcomputer
+/ably?clientId=production_au.client%2F2788682&rnd=09154088744459288
+/program/2018-09-30
+/ably?rnd=01945141082953894
+/ably?clientId=production_au.client%2F2689116&rnd=5890625648509251
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/.well-known/apple-app-site-association
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=7571329580198733
+/ably?rnd=3276552605937786
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4271916613621194
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6211606486833905
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=22311673608334748
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3340259&rnd=2131914413075291
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=4346398205954519
+/login
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/users/sign_in
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6375487112819469
+/exercises
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/okcomputer
+/themes/0/categories.json
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=7752393097051336
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8273944929006751
+/exercises.json?page=1
+/ably?clientId=production_au.client%2F3397578&rnd=834124141970165
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=5476893328017745
+/ably?clientId=production_au.client%2F3352931&rnd=2537302973602207
+/ably?clientId=production_au.client%2F2689116&rnd=09635041701805602
+/okcomputer
+/webpack/common-bundle-f3a4a38f6bff80aa54c7.js
+/ably?clientId=production_au.client%2F2359097&rnd=9802065709672749
+/webpack/pt-bundle-91b8288b11c1991012aa.js
+/ably?rnd=43129456349865425
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7262237097075177
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5085455102183847
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=065120422444233
+/webpack/vendor-bundle-5548abbeaebc93e9d5f5.js
+/okcomputer
+/ably?capability=&clientId=production_au.client/3171399&access_code=wyzcqjbv
+/ably?capability=&clientId=production_au.client/3171399&access_code=wyzcqjbv
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3238388899813147
+/ably?clientId=production_au.client%2F3076442&rnd=7070372522203427
+/okcomputer
+/ably?clientId=production_au.client%2F2788682&rnd=8243076330451776
+/ably?capability=&clientId=production_au.client/3413044&access_code=iridznzy
+/pt/ably?clientId=production_au.provider%2F193566&rnd=632896638517787
+/ably?clientId=production_au.client%2F2210734&rnd=14654759181418786
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6117428670617049
+/ably?clientId=production_au.client%2F3397578&rnd=18820509646938033
+/ably?clientId=production_au.client%2F2689116&rnd=5829145977759413
+/ably?clientId=production_au.client%2F3340259&rnd=7092687982075362
+/okcomputer
+/home-exercise-video/plank
+/ably?rnd=20134649354414558
+/ably?clientId=production_au.client%2F2359097&rnd=6352023542669778
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=022094917576327422
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=986006217311687
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=681121867228109
+/
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=347597956584212
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6992803831563925
+/okcomputer
+/api/patient/ganxmctw/video_calls/channel
+/api/patient/ganxmctw/device_registration/ios
+/ably?clientId=production_au.client/3351992&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538327433.367608&access_code=ganxmctw&format=msgpack
+/api/patient/ganxmctw/program
+/okcomputer/all
+/api/patient/ganxmctw/settings
+/ably?clientId=production_au.client%2F3076442&rnd=4455390229780033
+/api/patient/ganxmctw/program
+/api/patient/ganxmctw/settings
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6270762595775898
+/ably?clientId=production_au.client%2F2210734&rnd=0603429459832423
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6322449072305707
+/home-exercise-video/arom-cervical--flexion
+/ably?clientId=production_au.client%2F2788682&rnd=11317773621461313
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/ably?clientId=production_au.client%2F2689116&rnd=7390800434709581
+/okcomputer
+/ably?clientId=production_au.client/3351992&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538327450.491761&access_code=ganxmctw&format=msgpack
+/api/patient/ganxmctw/exercises/401594846/complete
+/ably?rnd=5858221721349928
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4112089274888511
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7238398259311829
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8335105419758075
+/ably?clientId=production_au.client%2F2359097&rnd=8250937696333067
+/okcomputer
+/api/patient/ganxmctw/exercises/401594846/complete
+/ably?clientId=production_au.client/3417255&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538327455.932177&access_code=erxxmuum&format=msgpack
+/api/patient/erxxmuum/program
+/api/patient/erxxmuum/settings
+/api/patient/ganxmctw/exercises/401594846/complete
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9027288585100108
+/okcomputer
+/ably?clientId=production_au.client/3351992&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538327465.896701&access_code=ganxmctw&format=msgpack
+/pt/ably?clientId=production_au.provider%2F193566&rnd=29256954423112447
+/api/patient/ganxmctw/exercises/401594846/complete
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=8816544279445273
+/ably?clientId=production_au.client%2F2689116&rnd=6825888564583884
+/api/patient/ganxmctw/exercises/401594846/complete
+/ably?clientId=production_au.client%2F2689116&rnd=46039573480556584
+/ably?clientId=production_au.client%2F3340259&rnd=42947694046698837
+/okcomputer
+/api/patient/ganxmctw/exercises/401594846/complete
+/home-exercise-video/plank
+/ably?rnd=9336438722689557
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7213023537390546
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7789392584492736
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5792246232049247
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=291993732647176
+/ably?clientId=production_au.client%2F2359097&rnd=8602204813408496
+/exercises
+/anonymous_session
+/servers/demo
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/okcomputer
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/api/patient/ganxmctw/exercises/401594844/complete
+/pt/ably?clientId=production_au.provider%2F540919&rnd=18393063346157268
+/okcomputer/all
+/ably?clientId=production_au.client%2F3352931&rnd=5603312960622557
+/api/patient/ganxmctw/exercises/401594845/complete
+/pt/ably?clientId=production_au.provider%2F193566&rnd=0035796871131477115
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=4906597836959614
+/ably?clientId=production_au.client%2F2689116&rnd=2447457230843344
+/api/patient/ganxmctw/exercises/401594847/complete
+/ably?clientId=production_au.client%2F2689116&rnd=7315795116701143
+/okcomputer
+/ably?access_code=yshspoou&clientId=production_au.client/2060343&capability=
+/api/patient/ganxmctw/exercises/401594848/complete
+/ably?rnd=1429872387765212
+/okcomputer
+/ably?rnd=2153291925103884
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9831814384487485
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=22569011697422003
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8372556086793104
+/ably?clientId=production_au.client%2F3076442&rnd=5679233091691264
+/ably?clientId=production_au.client%2F2359097&rnd=30165550101730054
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=356542112628327
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=27705221381619194
+/ably?clientId=production_au.client%2F2536387&rnd=7673850998685269
+/ably?clientId=production_au.client%2F2536387&rnd=1647283810450747
+/ably?clientId=production_au.client%2F2689116&rnd=5579601811925989
+/ably?clientId=production_au.client%2F2210734&rnd=013519098711257671
+/ably?clientId=production_au.client%2F2689116&rnd=18811667550866384
+/ably?clientId=production_au.client%2F3340259&rnd=6719395302444641
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3352931&rnd=38215901936111485
+/okcomputer
+/ably?rnd=2925887124721398
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=983406098184352
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8697276592081391
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=42155067143537184
+/ably?clientId=production_au.client%2F2359097&rnd=8599456315627689
+/okcomputer
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4040564320085718
+/ably?clientId=production_au.client%2F3076442&rnd=809552866588041
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4811351525531884
+/ably?clientId=production_au.client%2F2689116&rnd=057608332873880785
+/ably?clientId=production_au.client%2F2210734&rnd=2873198092002698
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=8179455258093724
+/okcomputer
+/ably?rnd=5912370089869301
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9869354158211523
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7456546116016431
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=27993421965816734
+/ably?clientId=production_au.client%2F2359097&rnd=8194285140537403
+/okcomputer
+/
+/login
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/pt/ably?clientId=production_au.provider%2F540919&rnd=957428069692573
+/ably?clientId=production_au.client%2F3352931&rnd=9314661798437469
+/ably?clientId=production_au.client%2F3076442&rnd=47122963253565464
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=18599164758063513
+/ably?clientId=production_au.client%2F2689116&rnd=026091409659812825
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=9404399283133652
+/ably?clientId=production_au.client%2F2689116&rnd=8434836182553698
+/ably?clientId=production_au.client%2F2210734&rnd=3314093403938434
+/home-exercise-video/plank
+/okcomputer
+/ably?rnd=6474328517824464
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=526015964195039
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3074925181554189
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5966676181839479
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=18275623983876366
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5057080853775568
+/ably?clientId=production_au.client%2F3076442&rnd=7308473680114478
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6318634736718884
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=5795659563735582
+/ably?clientId=production_au.client%2F2689116&rnd=6120434502047998
+/ably?clientId=production_au.client%2F2210734&rnd=8657815380376512
+/okcomputer
+/ably?rnd=7857081590680313
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8517804224426422
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=408222300832936
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8274430635760648
+/ably?clientId=production_au.client%2F3340259&rnd=5597066682937382
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=678321791303786
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8214845309632697
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=47609185877517946
+/ably?capability=&clientId=production_au.client/2857936&access_code=niafqbmo
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=8026502400240407
+/ably?clientId=production_au.client%2F2689116&rnd=8169401960844116
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3076442&rnd=2863451234190244
+/ably?clientId=production_au.client%2F2210734&rnd=7078864381440995
+/okcomputer
+/ably?rnd=5377799807691217
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5203537103276472
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=19251545022412464
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=11478552751831761
+/okcomputer
+/
+/login
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/okcomputer/all
+/ably?clientId=production_au.client%2F3352931&rnd=7826786923481364
+/ably?clientId=production_au.client%2F2359097&rnd=9511777737031308
+/pt/ably?clientId=production_au.provider%2F540919&rnd=02504357101965926
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6816860698751486
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=4300893866447566
+/ably?clientId=production_au.client%2F2689116&rnd=8054904380558501
+/ably?clientId=production_au.client%2F3076442&rnd=22983097909567862
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=43728397756306303
+/ably?rnd=5237039740584835
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9924000934878836
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7050476105554111
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5603476882451373
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=36256104114298493
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6832581189564539
+/ably?clientId=production_au.client%2F2359097&rnd=5615466831691709
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7267068037456486
+/ably?clientId=production_au.client%2F3352931&rnd=1325806707910291
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=07729667963992903
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2689116&rnd=29505506914256774
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=4879645439159339
+/ably?rnd=8198461952360712
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3747760450561337
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4286369528488627
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6229704585397657
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F3076442&rnd=15860215205642514
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=012125164206326477
+/pt/ably?clientId=production_au.provider%2F540919&rnd=2119398199426803
+/pt/ably?clientId=production_au.provider%2F193566&rnd=18347229624740402
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=30937655811578324
+/ably?clientId=production_au.client%2F2689116&rnd=47415030052793217
+/okcomputer
+/cohorts.json?date=2013-11-01
+/cohorts.json?date=2013-10-01
+/cohorts.json?date=2013-12-01
+/cohorts.json?date=2014-01-01
+/cohorts.json?date=2014-02-01
+/cohorts.json?date=2014-03-01
+/ably?clientId=production_au.client%2F2210734&rnd=45202048279037554
+/cohorts.json?date=2014-04-01
+/cohorts.json?date=2014-05-01
+/cohorts.json?date=2014-06-01
+/cohorts.json?date=2014-07-01
+/ably?clientId=production_au.client%2F3352931&rnd=5058431218417931
+/cohorts.json?date=2014-08-01
+/ably?clientId=production_au.client%2F3340259&rnd=9173448893951469
+/okcomputer
+/cohorts.json?date=2014-09-01
+/cohorts.json?date=2014-10-01
+/ably?rnd=4091301117399313
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=44731344377689175
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=22611663428005513
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=32161204542437694
+/cohorts.json?date=2014-11-01
+/cohorts.json?date=2014-12-01
+/cohorts.json?date=2015-01-01
+/cohorts.json?date=2015-02-01
+/cohorts.json?date=2015-03-01
+/cohorts.json?date=2015-04-01
+/cohorts.json?date=2015-05-01
+/cohorts.json?date=2015-06-01
+/cohorts.json?date=2015-07-01
+/cohorts.json?date=2015-08-01
+/cohorts.json?date=2015-09-01
+/okcomputer
+/cohorts.json?date=2015-10-01
+/cohorts.json?date=2015-11-01
+/cohorts.json?date=2015-12-01
+/cohorts.json?date=2016-01-01
+/cohorts.json?date=2016-02-01
+/pt/ably?clientId=production_au.provider%2F540919&rnd=667344910742621
+/cohorts.json?date=2016-03-01
+/cohorts.json?date=2016-04-01
+/ably?clientId=production_au.client%2F2359097&rnd=4523520909119483
+/cohorts.json?date=2016-05-01
+/cohorts.json?date=2016-06-01
+/cohorts.json?date=2016-07-01
+/cohorts.json?date=2016-08-01
+/cohorts.json?date=2016-09-01
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7112042012802045
+/cohorts.json?date=2016-10-01
+/okcomputer
+/cohorts.json?date=2016-11-01
+/cohorts.json?date=2016-12-01
+/cohorts.json?date=2017-01-01
+/cohorts.json?date=2017-02-01
+/cohorts.json?date=2017-03-01
+/cohorts.json?date=2017-04-01
+/cohorts.json?date=2017-05-01
+/ably?capability=&clientId=production_au.client/2064122&access_code=rvuneoop
+/cohorts.json?date=2017-06-01
+/home-exercise-video/plank
+/cohorts.json?date=2017-07-01
+/cohorts.json?date=2017-08-01
+/cohorts.json?date=2017-09-01
+/ably?clientId=production_au.client%2F2689116&rnd=5546753900549468
+/cohorts.json?date=2017-10-01
+/ably?clientId=production_au.client%2F2689116&rnd=04091228465386032
+/cohorts.json?date=2017-11-01
+/cohorts.json?date=2017-12-01
+/okcomputer
+/cohorts.json?date=2018-01-01
+/cohorts.json?date=2018-02-01
+/cohorts.json?date=2018-03-01
+/cohorts.json?date=2018-04-01
+/cohorts.json?date=2018-05-01
+/cohorts.json?date=2018-06-01
+/cohorts.json?date=2018-07-01
+/cohorts.json?date=2018-08-01
+/cohorts.json?date=2018-09-01
+/aggregates.json?date=2018-09-30
+/ably?clientId=production_au.client%2F2210734&rnd=12088991377960201
+/okcomputer
+/ably?rnd=36649011352090644
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=1813005961870917
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8320910787623352
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=19940017738867377
+/okcomputer/all
+/ably?clientId=production_au.client%2F2802754&rnd=014153321259162022
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=096570062089951
+/ably?clientId=production_au.client%2F2359097&rnd=18626874330760246
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7331180944961666
+/okcomputer
+/ably?clientId=production_au.client%2F2620813&rnd=3417119855226227
+/ably?clientId=production_au.client%2F2689116&rnd=3105348440307856
+/ably?clientId=production_au.client%2F2689116&rnd=03942662283973841
+/okcomputer
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/api/patient/bgqxmgzb/video_calls/channel
+/api/patient/bgqxmgzb/device_registration/ios
+/api/patient/bgqxmgzb/program
+/api/patient/bgqxmgzb/program
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=49271968819928436
+/ably?clientId=production_au.client%2F3340259&rnd=2324588012612453
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4294091378785909
+/ably?rnd=5034986104572123
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3150942087226376
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=0427608874083274
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=70020573274497
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=573859029257417
+/ably?clientId=production_au.client%2F2359097&rnd=08573612712605394
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2689116&rnd=8643461503766603
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6427082513895832
+/ably?clientId=production_au.client%2F3352931&rnd=10623386633905496
+/ably?access_code=rbaqbbfz&clientId=production_au.client/2858296&capability=
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=4795707564017224
+/ably?rnd=19049035883504217
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=0905507670764032
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=35756868328733926
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5630826078806697
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=47203679296359313
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=938343991174301
+/ably?clientId=production_au.client%2F2359097&rnd=35871863351771615
+/pt/ably?clientId=production_au.provider%2F1174793&rnd=7460380954601735
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=962060260368766
+/ably?rnd=4796131876766647
+/ably?clientId=production_au.client%2F2689116&rnd=7402872761265875
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=6353844256703844
+/ably?clientId=production_au.client%2F2210734&rnd=9020087586730252
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=19886849916299632
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=34042655298686
+/ably?rnd=272870141267163
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=11468615648536185
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=32284698327631856
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6984026492652415
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5932023862651727
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2359097&rnd=031931051058598614
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7281903482207799
+/ably?clientId=production_au.client%2F2689116&rnd=5944647194076411
+/ably?capability=&clientId=production_au.client/2362801&access_code=oiykeoxx
+/okcomputer
+/ably?access_code=sytqnnzo&clientId=production_au.client/3353437&capability=
+/ably?access_code=sytqnnzo&clientId=production_au.client/3353437&capability=
+/ably?access_code=sytqnnzo&clientId=production_au.client/3353437&capability=
+/ably?access_code=sytqnnzo&clientId=production_au.client/3353437&capability=
+/ably?access_code=sytqnnzo&clientId=production_au.client/3353437&capability=
+/ably?access_code=sytqnnzo&clientId=production_au.client/3353437&capability=
+/okcomputer/all
+/ably?rnd=046798137651771876
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=29491419129161733
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7918301829337646
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6730173359056237
+/ably?clientId=production_au.client%2F2210734&rnd=8630851855601844
+/okcomputer
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=2177822602557602
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9100225871129275
+/ably?clientId=production_au.client%2F2359097&rnd=6586285324134107
+/okcomputer
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=7580901492787806
+/ably?clientId=production_au.client%2F2689116&rnd=9733987019296086
+/ably?clientId=production_au.client%2F3352931&rnd=49184892620956355
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=17451812689594348
+/ably?rnd=18381187000465515
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6724140173856143
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=24057099782462665
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3205085712376814
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=5553179257787679
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=29160252725985036
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7014796290907319
+/home-exercise-video/plank
+/okcomputer
+/ably?rnd=5814608024076395
+/login
+/ably?clientId=production_au.client%2F2359097&rnd=934074855420677
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/users/sign_in
+/exercises
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/ably?clientId=production_au.client%2F2689116&rnd=5698277887356891
+/ably?access_code=wjttfmpx&clientId=production_au.client/2671765&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=9086844229549556
+/themes/0/categories.json
+/exercises.json?page=1
+/okcomputer
+/ably?clientId=production_au.client/2839989&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538327971.985446&access_code=hqimucgu&format=msgpack
+/okcomputer/all
+/ably?rnd=09731102275372838
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=11786851539736887
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7753662336005167
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7082846460735097
+/ably?clientId=production_au.client%2F2210734&rnd=5071749748416885
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=38991763598185214
+/pt/ably?clientId=production_au.provider%2F193566&rnd=41777984877686736
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=5856654159408554
+/ably?clientId=production_au.client%2F2689116&rnd=3767878471095971
+/ably?clientId=production_au.client%2F2689116&rnd=22955665407655834
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=41142940450503906
+/okcomputer
+/ably?rnd=45706873587134655
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=38064242116448277
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3917008726786455
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8328532751871249
+/ably?clientId=production_au.client%2F2210734&rnd=024871098536823455
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=0374972020292037
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F193566&rnd=042484574658592456
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=033287778149989844
+/ably?clientId=production_au.client%2F2689116&rnd=5710677219577354
+/ably?clientId=production_au.client%2F2359097&rnd=4637866783770819
+/ably?clientId=production_au.client%2F2689116&rnd=726557436323898
+/okcomputer
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F3340008&rnd=3194845888628166
+/ably?rnd=8902782712065975
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=0328399796952108
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2552884429593949
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9262315398041276
+/ably?clientId=production_au.client%2F2210734&rnd=06473047453352909
+/ably?clientId=production_au.client%2F3340259&rnd=8878761321491545
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8613177193144903
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7983962186258244
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=726843516807925
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6746623857591971
+/ably?clientId=production_au.client%2F2359097&rnd=23410058578337645
+/ably?clientId=production_au.client%2F3352931&rnd=6208739074527061
+/okcomputer
+/ably?rnd=9659985945917575
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8300515454186632
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4041122469912275
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=11242127441469907
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=8094855266614587
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F540919&rnd=34880498366010926
+/pt/ably?clientId=production_au.provider%2F193566&rnd=51784131199338
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=31802790172668405
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=07494925017421328
+/okcomputer/all
+/ably?clientId=production_au.client%2F2359097&rnd=6349229013746991
+/okcomputer
+/api/patient/snpwufhm/video_calls/channel
+/api/patient/snpwufhm/device_registration/ios
+/ably?clientId=production_au.client/3413175&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538328101.101421&access_code=snpwufhm&format=msgpack
+/api/patient/snpwufhm/program
+/ably?rnd=5201305804611274
+/api/patient/snpwufhm/settings
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=33673406491880975
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4124235728662746
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=17044901373053545
+/api/patient/snpwufhm/program
+/api/patient/snpwufhm/settings
+/ably?clientId=production_au.client%2F3386939&rnd=5400363684992935
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=8337781734565264
+/ably?clientId=production_au.client%2F2210734&rnd=5474990665844124
+/ably?clientId=production_au.client%2F3340259&rnd=7068869619227123
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7851247216490718
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9727445555108702
+/ably?access_code=xwthtsuo&clientId=production_au.client/3415082&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=3938250920103763
+/ably?clientId=production_au.client%2F2689116&rnd=5835752112658621
+/ably?clientId=production_au.client%2F2359097&rnd=3630959957382096
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/okcomputer
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/ably?rnd=06508820884517319
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=08465462830044301
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=27689201706733124
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9177310433780699
+/ably?clientId=production_au.client%2F3410726&rnd=3091838526186843
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2210734&rnd=2721822774807756
+/pt/ably?clientId=production_au.provider%2F540919&rnd=1111004713827426
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=21436694331241268
+/ably?capability=&clientId=production_au.client/2857936&access_code=niafqbmo
+/ably?clientId=production_au.client/3417255&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538328148.466521&access_code=erxxmuum&format=msgpack
+/api/patient/erxxmuum/program
+/api/patient/erxxmuum/settings
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=3135835770231301
+/okcomputer/all
+/ably?clientId=production_au.client%2F2689116&rnd=9570152096265911
+/ably?clientId=production_au.client%2F2359097&rnd=9132767583218484
+/okcomputer
+/ably?rnd=20784583391949107
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6463318714482129
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=1580721181717133
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=29595713279748703
+/api/patient/hsuhbgbq/program
+/api/patient/hsuhbgbq/video_calls/channel
+/api/patient/hsuhbgbq/surveys
+/okcomputer
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/ably?clientId=production_au.client%2F3340259&rnd=9678506338533456
+/ably?clientId=production_au.client%2F2210734&rnd=15260722342259658
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=36884390871929473
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4135238260659224
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7659505623323404
+/ably?clientId=production_au.client%2F2689116&rnd=31904708638710333
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=699984442511933
+/ably?rnd=4159053864373341
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=642538429491136
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3158464015053488
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6434538086888228
+/okcomputer
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/ably?clientId=production_au.client%2F3352931&rnd=8892562594916822
+/home-exercise-video/plank
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9350257900199883
+/ably?clientId=production_au.client%2F2210734&rnd=8208043674804244
+/api/patient/mqvprkjw/video_calls/channel
+/api/patient/mqvprkjw/messages?birthYear=1965
+/pt/ably?clientId=production_au.provider%2F193566&rnd=06016553690083182
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/api/patient/mqvprkjw/device_registration/ios
+/ably?clientId=production_au.client/1967575&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538328208.815638&access_code=mqvprkjw&format=msgpack
+/api/patient/mqvprkjw/messages?birthYear=1965
+/api/patient/mqvprkjw/exercises/340887313/complete
+/api/patient/mqvprkjw/exercises/340887313/complete
+/api/patient/mqvprkjw/exercises/340887311/complete
+/api/patient/mqvprkjw/exercises/340887310/complete
+/api/patient/mqvprkjw/exercises/340887312/complete
+/okcomputer
+/api/patient/mqvprkjw/exercises/340887314/complete
+/exercises
+/api/patient/mqvprkjw/exercises/340887329/complete
+/api/patient/mqvprkjw/exercises/340887328/complete
+/okcomputer/all
+/api/patient/mqvprkjw/exercises/340887327/complete
+/ably?clientId=production_au.client%2F2689116&rnd=7121500042449804
+/api/patient/mqvprkjw/exercises/340887326/complete
+/ably?clientId=production_au.client%2F2689116&rnd=8186654325189382
+/api/patient/mqvprkjw/exercises/340887325/complete
+/okcomputer
+/themes/0/categories.json
+/ably?clientId=production_au.client%2F2359097&rnd=6208576616500527
+/exercises.json?page=1
+/api/patient/mqvprkjw/program?birthYear=1965
+/api/patient/mqvprkjw/program?birthYear=1965
+/okcomputer
+/ably?rnd=6720911849668141
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=050632996769740535
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9213049799113868
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6408447862469662
+/ably?rnd=20974840189733035
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=6300052693039438
+/pt/ably?clientId=production_au.provider%2F540919&rnd=14733677058326644
+/ably?clientId=production_au.client%2F3352931&rnd=46753625841666535
+/ably?clientId=production_au.client%2F2210734&rnd=4785158419407558
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3470267268193912
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6975353571208518
+/ably?clientId=production_au.client%2F2689116&rnd=9872698821940076
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=8101555639994173
+/okcomputer
+/ably?rnd=5925315763294587
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9747114427978878
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5234433217739307
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2935955200207032
+/home-exercise-video/plank
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/ably?access_code=qbemchmf&clientId=production_au.client/3393740&capability=
+/okcomputer
+/ably?access_code=qbemchmf&clientId=production_au.client/3393740&capability=
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7297878899548693
+/pt/ably?clientId=production_au.provider%2F193566&rnd=2517601192593233
+/ably?clientId=production_au.client%2F2210734&rnd=8025354009969914
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2689116&rnd=2946821412458118
+/ably?clientId=production_au.client%2F2689116&rnd=9075857832261041
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F1984212&rnd=00268017982758173
+/ably?clientId=production_au.client%2F3352931&rnd=26488664132305906
+/ably?clientId=production_au.client%2F2359097&rnd=6656605192505973
+/okcomputer
+/ably?rnd=3601011730500143
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=2741524857597357
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=11506946688753561
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2325248056559952
+/ably?access_code=npucmocp&clientId=production_au.client/3172671&capability=
+/okcomputer
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7175516329343146
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7772403502653782
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=7589729375780525
+/ably?access_code=npucmocp&clientId=production_au.client/3172671&capability=
+/ably?clientId=production_au.client%2F3340259&rnd=23065919007979663
+/ably?clientId=production_au.client%2F2689116&rnd=311314704652911
+/ably?clientId=production_au.client%2F2689116&rnd=13975500487166492
+/okcomputer
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=2999204205097674
+/ably?rnd=5703004531069666
+/ably?clientId=production_au.client%2F3384126&rnd=6808848779242139
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=47079533721007194
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2482420037214077
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=22116886465506114
+/home-exercise-video/plank
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8972464651473306
+/pt/ably?clientId=production_au.provider%2F193566&rnd=37009234578255357
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=7228861741589552
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=012551072801750163
+/ably?clientId=production_au.client%2F2689116&rnd=48793628644425
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/okcomputer
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/okcomputer
+/ably?rnd=22897351074156136
+/ably?clientId=production_au.client%2F2359097&rnd=27560225084378586
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=531670522519792
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=26505625529181853
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=38299459786547496
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=11575911008646056
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5374159869056987
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=3623158633665293
+/ably?clientId=production_au.client%2F2210734&rnd=3908460313124298
+/ably?clientId=production_au.client%2F2689116&rnd=6374451030487089
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=3691899712458224
+/ably?clientId=production_au.client%2F3352931&rnd=7431354601258222
+/okcomputer
+/home-exercise-video/plank
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/ably?rnd=10930854460369388
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7134812057663444
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=37090016445636564
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8374472037343568
+/ably?clientId=production_au.client%2F2359097&rnd=8202058882974537
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/okcomputer
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=006996563541119993
+/pt/ably?clientId=production_au.provider%2F540919&rnd=787315777356661
+/okcomputer/all
+/ably?access_code=kpfmjbso&clientId=production_au.client/2848207&capability=
+/ably?clientId=production_au.client%2F2210734&rnd=1075047909969229
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7470219913968452
+/ably?clientId=production_au.client%2F2689116&rnd=5165238780389001
+/ably?capability=&clientId=production_au.client/2849111&access_code=vonsvycz
+/pt/ably?clientId=production_au.provider%2F1460&rnd=862023793561294
+/okcomputer
+/ably?rnd=3885180333182181
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5848563478344935
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7331156581895906
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=859589416098641
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=3043304792560557
+/ably?clientId=production_au.client%2F3352931&rnd=4324895194104419
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6994632206497475
+/ably?rnd=082483463927991
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8015577037605321
+/ably?clientId=production_au.client%2F3340259&rnd=2098689035339354
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=8678748784618529
+/ably?clientId=production_au.client%2F2689116&rnd=9450873953430354
+/ably?clientId=production_au.client%2F2689116&rnd=10688793251355788
+/ably?access_code=rofkkyhj&clientId=production_au.client/2347798&capability=
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/okcomputer
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/home-exercise-video/plank
+/home-exercise-video/aarom-pronation-and-supination-stretch-with-extended-fingers
+/home-exercise-video/isometric-thumb-ip-joint-flexion-%2528flexor-pollicis-longus%2529
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/home-exercise-video/resisted-shoulder-flexion-in-sitting---short-lever
+/home-exercise-video/aarom-radial-and-ulnar-deviation-stretch-with-flexed-fingers
+/surveys
+/
+/ably?rnd=49383041098929015
+/home-exercise-video/active-prone-knee-flexion-with-hip-extension
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=019388692798468554
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=39802368190853676
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3922849589968824
+/editable_programs/742530/exercise_programs
+/okcomputer
+/settings/sharing
+/ably?clientId=production_au.client%2F3352931&rnd=8809841477882991
+/ably?clientId=production_au.client%2F2359097&rnd=8065303140772211
+/home-exercise-video/slide-board-transfer-bed-to-chair-%2528hemiplegic-side%2529
+/home-exercise-video/aarom-wrist-pronation
+/pt/ably?clientId=production_au.provider%2F723918&rnd=06526341569289828
+/home-exercise-video/circumduction-of-the-wrist
+/access/tzwsrsyk
+/access/tzwsrsyk
+/access/tzwsrsyk
+/okcomputer
+/ptdirect/sign_in?email=admin%40physioclare.com.au
+/program?redirected=
+/pt/ably?clientId=production_au.provider%2F193566&rnd=2102016702024363
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9001577062302271
+/home-exercise-video/trunk-rotations-and-reach-standing-with-weights
+/ably?rnd=41136507690192314
+/clients/1186870/adherence
+/home-exercise-video/suboccipital-release-with-tennis-balls
+/home-exercise-video/the-knack-pelvic-floor-technique---preventative
+/okcomputer
+/home-exercise-video/tmj-lateral-deviation-rom
+/home-exercise-video/elbow-extension-sitting-%2528weight-bearing-on-table%2529
+/ably?clientId=production_au.client%2F2689116&rnd=17799707002089993
+/subscription
+/ably?clientId=production_au.client%2F2689116&rnd=3220536590425851
+/home-exercise-video/hold-and-relax-calf-muscles
+/ably?clientId=production_au.client%2F2210734&rnd=44368357798818825
+/home-exercise-video/weight-bearing-through-arms
+/ably?capability=&clientId=production_au.client/3417095&access_code=opozhukh
+/home-exercise-video/wide-leg-plank
+/pt/ably?clientId=production_au.provider%2F95&rnd=7477682577222389
+/disabled_cookies
+/ptdirect/content_sharing_agreements
+/home-exercise-video/bridge-reverse-on-stability-ball-alternate-leg-lifts
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/ably?clientId=production_au.client%2F3223240&rnd=1902713025651377
+/okcomputer
+/okcomputer
+/ably?rnd=7641200254728888
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8450922294180991
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=32111710366436363
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8227390594546962
+/ably?access_code=rbaqbbfz&clientId=production_au.client/2858296&capability=
+/ably?clientId=production_au.client%2F2359097&rnd=5248277836089745
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=016930389737597418
+/pt/ably?clientId=production_au.provider%2F540919&rnd=28798557031642313
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=008272999701112838
+/ably?clientId=production_au.client%2F2689116&rnd=16627071252095793
+/ably?clientId=production_au.client%2F2689116&rnd=23609270817907335
+/ably?clientId=production_au.client%2F2210734&rnd=076132477839433
+/okcomputer
+/home-exercise-video/plank
+/okcomputer
+/ably?rnd=9036305940482343
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=0091146437867482
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6433936124191502
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=687223999641392
+/ably?clientId=production_au.client%2F2359097&rnd=14123356154695865
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/okcomputer
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F193566&rnd=003228987449654941
+/pt/ably?clientId=production_au.provider%2F540919&rnd=14018103427209794
+/ably?capability=&clientId=production_au.client/3171399&access_code=wyzcqjbv
+/okcomputer
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=1401076394932621
+/ably?clientId=production_au.client%2F2689116&rnd=5969985101127453
+/api/patient/hsuhbgbq/program
+/api/patient/hsuhbgbq/video_calls/channel
+/api/patient/hsuhbgbq/surveys
+/ably?clientId=production_au.client%2F2210734&rnd=4910117543081023
+/okcomputer
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=24499669174943528
+/ably?rnd=10056709635335448
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=17564223508307664
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=47940477076853516
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4240578494039613
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=07933758718927608
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7087458633113022
+/pt/ably?clientId=production_au.provider%2F540919&rnd=10815975097212038
+/ably?clientId=production_au.client%2F11657&rnd=8441022834740579
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=7899567013962909
+/ably?clientId=production_au.client%2F2689116&rnd=7412218790727048
+/ably?clientId=production_au.client%2F2689116&rnd=8275651292994786
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=480736844557794
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/home-exercise-video/plank
+/ably?capability=&clientId=production_au.client/2362801&access_code=oiykeoxx
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/okcomputer
+/login
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/users/sign_in
+/exercises
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/ably?rnd=8196321259994972
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8283488395889829
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5525923967829094
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=555722099573392
+/themes/0/categories.json
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/exercises.json?page=1
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2359097&rnd=3556824690220546
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/pt/ably?clientId=production_au.provider%2F193566&rnd=578829601817392
+/pt/ably?clientId=production_au.provider%2F540919&rnd=18295277232971263
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=287748226663018
+/ably?clientId=production_au.client%2F2689116&rnd=14183818572962337
+/ably?clientId=production_au.client%2F2689116&rnd=5732337570561719
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=42046017086204324
+/okcomputer
+/ably?rnd=7629066322307283
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=29439139003373205
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2023013921679282
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=020783630235624573
+/ably?capability=&clientId=production_au.client/2474119&access_code=xufwojqk
+/okcomputer
+/ably?access_code=kkezxtph&clientId=production_au.client/3350505&capability=
+/ably?clientId=production_au.client%2F3340259&rnd=34703406427315486
+/ably?clientId=production_au.client%2F2359097&rnd=20379656524565481
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7618536914262519
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8939426322160817
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=057049254299056606
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=9040235859479382
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3352931&rnd=6345098479903855
+/ably?clientId=production_au.client%2F2210734&rnd=9501123535228981
+/okcomputer
+/ably?rnd=7879957951299941
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=35303221525455686
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9511322104797413
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=15972032614190113
+/okcomputer
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F193566&rnd=13807285457640073
+/ably?clientId=production_au.client%2F2359097&rnd=07368252331771208
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=2444308293257984
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=06284984142393157
+/ably?clientId=production_au.client%2F2689116&rnd=6851820566436173
+/ably?clientId=production_au.client%2F2210734&rnd=5789170201660292
+/okcomputer
+/ably?access_code=miwrazao&clientId=production_au.client/2804959&capability=
+/ably?access_code=miwrazao&clientId=production_au.client/2804959&capability=
+/ably?access_code=miwrazao&clientId=production_au.client/2804959&capability=
+/ably?access_code=miwrazao&clientId=production_au.client/2804959&capability=
+/ably?rnd=956771722303225
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=055587863149508365
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3962947377459278
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=32745938853928314
+/okcomputer
+/ably?capability=&clientId=production_au.client/3417095&access_code=opozhukh
+/ably?clientId=production_au.client%2F3340259&rnd=6971361731374778
+/pt/ably?clientId=production_au.provider%2F193566&rnd=16975065560482205
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=5229656210412239
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3493005034803216
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7359083026161941
+/ably?clientId=production_au.client%2F2689116&rnd=28027347756444243
+/ably?capability=&clientId=production_au.client/3416247&access_code=czdcjvrg
+/ably?capability=&clientId=production_au.client/3416247&access_code=czdcjvrg
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=12516945839142224
+/ably?rnd=6014893582556229
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8145184782503718
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3173174569848518
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=08072134412161791
+/okcomputer
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F193566&rnd=41265194063321076
+/okcomputer
+/ably?rnd=45800472598131714
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5514188471286705
+/ably?clientId=production_au.client%2F2359097&rnd=7526506517076965
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=04626448223819013
+/ably?clientId=production_au.client%2F2689116&rnd=4568280724520435
+/ably?clientId=production_au.client%2F3352931&rnd=04702594299304841
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=9703256593935801
+/okcomputer
+/ably?rnd=11709409626150835
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=963311444788022
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6992533156935972
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9929753298024433
+/ably?clientId=production_au.client%2F3340259&rnd=7598102571868112
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3529479464042431
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7508047300056131
+/ably?clientId=production_au.client%2F2359097&rnd=6250098076696617
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7442719258469297
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2689116&rnd=09733687762092624
+/ably?access_code=whxpxean&clientId=production_au.client/2847180&capability=
+/okcomputer
+/ably?capability=&clientId=production_au.client/2684167&access_code=ftxuohyu
+/ably?clientId=production_au.client%2F2210734&rnd=7980771049303421
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=07598691185095152
+/okcomputer/all
+/ably?rnd=027687848134207105
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5174465759637348
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=29639449479706936
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3769201172919421
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9822824052522605
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9331594451515672
+/ably?clientId=production_au.client%2F2359097&rnd=06572729245361453
+/okcomputer
+/ably?access_code=oskhwokq&clientId=production_au.client/3048249&capability=
+/ably?access_code=oskhwokq&clientId=production_au.client/3048249&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=07229395110601322
+/ably?clientId=production_au.client%2F2689116&rnd=23894803297478573
+/ably?clientId=production_au.client%2F2126806&rnd=701169782163245
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=28705244370416905
+/okcomputer
+/ably?rnd=7626518115618104
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9466282383249802
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9892420361189469
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=23572317814383292
+/ably?clientId=production_au.client%2F3340259&rnd=9841641646537479
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=16297904566084176
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8850378620471455
+/ably?clientId=production_au.client%2F3352931&rnd=9433360359372651
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=7142217636129418
+/ably?clientId=production_au.client%2F2689116&rnd=5986979723310639
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2689116&rnd=7107751897462609
+/okcomputer
+/ably?clientId=production_au.client%2F2792761&rnd=6388196037204614
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=3528618697075405
+/ably?rnd=6061101702187879
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=001841505666971166
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=38383152041142177
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=0021391409730271427
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=23519592629062092
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3603277601747732
+/okcomputer
+/api/patient/ymozgimf/video_calls/channel
+/api/patient/ymozgimf/device_registration/ios
+/api/patient/ymozgimf/program
+/api/patient/ymozgimf/program
+/ably?clientId=production_au.client%2F2359097&rnd=09814776281456372
+/ably?clientId=production_au.client/3383690&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538328831.685978&access_code=ymozgimf&format=msgpack
+/ably?clientId=production_au.client%2F2689116&rnd=8669553080133023
+/api/patient/ymozgimf/settings
+/api/patient/ymozgimf/settings
+/ably?clientId=production_au.client%2F2689116&rnd=7757932172990416
+/okcomputer
+/ably?access_code=rcojjreu&clientId=production_au.client/2857549&capability=
+/ably?access_code=rcojjreu&clientId=production_au.client/2857549&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2844195&rnd=3042810434294174
+/ably?clientId=production_au.client%2F2210734&rnd=008607513366917896
+/ably?rnd=011715728083139476
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=33499642650946293
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=18946871786967145
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=10423014363810168
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=49942129701249327
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/ably?capability=&clientId=production_au.client/3401227&access_code=xsyghvis
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9555633161112733
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6231104289061884
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2689116&rnd=8951397085154296
+/ably?clientId=production_au.client%2F3389692&rnd=2850801852208882
+/ably?clientId=production_au.client%2F2359097&rnd=6603497768727888
+/ably?clientId=production_au.client%2F2689116&rnd=2649107225547054
+/okcomputer
+/ably?access_code=ymnoqzkr&clientId=production_au.client/2038676&capability=
+/ably?clientId=production_au.client%2F3221748&rnd=4718205393185264
+/api/patient/pvpkiicr/video_calls/channel
+/api/patient/pvpkiicr/program
+/api/patient/pvpkiicr/program
+/okcomputer
+/ably?clientId=production_au.client/3134614&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538328872.667795&access_code=pvpkiicr&format=msgpack
+/api/patient/pvpkiicr/device_registration/ios
+/api/patient/pvpkiicr/settings
+/api/patient/pvpkiicr/settings
+/okcomputer/all
+/ably?rnd=7364014010941577
+/ably?clientId=production_au.client%2F2210734&rnd=9635970800506541
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=13325408825621166
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5270809286799241
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5865848847673141
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3970760473887358
+/ably?clientId=production_au.client%2F3352931&rnd=7052869102987407
+/ably?rnd=008952428916347621
+/okcomputer
+/ably?clientId=production_au.client%2F3383671&rnd=006950449733870823
+/pt/ably?clientId=production_au.provider%2F540919&rnd=25268554586856085
+/ably?clientId=production_au.client%2F3383671&rnd=37458183209355767
+/ably?clientId=production_au.client%2F2689116&rnd=537227688133292
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7007882847471649
+/ably?clientId=production_au.client%2F2359097&rnd=9332585615681943
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=7734025521394378
+/ably?rnd=9122153922161753
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=49345623888255497
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2424787145410796
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=10697179285038638
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=29420079678278954
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9507457625774436
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=20973257200477247
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2689116&rnd=8638199364618901
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6910470900178765
+/ably?clientId=production_au.client%2F2359097&rnd=7028540048601957
+/ably?clientId=production_au.client%2F3352931&rnd=35963528935457445
+/okcomputer
+/okcomputer/all
+/okcomputer
+/ably?rnd=8654443545859647
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=996681889203852
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9315052073026955
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=09048055365685359
+/ably?clientId=production_au.client%2F2210734&rnd=39084803383908095
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8405731412163331
+/pt/ably?clientId=production_au.provider%2F3395722&rnd=6685717920260941
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3275212204245481
+/pt/ably?clientId=production_au.provider%2F471723&rnd=9578782441874623
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=488501119600417
+/ably?clientId=production_au.client%2F2689116&rnd=772025780681376
+/ably?clientId=production_au.client%2F2359097&rnd=02312770524373442
+/ably?clientId=production_au.client%2F3352931&rnd=11196869636100404
+/okcomputer
+/ably?clientId=production_au.client/2347812&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538328963.961462&access_code=nenksatc&format=msgpack
+/ably?clientId=production_au.client%2F3340259&rnd=76555863610067
+/okcomputer
+/ably?rnd=6629884607746903
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=47469369046462573
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=18937154075318885
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6303455888007192
+/ably?clientId=production_au.client%2F2210734&rnd=5838793338248176
+/pt/ably?clientId=production_au.provider%2F193566&rnd=30081169657950513
+/okcomputer
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4296259034793193
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=021771294561393262
+/ably?clientId=production_au.client%2F2689116&rnd=5944987877238237
+/ably?clientId=production_au.client%2F2359097&rnd=6471926365614544
+/okcomputer
+/okcomputer/all
+/okcomputer
+/ably?rnd=991328755619131
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7577986451053533
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=053341451270233486
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5899689972863713
+/ably?clientId=production_au.client%2F2210734&rnd=7141494199557235
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=689747410081899
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4839503007621593
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=2703646744218182
+/ably?clientId=production_au.client%2F2689116&rnd=3671908907913115
+/ably?clientId=production_au.client%2F3076442&rnd=9394957427494371
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=3839864283899972
+/ably?clientId=production_au.client%2F3340259&rnd=009618882138829776
+/okcomputer
+/ably?rnd=39756203581056715
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=36995328703426833
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=23339808726249212
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8360386454286755
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=904382024197464
+/ably?clientId=production_au.client%2F2821346&rnd=44385370258140733
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7656325807651965
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F540919&rnd=22479703045371546
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7340909864381775
+/ably?clientId=production_au.client%2F2689116&rnd=23412126548580203
+/ably?clientId=production_au.client%2F3352931&rnd=85621656268064
+/ably?clientId=production_au.client%2F3076442&rnd=5382394000884535
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2359097&rnd=14651969794146846
+/ably?capability=&clientId=production_au.client/2362801&access_code=oiykeoxx
+/okcomputer
+/ably?rnd=8701711374721615
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9576083140562575
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8700251162056793
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3733905650023597
+/okcomputer
+/api/patient/hkxbnbay/video_calls/channel
+/api/patient/hkxbnbay/messages?birthYear=1971
+/api/patient/hkxbnbay/program?birthYear=1971
+/pt/ably?clientId=production_au.provider%2F193566&rnd=43460853265477684
+/ably?clientId=production_au.client%2F2210734&rnd=649288459269743
+/api/patient/hkxbnbay/device_registration/ios
+/api/patient/hkxbnbay/settings
+/ably?clientId=production_au.client/3172222&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538329070.583489&access_code=hkxbnbay&format=msgpack
+/pt/ably?clientId=production_au.provider%2F540919&rnd=19445001577324916
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=9118893644010513
+/ably?clientId=production_au.client%2F2689116&rnd=5041332061947001
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=38479132662819615
+/ably?clientId=production_au.client%2F3076442&rnd=09689892171443826
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=788399294816389
+/ably?clientId=production_au.client%2F3352931&rnd=9690682929965979
+/ably?rnd=17774329313675263
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=044403851314369636
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7632566379597137
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9176531959780765
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9870272675280578
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2210734&rnd=8127331659825352
+/ably?capability=&clientId=production_au.client/1862397&access_code=wrnjtuen
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=1545572502096375
+/ably?clientId=production_au.client%2F2689116&rnd=2818943224913675
+/ably?capability=&clientId=production_au.client/2534152&access_code=oxmtvqad
+/ably?capability=&clientId=production_au.client/2534152&access_code=oxmtvqad
+/ably?clientId=production_au.client%2F2689116&rnd=3978681709070455
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2821642&rnd=5782662332036769
+/ably?clientId=production_au.client%2F2359097&rnd=6860165424788036
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=8508450157860078
+/ably?rnd=3774181851099425
+/ably?rnd=5449710153526277
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=14903283861984695
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5272215469905153
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=27734660484590457
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6406331031536907
+/ably?clientId=production_au.client%2F3340259&rnd=6809795770949025
+/ably?clientId=production_au.client%2F2210734&rnd=5896420566835403
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=1343315895388868
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6363586955964298
+/ably?clientId=production_au.client%2F2689116&rnd=2517252116849442
+/ably?clientId=production_au.client%2F2689116&rnd=5625053845112185
+/okcomputer
+/ably?access_code=ufamviba&clientId=production_au.client/2963883&capability=
+/ably?access_code=cqjnbvqh&clientId=production_au.client/3389982&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=9361138064992731
+/ably?rnd=22672007736473132
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=00877353722852714
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6896243544974334
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6296160523895173
+/okcomputer
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F193566&rnd=688050028285978
+/ably?clientId=production_au.client%2F3076442&rnd=8029423728006654
+/login
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=8787147829149125
+/pt/ably?clientId=production_au.provider%2F540919&rnd=05068295462085004
+/users/sign_in
+/exercises
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/themes/0/categories.json
+/exercises.json?page=1
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=582880069517596
+/ably?clientId=production_au.client%2F2689116&rnd=7759658314030506
+/okcomputer/all
+/ably?capability=&client_id=production_au.client/2066399&access_code=ffguuors
+/okcomputer
+/ably?capability=&clientId=production_au.client/1280751&access_code=vcyjhuva
+/ably?capability=&clientId=production_au.client/1280751&access_code=vcyjhuva
+/ably?capability=&clientId=production_au.client/1280751&access_code=vcyjhuva
+/ably?capability=&clientId=production_au.client/1280751&access_code=vcyjhuva
+/ably?capability=&clientId=production_au.client/1280751&access_code=vcyjhuva
+/ably?capability=&clientId=production_au.client/1280751&access_code=vcyjhuva
+/ably?clientId=production_au.client%2F2359097&rnd=13307226984550113
+/okcomputer
+/ably?rnd=20342046237740963
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9466136359309736
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7440990964298373
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=779121485894654
+/pt/ably?clientId=production_au.provider%2F193566&rnd=11928606907366834
+/pt/ably?clientId=production_au.provider%2F364355&rnd=883771857917618
+/okcomputer
+/ably?clientId=production_au.client%2F3411073&rnd=5767006236860988
+/ably?clientId=production_au.client%2F2210734&rnd=42928005458273155
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9703807179229735
+/ably?clientId=production_au.client%2F3076442&rnd=07232659149545007
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=4288683411814509
+/ably?clientId=production_au.client%2F2689116&rnd=18420429854735176
+/ably?clientId=production_au.client%2F3340259&rnd=6147588562283185
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=6571565561219883
+/okcomputer
+/ably?rnd=2583198974098342
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=09343125625301418
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8973827521537556
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9884447115183548
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F193566&rnd=12378449000254865
+/ably?clientId=production_au.client%2F3352931&rnd=3084957712159708
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=2224701402125382
+/ably?clientId=production_au.client%2F2210734&rnd=7450901166232102
+/okcomputer
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F1266277&rnd=8651917960643889
+/ably?clientId=production_au.client%2F2689116&rnd=89569315220972
+/ably?clientId=production_au.client%2F2689116&rnd=5492135193104406
+/ably?clientId=production_au.client%2F3340259&rnd=6891414486092886
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=8678611110084673
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=6502944117261253
+/ably?rnd=864821993850303
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=04301168445420522
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4446447800163511
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=48040727810197925
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7630478410265094
+/okcomputer
+/ably?rnd=7850880110602605
+/pt/ably?clientId=production_au.provider%2F540919&rnd=48585024117397957
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/ably?clientId=production_au.client%2F2210734&rnd=06855127046040455
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=30478929707054836
+/ably?clientId=production_au.client%2F2689116&rnd=7974186343352794
+/ably?clientId=production_au.client%2F3352931&rnd=3715725174417752
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/okcomputer
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=46256629212540457
+/ably?clientId=production_au.client%2F2359097&rnd=25347980059764285
+/home-exercise-video/plank
+/ably?rnd=2856592668506315
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3028800546827284
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8728546294678454
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=156606328744473
+/pt/ably?clientId=production_au.provider%2F193566&rnd=98422933712026
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7765002856576322
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=8914873979716385
+/ably?clientId=production_au.client%2F2689116&rnd=836223952421322
+/ably?clientId=production_au.client%2F2689116&rnd=3331202337339296
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/ably?clientId=production_au.client%2F3340259&rnd=15162986652150878
+/okcomputer
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=8222342430842724
+/ably?rnd=6648551541453414
+/ably?clientId=production_au.client%2F2359097&rnd=684442242060465
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8187019814261314
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=24194686502378615
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=22234041980262842
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7509880600913086
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7730392844872502
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=3343720882178559
+/ably?clientId=production_au.client%2F2210734&rnd=6593570017663068
+/ably?clientId=production_au.client%2F2689116&rnd=5140729545702662
+/ably?clientId=production_au.client%2F2689116&rnd=8848688873479382
+/okcomputer
+/okcomputer
+/ably?access_code=inxqqbxb&clientId=production_au.client/3393759&capability=
+/home-exercise-video/plank
+/ably?rnd=8854895226629769
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=40735131482256826
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6064568133126471
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=32479704903221407
+/ably?clientId=production_au.client%2F2359097&rnd=13088916218916635
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=04699292310714287
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=5410629451480045
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5453745671793133
+/ably?clientId=production_au.client%2F2536387&rnd=7864899497791809
+/ably?clientId=production_au.client%2F2536387&rnd=7173298324952603
+/okcomputer/all
+/ably?clientId=production_au.client%2F2689116&rnd=8269311433420921
+/ably?clientId=production_au.client%2F2689116&rnd=44428929661335514
+/ably?clientId=production_au.client%2F2210734&rnd=7281058081318774
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=9899329228034693
+/ably?clientId=production_au.client%2F2531726&rnd=732181132187977
+/okcomputer
+/ably?rnd=7339282627407739
+/api/patient/nuzeuniu/video_calls/channel
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=12114803639987692
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9809851803008531
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=26933729075102786
+/api/patient/nuzeuniu/device_registration/ios
+/api/patient/nuzeuniu/messages?birthYear=1977
+/ably?clientId=production_au.client/2805789&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538329375.981636&access_code=nuzeuniu&format=msgpack
+/api/patient/nuzeuniu/messages?birthYear=1977
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=028991386472247304
+/api/patient/nuzeuniu/program?birthYear=1977
+/api/patient/nuzeuniu/settings
+/api/patient/nuzeuniu/program?birthYear=1977
+/pt/ably?clientId=production_au.provider%2F193566&rnd=10522139785135054
+/api/patient/nuzeuniu/settings
+/api/patient/nuzeuniu/exercises/393350331/complete
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=5764752391356482
+/pt/ably?clientId=production_au.provider%2F540919&rnd=02572616796187499
+/api/patient/nuzeuniu/exercises/393350332/complete
+/
+/login
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/ably?clientId=production_au.client%2F3352931&rnd=17816588007183554
+/ably?clientId=production_au.client%2F2689116&rnd=16690047219320503
+/ably?clientId=production_au.client%2F2689116&rnd=49735961038696685
+/okcomputer
+/api/patient/nuzeuniu/exercises/393350333/complete
+/ably?clientId=production_au.client%2F2210734&rnd=16190711803925195
+/ably?clientId=production_au.client/2805789&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538329391.694518&access_code=nuzeuniu&format=msgpack
+/api/patient/yxpsncnf/device_registration/ios
+/api/patient/yxpsncnf/video_calls/channel
+/ably?clientId=production_au.client/2474213&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538329392.953584&access_code=yxpsncnf&format=msgpack
+/api/patient/yxpsncnf/program
+/api/patient/yxpsncnf/program
+/api/patient/yxpsncnf/settings
+/api/patient/yxpsncnf/settings
+/okcomputer
+/api/patient/nuzeuniu/exercises/393350334/complete
+/home-exercise-video/plank
+/ably?rnd=9094156804909366
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=15286699073853005
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6605027770868905
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=10423842686865759
+/okcomputer
+/ably?clientId=production_au.client/2805789&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538329408.367165&access_code=nuzeuniu&format=msgpack
+/ably?clientId=production_au.client%2F2359097&rnd=7548141844302871
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5560614469209222
+/okcomputer
+/okcomputer/all
+/api/patient/nuzeuniu/exercises/393595012/complete
+/pt/ably?clientId=production_au.provider%2F540919&rnd=003979506014704537
+/ably?clientId=production_au.client%2F2689116&rnd=897761439283888
+/ably?clientId=production_au.client%2F2689116&rnd=35202876574255604
+/ably?capability=&clientId=production_au.client/2925116&access_code=ugzjsqzm
+/okcomputer
+/ably?access_code=kfwzstsx&clientId=production_au.client/1944694&capability=
+/ably?clientId=production_au.client%2F2210734&rnd=9321616290708026
+/ably?clientId=production_au.client%2F3340259&rnd=6099661960026939
+/ably?clientId=production_au.client%2F3076442&rnd=9238700816663817
+/ably?access_code=ychuueux&clientId=production_au.client/2871110&capability=
+/okcomputer
+/api/patient/nuzeuniu/exercises/393595180/complete
+/ably?clientId=production_au.client%2F3352931&rnd=26984893828105516
+/api/patient/nuzeuniu/exercises/393350335/complete
+/ably?access_code=npucmocp&clientId=production_au.client/3172671&capability=
+/okcomputer
+/ably?rnd=33413304326457927
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=09929106557886413
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=21783726970947637
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8222024261764369
+/ably?capability=&clientId=production_au.client/2952021&access_code=kujyzwvh
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3477315154913332
+/ably?clientId=production_au.client%2F2359097&rnd=10619044786803067
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=39669652606642725
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=35288261850890135
+/ably?clientId=production_au.client%2F2689116&rnd=8178988206484192
+/ably?clientId=production_au.client%2F2210734&rnd=13018195871428873
+/ably?clientId=production_au.client%2F3076442&rnd=4369229102731411
+/okcomputer
+/home-exercise-video/plank
+/ably?capability=&clientId=production_au.client/3401227&access_code=xsyghvis
+/okcomputer
+/ably?rnd=3066604013305101
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=49697638720608905
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=27040252837050094
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=30503227168986524
+/pt/ably?clientId=production_au.provider%2F193566&rnd=19059197731172017
+/ably?clientId=production_au.client%2F2359097&rnd=5535588366216069
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F3352931&rnd=004597442895931225
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8436731512347706
+/ably?clientId=production_au.client%2F3340259&rnd=8864923351925927
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7714572630053209
+/ably?clientId=production_au.client%2F2689116&rnd=873496390909142
+/ably?clientId=production_au.client%2F2210734&rnd=6676370526598441
+/ably?clientId=production_au.client%2F3076442&rnd=571778433727368
+/okcomputer
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9554733414633234
+/ably?rnd=007940291571867819
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7839676586693074
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7559838009945938
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5527931038444922
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=3995469720780809
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7923098965156379
+/access/qkhdiwze
+/setup/edit
+/okcomputer
+/assets/physi_app/application-770b45c181c82e20e487a68d25323725ff5dd47e181cd436b47696a40b53d3ee.js
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/physi-app-bundle-794e53a95ad7106fd112.js
+/assets/physi_app-f4dcc2a09b421eecdac78b0b866460b1e83a484d17ad50d9a86b5fd403b5e0d9.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/ably?clientId=production_au.client%2F2689116&rnd=16611583449620415
+/ably?clientId=production_au.client%2F2689116&rnd=8086594505163831
+/assets/OpenSans-ExtraBold-webfont-9d6d9afa559775e6cbec5f6d555906d9dcc2e8bfb846506aa75687acee9ed769.woff
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=31892809422700585
+/home-exercise-video/plank
+/ably?capability=&clientId=production_au.client/2857936&access_code=niafqbmo
+/okcomputer
+/ably?rnd=2521377142490213
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=058884779941144716
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5190671012060988
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=503458138219997
+/assets/safari_transition_remover-a6d0617a9d4051a37307dba93b015cc09badf37827cf46acf772463b6f245aa8.css
+/pt/ably?clientId=production_au.provider%2F193566&rnd=10696932754208444
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2359097&rnd=9476552168181613
+/ably?clientId=production_au.client%2F3076442&rnd=011645590879383105
+/ably?clientId=production_au.client%2F3340259&rnd=7092271159086911
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3888343812064208
+/pt/ably?clientId=production_au.provider%2F336073&rnd=18028075808741584
+/okcomputer
+/setup
+/
+/ably?clientId=production_au.client%2F2689116&rnd=1856025472405789
+/ably?clientId=production_au.client%2F2689116&rnd=5961490343882376
+/program?redirected=
+/assets/physi_app/icon-sign-out-b86102255bdfae079e06acb805fafef08f4a8c53576c00950084411b5ff35396.svg
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=438076120453212
+/ably?rnd=7728358511812985
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=7446353388451785
+/ably?rnd=860577388207765
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=10139210671092602
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=1645736201074497
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=26109298177750695
+/ably?access_code=ewbvkdqq&clientId=production_au.client/2825605&capability=
+/pt/ably?clientId=production_au.provider%2F193566&rnd=024166885158443785
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=48898687966861964
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9451682979564471
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6190446746568359
+/ably?clientId=production_au.client%2F2689116&rnd=27801981301739165
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=6915959413241337
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2210734&rnd=8547373171261767
+/ably?access_code=uakpvadi&clientId=production_au.client/3383587&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=8988787650685657
+/pt/ably?clientId=production_au.provider%2F336073&rnd=6169413161320009
+/ably?rnd=9380577999264843
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7005270883573702
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=615175771774293
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5280057942332335
+/ably?clientId=production_au.client%2F3352931&rnd=9985325637338982
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=1541596345405789
+/okcomputer/all
+/ably?clientId=production_au.client%2F2359097&rnd=6489669279081998
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9249130921909121
+/access/physiapp/xbmbvdic
+/ably?clientId=production_au.client%2F2689116&rnd=7091471675301544
+/ably?clientId=production_au.client%2F2689116&rnd=9877571813681214
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=851422064909423
+/ably?rnd=25043211423813005
+/ably?clientId=production_au.client%2F2210734&rnd=03140301898406661
+/okcomputer
+/ably?rnd=7144028694585949
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4991386952922918
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=625864833260384
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8055889827406835
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9755523056678748
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=9158267563739146
+/pt/ably?clientId=production_au.provider%2F540919&rnd=02015303563041604
+/ably?capability=&clientId=production_au.client/2718200&access_code=fgqbviis
+/ably?clientId=production_au.client%2F3352931&rnd=11327971673482473
+/ably?clientId=production_au.client%2F2689116&rnd=6381010696870106
+/ably?capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538329636.587810&access_code&format=msgpack
+/ably?clientId=production_au.client%2F2689116&rnd=2566349129712191
+/api/patient/xbmbvdic/program
+/api/patient/xbmbvdic/program
+/ably?clientId=production_au.client%2F3395517&rnd=18149097461704988
+/okcomputer
+/api/patient/xbmbvdic/settings
+/home-exercise-video/plank
+/ably?capability=&clientId=production_au.client/3401227&access_code=xsyghvis
+/ably?clientId=production_au.client%2F3395517&rnd=6944483743708467
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=22344741431548854
+/ably?access_code=kbdaqedf&clientId=production_au.client/3254210&capability=
+/api/physiapp/intake/settings
+/ably?clientId=production_au.client%2F3340259&rnd=45359772706067136
+/ably?rnd=5353142305803527
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3249514263889204
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=18214764010249906
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=03387723414875632
+/ably?clientId=production_au.client%2F3076442&rnd=39665012682895995
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6644741506872098
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=1071132446447518
+/ably?clientId=production_au.client%2F2359097&rnd=19638343262967317
+/ably?clientId=production_au.client%2F2689116&rnd=44292246291324844
+/ably?clientId=production_au.client%2F2689116&rnd=9027091454616387
+/okcomputer
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=48999895488186085
+/okcomputer
+/ably?rnd=8845155175127339
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4861869685811835
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4598371844845235
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=02444476358006642
+/pt/ably?clientId=production_au.provider%2F193566&rnd=2717170024743929
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=02274621188405246
+/ably?clientId=production_au.client%2F2359097&rnd=1836545709145001
+/ably?clientId=production_au.client%2F2689116&rnd=6896032243522265
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=029477161643554073
+/home-exercise-video/plank
+/ably?clientId=production_au.client/2474213&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538329706.017600&access_code=yxpsncnf&format=msgpack
+/okcomputer
+/api/patient/yxpsncnf/program
+/api/patient/yxpsncnf/settings
+/ably?clientId=production_au.client%2F2210734&rnd=022756236557568865
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F3340259&rnd=9233409041347692
+/ably?rnd=5129157251696321
+/ably?rnd=3635103690199446
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2923032182310603
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5154138310612322
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6649042734902642
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9528801874476642
+/api/patient/xbmbvdic/client
+/api/patient/xbmbvdic/device_registration/ios
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=793126664501751
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6588763824940305
+/ably?clientId=production_au.client%2F2359097&rnd=10996360322922527
+/ably?clientId=production_au.client/2474213&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538329728.995467&access_code=yxpsncnf&format=msgpack
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=9099528471027523
+/ably?clientId=production_au.client%2F2689116&rnd=12992739684473942
+/api/patient/yxpsncnf/program
+/api/patient/yxpsncnf/settings
+/okcomputer
+/exercises
+/anonymous_session
+/ably?access_code=ivtbeiqg&clientId=production_au.client/2055880&capability=
+/ably?access_code=ivtbeiqg&clientId=production_au.client/2055880&capability=
+/ably?clientId=production_au.client%2F2210734&rnd=6302575882551917
+/disabled_cookies
+/okcomputer
+/ably?rnd=49671587060865785
+/ably?rnd=5948796994129419
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=06753039010929007
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5558671630557088
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9026221376874453
+/pt/ably?clientId=production_au.provider%2F193566&rnd=21013872454452653
+/ably?capability=&clientId=production_au.client/3417095&access_code=opozhukh
+/api/patient/yxpsncnf/program
+/api/patient/yxpsncnf/settings
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4745088924591514
+/ably?clientId=production_au.client%2F3396019&rnd=19748335087380053
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=9511280364868371
+/ably?clientId=production_au.client%2F2689116&rnd=4228592291747053
+/ably?clientId=production_au.client%2F2359097&rnd=6264186046943587
+/
+/login
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/home-exercise-video/plank
+/ably?clientId=production_au.client/2474213&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538329762.979784&access_code=yxpsncnf&format=msgpack
+/ably?clientId=production_au.client%2F3340259&rnd=9197233110973919
+/api/patient/yxpsncnf/program
+/api/patient/yxpsncnf/settings
+/login
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/okcomputer
+/assets/pt_favicon-5940ce65a8c70c0cdcc4d4fa267e17904d81547ab8e00749cbaf910a98b65074.png
+/ably?clientId=production_au.client%2F3352931&rnd=45413610768061274
+/users/sign_in
+/exercises
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/themes/0/categories.json
+/exercises.json?page=1
+/api/patient/yxpsncnf/messages?birthYear=1970
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=7434588847944226
+/ably?capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538329774.751762&access_code&format=msgpack
+/api/patient/xbmbvdic/program
+/ably?rnd=3679245570010774
+/api/patient/xbmbvdic/settings
+/ably?rnd=31885397003526417
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=14121476514888043
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7697533978811624
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5709137138639271
+/pt/ably?clientId=production_au.provider%2F193566&rnd=24224388547684006
+/okcomputer
+/ably?capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538329782.790295&access_code&format=msgpack
+/api/patient/xbmbvdic/program
+/api/patient/xbmbvdic/settings
+/ably?capability=&clientId=production_au.client/2793272&access_code=jdvbhgnd
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4498104188225778
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=26920386927637274
+/ably?clientId=production_au.client%2F2689116&rnd=41019316089956037
+/ably?clientId=production_au.client%2F2359097&rnd=20106596120881281
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=03345445786647949
+/ably?capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538329799.667211&access_code&format=msgpack
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=4687686743341868
+/ably?rnd=7414847769734159
+/ably?rnd=565252323953223
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8526623296195188
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8325605260998228
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=995123245925841
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3017430559999479
+/api/patient/xbmbvdic/video_calls/channel
+/okcomputer
+/ably?clientId=production_au.client/3417285&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538329811.285473&access_code=xbmbvdic&format=msgpack
+/pt/ably?clientId=production_au.provider%2F540919&rnd=08425138220206363
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2689116&rnd=08226728965979913
+/ably?clientId=production_au.client%2F2689116&rnd=32135419171934076
+/ably?clientId=production_au.client%2F2359097&rnd=5397326032119656
+/ably?clientId=production_au.client%2F3340259&rnd=9222606474581178
+/okcomputer
+/okcomputer
+/okcomputer/all
+/ably?rnd=6441840170148743
+/ably?clientId=production_au.client%2F2210734&rnd=016614295491297337
+/ably?rnd=37120388757273526
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6933685899070972
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4232011340180628
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6577565200914934
+/pt/ably?clientId=production_au.provider%2F193566&rnd=1775512528622556
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=9470978531795409
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8638868017499544
+/pt/ably?clientId=production_au.provider%2F5533&rnd=6720019733711922
+/ably?clientId=production_au.client%2F2689116&rnd=9707051560821678
+/ably?clientId=production_au.client%2F2689116&rnd=9313045728502083
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=7936866745853013
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F138244&rnd=9597391029232654
+/ably?rnd=5550803428163018
+/ably?rnd=9912715051355112
+/ably?clientId=production_au.client%2F2210734&rnd=14077096594120064
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=49152887426290426
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=1516545517531136
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=24107818486976895
+/pt/ably?clientId=production_au.provider%2F193566&rnd=294694354207939
+/okcomputer
+/ably?clientId=production_au.client/2474213&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538329871.739527&access_code=yxpsncnf&format=msgpack
+/api/patient/yxpsncnf/program
+/api/patient/yxpsncnf/settings
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=43684587946957687
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2689116&rnd=39595479018521273
+/ably?clientId=production_au.client%2F2689116&rnd=895560113919303
+/ably?access_code=ufamviba&clientId=production_au.client/2963883&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=3927288666049653
+/ably?clientId=production_au.client%2F3340259&rnd=6397643071054515
+/
+/login
+/servers
+/ably?clientId=production_au.client%2F2359097&rnd=4982383495263243
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/api/patient/yxpsncnf/program
+/api/patient/yxpsncnf/settings
+/okcomputer
+/okcomputer/all
+/ably?rnd=014365272601402745
+/okcomputer
+/ably?rnd=051811642213160924
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7635980184267492
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=58904820776463
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=533140571350875
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7292029013122268
+/ably?access_code=rbaqbbfz&clientId=production_au.client/2858296&capability=
+/ably?access_code=rbaqbbfz&clientId=production_au.client/2858296&capability=
+/ably?access_code=rbaqbbfz&clientId=production_au.client/2858296&capability=
+/ably?clientId=production_au.client%2F2210734&rnd=2696750952865259
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7640484507341292
+/ably?clientId=production_au.client%2F2689116&rnd=40033233348087505
+/ably?clientId=production_au.client%2F2689116&rnd=600598528125386
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=3288026586034132
+/okcomputer
+/ably?rnd=27271439999787495
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=9236010869200479
+/ably?rnd=22557316357373347
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=022224657186257657
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=44298769107014446
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8579925844252028
+/pt/ably?clientId=production_au.provider%2F193566&rnd=06368286438044457
+/ably?clientId=production_au.client%2F2210734&rnd=3072869560342102
+/okcomputer
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3674076744736585
+/ably?clientId=production_au.client%2F2689116&rnd=44812921371401515
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=11299307875522957
+/ably?clientId=production_au.client%2F3340259&rnd=7981088350838632
+/ably?clientId=production_au.client%2F2359097&rnd=008860047295024653
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client/3417285&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538329954.950593&access_code=xbmbvdic&format=msgpack
+/ably?capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538329954.927250&access_code&format=msgpack
+/api/patient/xbmbvdic/program
+/okcomputer
+/ably?rnd=3254853402782947
+/ably?rnd=344458006947465
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=1846338812218189
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=47838774344934953
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9283033754038936
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8617946577921685
+/ably?clientId=production_au.client%2F2210734&rnd=7231584398973994
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9010733926357977
+/ably?clientId=production_au.client%2F2689116&rnd=05520272130283832
+/ably?clientId=production_au.client%2F3352931&rnd=11666135613572282
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=052386944554715154
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=06561021301612424
+/ably?access_code=oteuienk&clientId=production_au.client/3344713&capability=
+/okcomputer
+/home-exercise-video/resisted-hip-lateral-rotation-in-side-lying-%28clam%29
+/ably?rnd=6316766174237789
+/ably?rnd=5239255018645435
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=1350852194464407
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5609207786097656
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7952032419573867
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4855299507958637
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/ably?clientId=production_au.client%2F2210734&rnd=41400074969763834
+/okcomputer
+/home-exercise-video/plank
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/pt/ably?clientId=production_au.provider%2F540919&rnd=25920262694608875
+/ably?clientId=production_au.client%2F2689116&rnd=6245952796020429
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=8855854378220442
+/ably?clientId=production_au.client%2F3340259&rnd=1724257995693217
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2359097&rnd=476967614504606
+/okcomputer
+/ably?capability=&clientId=production_au.client/3265618&access_code=xdxvqsvf
+/ably?rnd=13299358825373075
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8904860128237575
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7526180995524026
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5789647690179138
+/ably?rnd=9124090254207691
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4000500133944973
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=8047264659325206
+/pt/ably?clientId=production_au.provider%2F540919&rnd=33878944873618955
+/ably?clientId=production_au.client%2F2689116&rnd=29152399705633947
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=9697724747600021
+/ably?access_code=ecvwjhwt&clientId=production_au.client/1413979&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=1351735055948906
+/okcomputer
+/ably?rnd=7557760599010248
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9598182413385619
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3038720821831964
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=13579595857650517
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=1157724278995027
+/ably?capability=&clientId=production_au.client/3401227&access_code=xsyghvis
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2210734&rnd=4566685015377614
+/ably?clientId=production_au.client%2F3352931&rnd=3325258299097267
+/ably?clientId=production_au.client%2F3340259&rnd=9563195502806774
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=558287674873235
+/ably?clientId=production_au.client%2F2689116&rnd=334471202727465
+/ably?clientId=production_au.client%2F2689116&rnd=43703683734373633
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2359097&rnd=05696380918427146
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=1892244076631293
+/ably?rnd=8760842360199732
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6734823476809255
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3853914941162251
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=516600705780369
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=1995363551509688
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=5620402678101581
+/pt/ably?clientId=production_au.provider%2F540919&rnd=38002345826416417
+/ably?clientId=production_au.client%2F2689116&rnd=8823631660193254
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=5089901023320191
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=25024575874009524
+/ably?rnd=9850752218375018
+/pt/ably?clientId=production_au.provider%2F193566&rnd=049238748355247886
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9352891711304399
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=893181119352688
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5114240977555042
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3340259&rnd=2144266476074066
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=4272081472889322
+/ably?access_code=ufamviba&clientId=production_au.client/2963883&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=3000180791308005
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4801967848929891
+/ably?clientId=production_au.client%2F2689116&rnd=814018353184901
+/okcomputer
+/okcomputer/all
+/ably?capability=&clientId=production_au.client/2925116&access_code=ugzjsqzm
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=6220718658443185
+/ably?clientId=production_au.client%2F3352931&rnd=7043092888904827
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8411340607107969
+/ably?rnd=6975697826618905
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=679088679324539
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=86626942347795
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=45545620692790845
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=20953559483479278
+/ably?clientId=production_au.client%2F2689116&rnd=4557470997085151
+/pt/ably?clientId=production_au.provider%2F540919&rnd=43870479981407806
+/ably?clientId=production_au.client%2F2689116&rnd=3372537604870953
+/okcomputer
+/ably?capability=&clientId=production_au.client/2820288&access_code=cxyyvhty
+/ably?capability=&clientId=production_au.client/2820288&access_code=cxyyvhty
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=5558750949820188
+/ably?access_code=oteuienk&clientId=production_au.client/3344713&capability=
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=790184140362538
+/ably?rnd=6751287022055716
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6698051975419439
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=1335233658220949
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7946401901128368
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=11584467778755458
+/ably?clientId=production_au.client%2F2689116&rnd=4080704132673656
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4665841461557221
+/ably?clientId=production_au.client%2F2210734&rnd=7998118384447683
+/ably?clientId=production_au.client%2F3396068&rnd=9952411024142037
+/ably?clientId=production_au.client%2F2689116&rnd=6286817001527776
+/okcomputer
+/okcomputer/all
+/okcomputer
+/ably?rnd=992415275914506
+/ably?clientId=production_au.client%2F2359097&rnd=7988100800559137
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6077999366329356
+/ably?rnd=46901220663283416
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=985959508109447
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8280118100928258
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=825137964223444
+/okcomputer
+/ably?access_code=iudhcxav&clientId=production_au.client/2868206&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=08135615040690292
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6209993922843622
+/ably?clientId=production_au.client%2F2210734&rnd=08425706662340793
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7152049897717137
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/okcomputer
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/ably?clientId=production_au.client%2F3352931&rnd=5409984723896579
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=8983335115780793
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5489583276212497
+/ably?rnd=4272559138266687
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8638395789447082
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8474567854194786
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9520700417895174
+/messages
+/okcomputer
+/sign_in
+/ably?clientId=production_au.client%2F3340259&rnd=054542121519001174
+/ably?clientId=production_au.client%2F2689116&rnd=964523349502088
+/pt/ably?clientId=production_au.provider%2F540919&rnd=05766952994382368
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=8099904653452656
+/ably?clientId=production_au.client%2F2689116&rnd=33849170675138396
+/okcomputer
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=9560705738153192
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4930202393776342
+/ably?rnd=572584465701869
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=336992787844143
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7728752774312806
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3985796403202413
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=7389684830150782
+/ably?clientId=production_au.client%2F2689116&rnd=19033545330947654
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9273753775819102
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=4398676086126223
+/ably?clientId=production_au.client%2F2210734&rnd=06296518742891322
+/okcomputer
+/okcomputer
+/home-exercise-video/plank
+/ably?capability=&clientId=production_au.client/2064122&access_code=rvuneoop
+/pt/ably?clientId=production_au.provider%2F193566&rnd=1475508125005962
+/ably?rnd=9994665590833509
+/ably?clientId=production_au.client%2F2359097&rnd=7625399513126672
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=32536442694389045
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6602531224275039
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9342358795485315
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=588942080591693
+/ably?capability=&clientId=production_au.client/2952021&access_code=kujyzwvh
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2689116&rnd=035790448108836914
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5284554207761085
+/ably?clientId=production_au.client%2F2689116&rnd=024791621885381865
+/ably?clientId=production_au.client%2F2210734&rnd=6349434358271693
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=5556659208752486
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6286901244748742
+/ably?rnd=8946273946245129
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9125525486995838
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=038841426719974814
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=37500896969230735
+/ably?clientId=production_au.client%2F2359097&rnd=08374975242318605
+/okcomputer
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=4587343463089004
+/pt/ably?clientId=production_au.provider%2F540919&rnd=33191290135228746
+/ably?clientId=production_au.client%2F2689116&rnd=9026040652477261
+/ably?clientId=production_au.client%2F2210734&rnd=5887812368174925
+/okcomputer
+/okcomputer
+/exercise_programs
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/home-exercise-video/plank
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/ably?clientId=production_au.client%2F3340259&rnd=03844937903462975
+/login
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/pt/ably?clientId=production_au.provider%2F193566&rnd=015011485007449865
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/assets/OpenSans-Regular-webfont-7d161ab06fa3d662498d87f84e612acda5b78887d586d030357be22d4ae9afc7.woff
+/ably?rnd=5165989831368041
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7876091478003189
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=11577318728672248
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8004193400185378
+/users/sign_in
+/exercises
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/ably?clientId=production_au.client%2F2359097&rnd=10825958022419768
+/themes.json
+/assets/pt_favicon-5940ce65a8c70c0cdcc4d4fa267e17904d81547ab8e00749cbaf910a98b65074.png
+/themes/0/categories.json
+/exercises.json?page=1
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2689116&rnd=2038914134469676
+/exercise_programs?utf8=%E2%9C%93&page=1&pt_exercise_programs_search%5Bquery%5D=&pt_exercise_programs_search%5Bfilters%5D%5Btheme_ids%5D=&pt_exercise_programs_search%5Bfilters%5D%5Bregion_ids%5D%5B%5D=&pt_exercise_programs_search%5Bfilters%5D%5Bregion_ids%5D%5B%5D=&pt_exercise_programs_search%5Bfilters%5D%5Bregion_ids%5D%5B%5D=
+/pt/ably?clientId=production_au.provider%2F540919&rnd=991008182814791
+/ably?clientId=production_au.client%2F2689116&rnd=5392649951571964
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F1777249&rnd=7796355516561543
+/ably?clientId=production_au.client%2F2210734&rnd=30096612594524474
+/okcomputer
+/ably?rnd=41549285455198315
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8840071571473742
+/okcomputer
+/ably?rnd=16283923872777595
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8018800737754435
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=0559271758988511
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4233898280307571
+/ably?clientId=production_au.client%2F2359097&rnd=870842253037867
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=07177717563546948
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8534120098798379
+/ably?clientId=production_au.client%2F2689116&rnd=8090387372614265
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=7826679878201459
+/ably?clientId=production_au.client%2F2210734&rnd=6223604257640274
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3340259&rnd=20136298783414974
+/okcomputer
+/ably?capability=&clientId=production_au.client/2793272&access_code=jdvbhgnd
+/pt/ably?clientId=production_au.provider%2F193566&rnd=27989672436764845
+/ably?rnd=22165320577564152
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6532393506481977
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=03030392604612553
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9189362502538898
+/ably?clientId=production_au.client%2F2359097&rnd=34699485678589514
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F2952572&rnd=11822509959531024
+/ably?capability=&clientId=production_au.client/2807746&access_code=jbpixdez
+/ably?capability=&clientId=production_au.client/2807746&access_code=jbpixdez
+/ably?clientId=production_au.client%2F2689116&rnd=988015189193532
+/pt/ably?clientId=production_au.provider%2F540919&rnd=016567233780602653
+/ably?clientId=production_au.client%2F2689116&rnd=5471010469341697
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=7412329469700754
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=49734636860816583
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5971678902469857
+/ably?rnd=14968506553197192
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2453805425276434
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5606266740222638
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=26987909021508405
+/ably?capability=&clientId=production_au.client/3400764&access_code=vvctmjru
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=2708369708085936
+/ably?clientId=production_au.client%2F2689116&rnd=4350597200640933
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6363576024600248
+/ably?clientId=production_au.client%2F2689116&rnd=06195328284167556
+/okcomputer
+/api/patient/axhrzyjp/video_calls/channel
+/api/patient/axhrzyjp/program
+/api/patient/axhrzyjp/program
+/api/patient/axhrzyjp/settings
+/api/patient/axhrzyjp/settings
+/ably?clientId=production_au.client/3338846&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538330473.764836&access_code=axhrzyjp&format=msgpack
+/api/patient/axhrzyjp/device_registration/ios
+/ably?clientId=production_au.client%2F2210734&rnd=7847210356434469
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3340259&rnd=4325989789393121
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5295983206795998
+/ably?rnd=9298861022726752
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5787613665193811
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9068801301127036
+/ably?clientId=production_au.client/3338846&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538330490.958134&access_code=axhrzyjp&format=msgpack
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4889061010214444
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2359097&rnd=5835044969066949
+/ably?clientId=production_au.client%2F2689116&rnd=3398795389718823
+/pt/ably?clientId=production_au.provider%2F540919&rnd=44562290154157225
+/ably?clientId=production_au.client%2F3352931&rnd=49848952514707245
+/ably?clientId=production_au.client%2F2689116&rnd=45473375077827916
+/okcomputer
+/ably?clientId=production_au.client/3338846&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538330506.750390&access_code=axhrzyjp&format=msgpack
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=13416981294284724
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5188397669917808
+/ably?rnd=16208629481997483
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9397204294597459
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7731471211294074
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=116749281436348
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=011629576320637324
+/ably?clientId=production_au.client%2F2689116&rnd=5133513971204511
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3762324065415015
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=3127361454519457
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2210734&rnd=43869911528897343
+/pt/ably?clientId=production_au.provider%2F1222721&rnd=815175964221883
+/ably?clientId=production_au.client%2F3340259&rnd=3978066410509785
+/okcomputer
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7426771224577824
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?rnd=11584268484259175
+/ably?capability=&clientId=production_au.client/3172519&access_code=mwwmhznf
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5226478476415795
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=26102432318281776
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=29648843888618726
+/okcomputer
+/okcomputer/all
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?clientId=production_au.client%2F2359097&rnd=9835143861831694
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=16870355676044446
+/pt/ably?clientId=production_au.provider%2F540919&rnd=33619193422813876
+/ably?clientId=production_au.client%2F2689116&rnd=5718334649437917
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=4831074106080726
+/okcomputer
+/api/patient/cawmidhw/exercises/415017605/complete
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3648938978771661
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?rnd=3319379526688886
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6764618391019612
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6829645527082064
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6980664854556864
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=010291572243454228
+/okcomputer
+/ably?capability=&clientId=production_au.client/2857936&access_code=niafqbmo
+/ably?clientId=production_au.client%2F2359097&rnd=1822681477459711
+/ably?clientId=production_au.client%2F2689116&rnd=8558034656439077
+/ably?clientId=production_au.client%2F2689116&rnd=02986773813700605
+/pt/ably?clientId=production_au.provider%2F540919&rnd=35280983056305937
+/okcomputer
+/home-exercise-video/plank
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?clientId=production_au.client%2F2210734&rnd=2881040313518999
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=6469541609626097
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7889922891719843
+/okcomputer
+/ably?rnd=9988329685141035
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=308030975182751
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=813422836197359
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6375012676337708
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=8790235880872033
+/ably?clientId=production_au.client%2F2689116&rnd=9516934772501779
+/ably?clientId=production_au.client%2F2359097&rnd=8717514068279719
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4703537772524409
+/ably?clientId=production_au.client/3417285&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538330625.148933&access_code=xbmbvdic&format=msgpack
+/api/patient/xbmbvdic/settings
+/api/patient/xbmbvdic/program
+/ably?clientId=production_au.client%2F3397578&rnd=8101521449689694
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=3393630742154341
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=2906318309269691
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7508901439045774
+/okcomputer
+/ably?rnd=972885695738398
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=47644107133527
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=776962919679705
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=695786506869237
+/ably?clientId=production_au.client%2F3399110&rnd=8072470030597134
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=23482961361082033
+/ably?clientId=production_au.client%2F2689116&rnd=5532004289857717
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8853481120864664
+/ably?clientId=production_au.client%2F2359097&rnd=5163913263399749
+/okcomputer
+/home-exercise-video/plank
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/api/patient/cawmidhw/messages?birth_year=1970
+/ably?clientId=production_au.client%2F3397578&rnd=5084085460772884
+/ably?clientId=production_au.client%2F3340259&rnd=222276607068558
+/okcomputer
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?clientId=production_au.client%2F2210734&rnd=33031599029914815
+/ably?clientId=production_au.client%2F3352931&rnd=09274028748911212
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/pt/ably?clientId=production_au.provider%2F193566&rnd=02148198207466767
+/okcomputer/all
+/okcomputer
+/ably?rnd=6074844161039668
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=27657095240498464
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=19362640039280832
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=2744272526523277
+/okcomputer
+/ably?access_code=oteuienk&clientId=production_au.client/3344713&capability=
+/ably?access_code=oteuienk&clientId=production_au.client/3344713&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=8528337259756098
+/ably?clientId=production_au.client%2F2689116&rnd=33760579875227625
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8791632120351958
+/ably?clientId=production_au.client%2F2359097&rnd=8068285765825622
+/okcomputer
+/ably?rnd=27626649260258906
+/ably?access_code=bnuimedh&clientId=production_au.client/2621338&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=6530619388924257
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7727069759386493
+/pt/ably?clientId=production_au.provider%2F362142&rnd=41216590490122895
+/ably?rnd=20385189191117536
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9489127937351072
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7862361009021539
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6082537131942651
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=5532574566148281
+/ably?clientId=production_au.client%2F2689116&rnd=21499090710516322
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9291625999599562
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=2311399184680556
+/home-exercise-video/plank
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?clientId=production_au.client%2F3340259&rnd=014189936773955414
+/okcomputer
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=5036439546863485
+/pt/ably?clientId=production_au.provider%2F193566&rnd=16731557732449254
+/ably?rnd=9920424699890027
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=13045153504261897
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8069358909505966
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9877428944962741
+/okcomputer
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?clientId=production_au.client%2F2689116&rnd=1551616687068338
+/ably?clientId=production_au.client%2F2689116&rnd=11141457512666042
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/pt/ably?clientId=production_au.provider%2F540919&rnd=03297304074298024
+/okcomputer
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/api/patient/axovwcuz/video_calls/channel
+/ably?clientId=production_au.client%2F2359097&rnd=7658998036109159
+/ably?clientId=production_au.client/2035899&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538330753.196822&access_code=axovwcuz&format=msgpack
+/api/patient/axovwcuz/device_registration/ios
+/api/patient/axovwcuz/program
+/api/patient/axovwcuz/program
+/api/patient/axovwcuz/settings
+/api/patient/axovwcuz/settings
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=05290310941641829
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6314044564917949
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?clientId=production_au.client%2F2210734&rnd=25232334137134305
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?rnd=10920258863309762
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=28369806886394056
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=26785486792651914
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=024829684330175184
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=8385135227372089
+/ably?clientId=production_au.client%2F2689116&rnd=2905713789081832
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7523247366560912
+/home-exercise-video/plank
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?clientId=production_au.client%2F2359097&rnd=43896277929057015
+/ably?clientId=production_au.client%2F3340259&rnd=12482607372724874
+/okcomputer
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?clientId=production_au.client%2F3293671&rnd=7639852892815813
+/okcomputer/all
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9216637110883905
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?clientId=production_au.client%2F2210734&rnd=9299849038392032
+/ably?rnd=3989096614030989
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8853660615517003
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8801993830239849
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8762694561865243
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=6292698059558273
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?capability=&clientId=production_au.client/3395416&access_code=cawyxera
+/ably?capability=&clientId=production_au.client/2035475&access_code=kjkcxirk
+/ably?clientId=production_au.client%2F2689116&rnd=20712824615889414
+/ably?clientId=production_au.client%2F2689116&rnd=7234409472881222
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=917888739316699
+/ably?clientId=production_au.client%2F2359097&rnd=8127133194901739
+/okcomputer
+/ably?clientId=production_au.client%2F3390926&rnd=11198635367572685
+/okcomputer
+/ably?access_code=pujnzfjw&clientId=production_au.client/3384471&capability=
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9579705362019624
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?clientId=production_au.client%2F2210734&rnd=024488004758774773
+/ably?rnd=9333546884922339
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=700448384306904
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7936634804286036
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=06895488798547111
+/okcomputer
+/ably?capability=&clientId=production_au.client/3265618&access_code=xdxvqsvf
+/ably?capability=&clientId=production_au.client/3265618&access_code=xdxvqsvf
+/ably?capability=&clientId=production_au.client/3265618&access_code=xdxvqsvf
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7876321472911156
+/ably?clientId=production_au.client%2F2689116&rnd=42556690542009434
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7575869059958291
+/ably?clientId=production_au.client%2F3352931&rnd=3472138617814837
+/okcomputer
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?clientId=production_au.client%2F2359097&rnd=8182846814317866
+/ably?clientId=production_au.client%2F3340259&rnd=4383689693764965
+/okcomputer/all
+/okcomputer
+/api/physiapp/intake/settings
+/pt/ably?clientId=production_au.provider%2F193566&rnd=24516736705149356
+/okcomputer
+/ably?rnd=13173766140898224
+/ably?clientId=production_au.client%2F2210734&rnd=990242430743737
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2088341524367363
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4503917979530401
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3937337885002816
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/results
+/sign_in
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=5206926569995798
+/ably?clientId=production_au.client%2F2689116&rnd=9436127285418301
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3379387235245004
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=5389431711964818
+/ably?rnd=24008781368628584
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=8890258636235115
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6852215091203766
+/okcomputer
+/ably?rnd=11239151278536896
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=625068274030115
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=195412610849931
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=28202633025162704
+/ably?clientId=production_au.client%2F2210734&rnd=027875256345498256
+/ably?capability=&clientId=production_au.client/3262510&access_code=hvwzewnh
+/ably?capability=&clientId=production_au.client/3262510&access_code=hvwzewnh
+/ably?capability=&clientId=production_au.client/3262510&access_code=hvwzewnh
+/ably?capability=&clientId=production_au.client/3262510&access_code=hvwzewnh
+/ably?capability=&clientId=production_au.client/3262510&access_code=hvwzewnh
+/ably?capability=&clientId=production_au.client/3262510&access_code=hvwzewnh
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2689116&rnd=6656134984477431
+/ably?clientId=production_au.client%2F2689116&rnd=5499885293827769
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3311777390503352
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=3127165464276639
+/ably?clientId=production_au.client%2F2359097&rnd=2832561025317799
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F3396068&rnd=5851102438247994
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6320622174585293
+/okcomputer
+/
+/ably?clientId=production_au.client%2F2378281&rnd=7974571202934877
+/login
+/ably?rnd=46446082156230095
+/servers
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7815700931937795
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8846338967836278
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8355610282964572
+/ably?clientId=production_au.client%2F3076442&rnd=9218414872303505
+/ably?clientId=production_au.client%2F2210734&rnd=19642505278429456
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=49184315378205223
+/ably?clientId=production_au.client%2F2689116&rnd=6699076863208886
+/pt/ably?clientId=production_au.provider%2F540919&rnd=30694118841996065
+/ably?clientId=production_au.client%2F3352931&rnd=5313929230117147
+/okcomputer
+/ably?capability=&clientId=production_au.client/1039019&access_code=cirkqjna
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=757312889119919
+/webpack/common-bundle-75a32f6fd427edebcdcb.js
+/webpack/vendor-bundle-c70f2c626f7bbc0e6850.js
+/webpack/pt-bundle-a5eb3a04dd97c09236cb.js
+/assets/pt/application-f4b31779c779c71a0b19752f552871a0b002a173a3a9ec72512bbf8fce370f77.js
+/pt/ably?clientId=production_au.provider%2F193566&rnd=617475452861344
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6373086948183833
+/ably?rnd=370442750349965
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6564898639336445
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5963871979462805
+/ably?clientId=production_au.client%2F2210734&rnd=6455985871765988
+/okcomputer
+/api/patient/myaonxsi/device_registration/ios
+/api/patient/myaonxsi/video_calls/channel
+/ably?clientId=production_au.client/2822265&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538330960.986167&access_code=myaonxsi&format=msgpack
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3076442&rnd=534792879771046
+/ably?clientId=production_au.client/2822265&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538330962.708070&access_code=myaonxsi&format=msgpack
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?clientId=production_au.client%2F2689116&rnd=010458350499193747
+/ably?clientId=production_au.client%2F3340259&rnd=43639707488589574
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?clientId=production_au.client%2F2689116&rnd=8805979580291972
+/login
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6744479159028753
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/okcomputer
+/api/patient/myaonxsi/program
+/api/patient/myaonxsi/program
+/users/sign_in
+/exercises
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/ably?capability=&clientId=production_au.client/3171399&access_code=wyzcqjbv
+/ably?capability=&clientId=production_au.client/3171399&access_code=wyzcqjbv
+/themes/0/categories.json
+/api/patient/myaonxsi/program
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/exercises.json?page=1
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=050760963029412576
+/ably?access_code=kpfmjbso&clientId=production_au.client/2848207&capability=
+/ably?clientId=production_au.client%2F3352931&rnd=7549887357788461
+/pt/ably?clientId=production_au.provider%2F193566&rnd=14302886491520916
+/okcomputer
+/ably?rnd=3312830107220681
+/clients
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=39999730273749834
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3369656070875646
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=015004733284612604
+/anonymous_session
+/exercises
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=64689411982606
+/ably?clientId=production_au.client%2F2689116&rnd=6736711987035353
+/themes/0/categories.json
+/ably?clientId=production_au.client%2F2689116&rnd=9412842318336827
+/pt_check_black.svg
+/exercises.json?page=1
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9958234847709613
+/okcomputer
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=79512221690011
+/ably?capability=&clientId=production_au.client/3262510&access_code=hvwzewnh
+/ably?clientId=production_au.client%2F2359097&rnd=3441290203200582
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5128687603859807
+/ably?rnd=9102619669606056
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=20722991791312761
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6583945479796336
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7061048390750166
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2210734&rnd=34235219464439415
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?clientId=production_au.client%2F3352931&rnd=8720296438199198
+/ably?clientId=production_au.client%2F2689116&rnd=7662201673113254
+/ably?clientId=production_au.client%2F2689116&rnd=48061519059892976
+/ably?clientId=production_au.client%2F3340259&rnd=5095063516326532
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=71466953943276
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/okcomputer/all
+/okcomputer
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?clientId=production_au.client%2F3076442&rnd=08445626646801829
+/ably?clientId=production_au.client%2F2802754&rnd=7560479999773964
+/ably?capability=&clientId=production_au.client/3417117&access_code=cawmidhw
+/ably?clientId=production_au.client%2F2359097&rnd=14787658317898633
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9107835833405953
+/ably?capability=&client_id=production_au.client/2066399&access_code=ffguuors
+/ably?rnd=9807990092719987
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3839247909704899
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6593167448886164
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6764777451850126
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=6662719207780567
+/ably?clientId=production_au.client%2F2689116&rnd=19346372500683007
+/ably?clientId=production_au.client%2F2689116&rnd=26188229441330013
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9175416474633213
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=7731252735238061
+/ably?clientId=production_au.client%2F3076442&rnd=8170134233319886
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=3088106015062506
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7557857444715101
+/ably?rnd=8338139264229947
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2570870601047104
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=28671778606907083
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=2365139451073095
+/home-exercise-video/plank
+/ably?access_code=yshspoou&clientId=production_au.client/2060343&capability=
+/ably?clientId=production_au.client%2F3340259&rnd=06505753961718774
+/ably?clientId=production_au.client%2F2210734&rnd=7650861358342449
+/ably?clientId=production_au.client%2F2689116&rnd=5605915828569143
+/ably?clientId=production_au.client%2F2689116&rnd=47384629249453925
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8716318673152548
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=4343333877610409
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=8696390271441641
+/pt/ably?clientId=production_au.provider%2F193566&rnd=26521337853764115
+/api/physiapp/intake/settings
+/okcomputer
+/ably?rnd=32310014524692
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=07092458003179258
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3144690773734231
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5047530401326188
+/ably?clientId=production_au.client%2F3076442&rnd=3025780358326323
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=8513349784910387
+/ably?clientId=production_au.client%2F2689116&rnd=5041593058077924
+/ably?clientId=production_au.client%2F2210734&rnd=9497405469063775
+/pt/ably?clientId=production_au.provider%2F540919&rnd=2689491146129104
+/okcomputer
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3206040469151994
+/ably?clientId=production_au.client%2F2359097&rnd=762126353364186
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3352931&rnd=7132547847447885
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9468211853741417
+/ably?rnd=34216664160511123
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9221727359282983
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7720763164589175
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=9439438615935045
+/ably?clientId=production_au.client%2F2689116&rnd=4648225487264863
+/ably?clientId=production_au.client%2F3340259&rnd=38659458547033076
+/ably?clientId=production_au.client%2F2210734&rnd=7284585934403063
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6743095270049033
+/okcomputer/all
+/okcomputer
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=7069311578833938
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5053363345701014
+/ably?clientId=production_au.client%2F2359097&rnd=5015519214264477
+/okcomputer
+/ably?rnd=16170126325092693
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=08692062995210059
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6304238151301083
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=12197901702973257
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=9631027714459082
+/ably?clientId=production_au.client%2F2689116&rnd=21297255131316484
+/ably?clientId=production_au.client%2F2210734&rnd=5440263436281647
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6558779202837361
+/
+/login
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=5897197767520919
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=27563570698572004
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=5203148290089514
+/ably?clientId=production_au.client%2F3076442&rnd=46069155690891084
+/home-exercise-video/plank
+/ably?rnd=8858443539909644
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=06812564834735935
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8522099784000006
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=06273435281380069
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6674787310255272
+/ably?clientId=production_au.client%2F2689116&rnd=6447671392160035
+/ably?clientId=production_au.client%2F3340259&rnd=01773090653861764
+/pt/ably?clientId=production_au.provider%2F540919&rnd=05161620472860662
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=8505500571024345
+/okcomputer
+/okcomputer
+/ably?capability=&clientId=production_au.client/2857936&access_code=niafqbmo
+/pt/ably?clientId=production_au.provider%2F193566&rnd=35703651840174566
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=5151231432670873
+/ably?clientId=production_au.client%2F2359097&rnd=5051051794419892
+/ably?rnd=27573579022104155
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8841446199129814
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6473448012704441
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6885587877725017
+/okcomputer
+/ably?rnd=8425591145107867
+/ably?clientId=production_au.client%2F3076442&rnd=36507905785986183
+/ably?clientId=production_au.client%2F2689116&rnd=1871701063213569
+/ably?clientId=production_au.client%2F2689116&rnd=6257742594647719
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3399285595738153
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=27050673330900143
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=30975272704844503
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3340259&rnd=07003025923541684
+/ably?clientId=production_au.client%2F2359097&rnd=837130497930167
+/ably?rnd=4258568262550675
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=43232184929166073
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=1114770816914632
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=42586112891963346
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=9973666053202732
+/ably?clientId=production_au.client%2F2689116&rnd=1300089472427879
+/okcomputer/all
+/ably?clientId=production_au.client%2F3352931&rnd=2439596299680249
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5779661259663735
+/ably?clientId=production_au.client%2F2210734&rnd=8564159146166708
+/ably?clientId=production_au.client%2F3076442&rnd=8602249009887585
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4483122405900708
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=4520442600464649
+/ably?rnd=8976149286036814
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=18596915382647006
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4162632288499648
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9092395124199533
+/okcomputer
+/ably?access_code=teyhxphu&clientId=production_au.client/2412061&capability=
+/ably?capability=&clientId=production_au.client/3404563&access_code=apcbzscm
+/ably?clientId=production_au.client%2F2689116&rnd=8491270432869047
+/ably?clientId=production_au.client%2F2689116&rnd=049609769133396764
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5101209386552223
+/ably?capability=&clientId=production_au.client/3339895&access_code=kcrsxxhz
+/ably?capability=&clientId=production_au.client/3339895&access_code=kcrsxxhz
+/ably?capability=&clientId=production_au.client/3339895&access_code=kcrsxxhz
+/ably?clientId=production_au.client%2F2210734&rnd=7341349165641937
+/ably?clientId=production_au.client%2F3076442&rnd=3307117478969296
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=4808416080237954
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5683575784887207
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3340259&rnd=6738040115709252
+/ably?rnd=9282238019075815
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8214146249209862
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7565667513870569
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8657832841116564
+/ably?clientId=production_au.client%2F2359097&rnd=281991682082247
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7568531013137394
+/ably?clientId=production_au.client%2F2689116&rnd=15067071563812573
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6732580994099366
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=34593742941528194
+/ably?clientId=production_au.client%2F3076442&rnd=9823302590022597
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9481961913723864
+/ably?capability=&clientId=production_au.client/2064122&access_code=rvuneoop
+/okcomputer
+/cohorts.json?date=2013-10-01
+/cohorts.json?date=2013-11-01
+/ably?rnd=5438846667136932
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3875662654566645
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=12169698845352972
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=40550676084597304
+/cohorts.json?date=2013-12-01
+/cohorts.json?date=2014-01-01
+/ably?clientId=production_au.client%2F2359097&rnd=6768363503217702
+/cohorts.json?date=2014-02-01
+/cohorts.json?date=2014-03-01
+/exercises
+/cohorts.json?date=2014-04-01
+/cohorts.json?date=2014-05-01
+/cohorts.json?date=2014-06-01
+/cohorts.json?date=2014-07-01
+/cohorts.json?date=2014-08-01
+/ably?capability=&clientId=production_au.client/3398352&access_code=aabxnssu
+/cohorts.json?date=2014-10-01
+/anonymous_session
+/cohorts.json?date=2014-09-01
+/okcomputer
+/cohorts.json?date=2014-11-01
+/cohorts.json?date=2014-12-01
+/ably?clientId=production_au.client%2F2689116&rnd=412647669622634
+/ably?clientId=production_au.client%2F2689116&rnd=9128548170798207
+/cohorts.json?date=2015-01-01
+/cohorts.json?date=2015-02-01
+/cohorts.json?date=2015-03-01
+/cohorts.json?date=2015-04-01
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8127618927138915
+/cohorts.json?date=2015-05-01
+/cohorts.json?date=2015-06-01
+/cohorts.json?date=2015-07-01
+/cohorts.json?date=2015-08-01
+/servers/demo
+/cohorts.json?date=2015-09-01
+/cohorts.json?date=2015-10-01
+/okcomputer
+/cohorts.json?date=2015-12-01
+/cohorts.json?date=2015-11-01
+/cohorts.json?date=2016-01-01
+/cohorts.json?date=2016-02-01
+/ably?clientId=production_au.client%2F2210734&rnd=9473070432420618
+/cohorts.json?date=2016-03-01
+/cohorts.json?date=2016-04-01
+/cohorts.json?date=2016-05-01
+/cohorts.json?date=2016-06-01
+/cohorts.json?date=2016-07-01
+/cohorts.json?date=2016-08-01
+/cohorts.json?date=2016-09-01
+/cohorts.json?date=2016-10-01
+/cohorts.json?date=2016-11-01
+/okcomputer
+/cohorts.json?date=2016-12-01
+/cohorts.json?date=2017-01-01
+/cohorts.json?date=2017-02-01
+/home-exercise-video/plank
+/cohorts.json?date=2017-03-01
+/ably?clientId=production_au.client%2F2620813&rnd=6531250608971297
+/pt/ably?clientId=production_au.provider%2F193566&rnd=30902363848082715
+/cohorts.json?date=2017-04-01
+/cohorts.json?date=2017-05-01
+/cohorts.json?date=2017-06-01
+/cohorts.json?date=2017-07-01
+/cohorts.json?date=2017-08-01
+/cohorts.json?date=2017-09-01
+/cohorts.json?date=2017-10-01
+/cohorts.json?date=2017-11-01
+/cohorts.json?date=2017-12-01
+/cohorts.json?date=2018-01-01
+/ably?clientId=production_au.client%2F3340259&rnd=1096264711728353
+/okcomputer
+/cohorts.json?date=2018-02-01
+/cohorts.json?date=2018-03-01
+/cohorts.json?date=2018-04-01
+/cohorts.json?date=2018-05-01
+/ably?rnd=505853281608265
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5801445723521408
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=12456097388096232
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7309242375104716
+/cohorts.json?date=2018-06-01
+/cohorts.json?date=2018-07-01
+/ably?clientId=production_au.client%2F3076442&rnd=8303857113659889
+/cohorts.json?date=2018-08-01
+/cohorts.json?date=2018-09-01
+/aggregates.json?date=2018-09-30
+/ably?clientId=production_au.client%2F2359097&rnd=8279183335692348
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=5417981546305992
+/ably?clientId=production_au.client%2F2689116&rnd=1218171888337376
+/sign_in
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7316995445291894
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=22054028191940533
+/ably?clientId=production_au.client%2F2210734&rnd=523866077902112
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=48997213117273897
+/okcomputer
+/ably?rnd=5449488633723656
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2486965374521508
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9709753512800969
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8191752581743523
+/ably?clientId=production_au.client%2F2359097&rnd=3392404873759809
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=37511746516723554
+/ably?clientId=production_au.client%2F2689116&rnd=0792280027562946
+/ably?clientId=production_au.client%2F3076442&rnd=37671746532707495
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6687646786866293
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=522217980155975
+/ably?clientId=production_au.client%2F2210734&rnd=42014540371951115
+/okcomputer
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5669806512788678
+/pt/ably?clientId=production_au.provider%2F1174793&rnd=22107133210907182
+/ably?clientId=production_au.client%2F3352931&rnd=18468112631658484
+/okcomputer
+/ably?rnd=7108044887023515
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6751982964415364
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9557472116459726
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=23183297490634214
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=8448152710470158
+/ably?clientId=production_au.client%2F2689116&rnd=031901239296700856
+/ably?clientId=production_au.client%2F2689116&rnd=4201848702968376
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3943649988247848
+/okcomputer
+/ably?clientId=production_au.client%2F3386578&rnd=3748216870411818
+/ably?clientId=production_au.client%2F3076442&rnd=7036741206653606
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=5861029252450998
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4782764153680523
+/okcomputer
+/ably?capability=&clientId=production_au.client/2362801&access_code=oiykeoxx
+/ably?rnd=01543733315817919
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=13359741187319862
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5747937675877857
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=07142130854705653
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=17617628172369892
+/ably?clientId=production_au.client%2F2359097&rnd=9793858254363055
+/ably?clientId=production_au.client%2F2689116&rnd=6651881951098855
+/ably?clientId=production_au.client%2F3352931&rnd=3195401022250106
+/pt/ably?clientId=production_au.provider%2F540919&rnd=914508945776773
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=39601650667863286
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2210734&rnd=8935174032060329
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4719228090053911
+/okcomputer
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/ably?rnd=3182419524283162
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6522986665882944
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=18695017437192862
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=32229953740207207
+/okcomputer/all
+/ably?clientId=production_au.client%2F3076442&rnd=9983789360813569
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=33017772851851857
+/ably?clientId=production_au.client%2F2689116&rnd=3551802320559647
+/ably?clientId=production_au.client%2F2359097&rnd=914389628117636
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6020473220529305
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=12498763851859596
+/pt/ably?clientId=production_au.provider%2F193566&rnd=1048146342719789
+/okcomputer
+/home-exercise-video/tmj-isometric-retrusion-%2528retraction%2529
+/ably?rnd=3246730971090592
+/ably?clientId=production_au.client/2839989&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538331543.897780&access_code=hqimucgu&format=msgpack
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9097463569969131
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=2618134667386929
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=020171540120553555
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=829798513125868
+/ably?clientId=production_au.client%2F2689116&rnd=33638385654368097
+/ably?clientId=production_au.client%2F2359097&rnd=20136971366592315
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6593803134458338
+/ably?clientId=production_au.client%2F2536387&rnd=12067804279581718
+/ably?clientId=production_au.client%2F2536387&rnd=0664628952423304
+/ably?clientId=production_au.client%2F3340259&rnd=41868571495736673
+/okcomputer
+/home-exercise-video/plank
+/ably?capability=&clientId=production_au.client/2035475&access_code=kjkcxirk
+/login
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/ably?clientId=production_au.client%2F2210734&rnd=6044747081132547
+/users/sign_in
+/pt/ably?clientId=production_au.provider%2F193566&rnd=25232399930715554
+/exercises
+/okcomputer
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/themes/0/categories.json
+/exercises.json?page=1
+/okcomputer/all
+/okcomputer
+/ably?rnd=16830696525634425
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3362966568170107
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=000723713248168556
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6961082325817411
+/ably?clientId=production_au.client%2F3352931&rnd=6004832422629904
+/ably?clientId=production_au.client%2F2689116&rnd=8684561120613072
+/ably?clientId=production_au.client%2F2689116&rnd=39359374515184786
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=5743920096668158
+/robots.txt
+/ably?clientId=production_au.client%2F3386578&rnd=02353776942003294
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7635694223490359
+/okcomputer
+/ably?rnd=774288075947116
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=9432894553665425
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7169654827474476
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/okcomputer
+/ably?rnd=9307744994782774
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=844099305216562
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=030875405888026286
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=10587396524078962
+/ably?clientId=production_au.client%2F3340008&rnd=6530984738637582
+/ably?clientId=production_au.client%2F2689116&rnd=6953462536294412
+/ably?clientId=production_au.client%2F2689116&rnd=28946653147003576
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=47323405721079137
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5036777983829808
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3352931&rnd=45459870164704297
+/ably?clientId=production_au.client%2F3340259&rnd=09061580571810146
+/exercises
+/okcomputer
+/api/patient/rziwjnqq/messages?birthYear=1972
+/api/patient/rziwjnqq/messages?birthYear=1972
+/api/patient/rziwjnqq/video_calls/channel
+/api/patient/rziwjnqq/device_registration/ios
+/api/patient/rziwjnqq/program?birthYear=1972
+/api/patient/rziwjnqq/program?birthYear=1972
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8083825336494406
+/ably?clientId=production_au.client%2F2210734&rnd=18318769716662442
+/ably?access_code=dftkfrjk&clientId=production_au.client/2768903&capability=
+/okcomputer/all
+/themes/0/categories.json
+/ably?clientId=production_au.client/2802412&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538331629.555237&access_code=rziwjnqq&format=msgpack
+/okcomputer
+/ably?rnd=5679522829294512
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=24854987626459368
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9214562530810464
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=10146222103209013
+/exercises.json?page=1
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6231832766640715
+/ably?clientId=production_au.client%2F2689116&rnd=5569567991501283
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4791735714598002
+/ably?clientId=production_au.client%2F2359097&rnd=42778932603143515
+/okcomputer
+/okcomputer
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=8891234270905946
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5987163167818497
+/ably?rnd=3434042519838021
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8156815598924274
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5635403985366569
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=699969577866169
+/ably?clientId=production_au.client%2F2210734&rnd=6549840985390174
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=21691017120648493
+/ably?clientId=production_au.client%2F2689116&rnd=9491397627934259
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4512168786888575
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=9472342622833318
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3340259&rnd=4508053785001642
+/ably?access_code=xwthtsuo&clientId=production_au.client/3415082&capability=
+/okcomputer
+/okcomputer/all
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6589425932350468
+/ably?rnd=5751586903797863
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9342278996708777
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4971934216779532
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5945134300399237
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=7147519288334796
+/ably?clientId=production_au.client%2F2689116&rnd=7928102520572617
+/ably?clientId=production_au.client%2F2689116&rnd=06206235356002088
+/ably?clientId=production_au.client%2F3386939&rnd=7685188536681044
+/ably?clientId=production_au.client%2F3410726&rnd=9351114948528685
+/ably?clientId=production_au.client%2F3386939&rnd=22019742844662438
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5039610314232643
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=42997190427755005
+/ably?access_code=srqtytmv&clientId=production_au.client/3415345&capability=
+/ably?access_code=srqtytmv&clientId=production_au.client/3415345&capability=
+/ably?access_code=srqtytmv&clientId=production_au.client/3415345&capability=
+/ably?access_code=srqtytmv&clientId=production_au.client/3415345&capability=
+/ably?access_code=srqtytmv&clientId=production_au.client/3415345&capability=
+/ably?access_code=srqtytmv&clientId=production_au.client/3415345&capability=
+/ably?capability=&clientId=production_au.client/2857936&access_code=niafqbmo
+/okcomputer
+/ably?access_code=srqtytmv&clientId=production_au.client/3415345&capability=
+/
+/login
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9360453899852674
+/ably?rnd=4540972954353133
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=14523650356667828
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4198221410653251
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5636588568551679
+/okcomputer
+/ably?rnd=8862024584485075
+/ably?clientId=production_au.client%2F2210734&rnd=12604821471617322
+/ably?clientId=production_au.client%2F2689116&rnd=538755898636347
+/ably?clientId=production_au.client%2F2689116&rnd=30208252925840084
+/ably?access_code=khuuadsd&clientId=production_au.client/3353178&capability=
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6682794559506791
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2359097&rnd=34056299297047565
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=8193236382740906
+/ably?access_code=ykvqvufo&clientId=production_au.client/3338717&capability=
+/okcomputer/all
+/okcomputer
+/ably?capability=&clientId=production_au.client/2035475&access_code=kjkcxirk
+/ably?clientId=production_au.client%2F3352931&rnd=18302682214145038
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6156352483624918
+/okcomputer
+/ably?rnd=8716446158653977
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6825821841377064
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4955644983835823
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=905191145263327
+/ably?clientId=production_au.client%2F2689116&rnd=6418612150317762
+/ably?clientId=production_au.client%2F2689116&rnd=7673876414568788
+/ably?clientId=production_au.client%2F2210734&rnd=8337227519325863
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5110415621038809
+/ably?capability=&clientId=production_au.client/2035475&access_code=kjkcxirk
+/ably?access_code=sytqnnzo&clientId=production_au.client/3353437&capability=
+/ably?access_code=sytqnnzo&clientId=production_au.client/3353437&capability=
+/ably?access_code=sytqnnzo&clientId=production_au.client/3353437&capability=
+/ably?access_code=sytqnnzo&clientId=production_au.client/3353437&capability=
+/ably?access_code=sytqnnzo&clientId=production_au.client/3353437&capability=
+/ably?access_code=sytqnnzo&clientId=production_au.client/3353437&capability=
+/ably?clientId=production_au.client%2F2359097&rnd=1558329248387762
+/okcomputer
+/api/patient/kjkcxirk/exercises/391495909/complete
+/ably?capability=&clientId=production_au.client/2035475&access_code=kjkcxirk
+/ably?capability=&clientId=production_au.client/2035475&access_code=kjkcxirk
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=05910889669784036
+/okcomputer
+/ably?clientId=production_au.client%2F3350330&rnd=9384318702160006
+/ably?rnd=11374482764122185
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8872311849269445
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9178118512151547
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=08265066036488378
+/ably?clientId=production_au.client%2F2689116&rnd=3172895928940309
+/ably?clientId=production_au.client%2F2689116&rnd=3251903508693543
+/ably?clientId=production_au.client%2F2210734&rnd=18439429953853548
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=4635162585225663
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4198413407489514
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=2915338529136975
+/ably?clientId=production_au.client%2F3340259&rnd=9782514921508612
+/okcomputer/all
+/okcomputer
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=605368221154265
+/ably?rnd=697918716954337
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=746525198564362
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=14735220478662647
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=28215575989535835
+/ably?clientId=production_au.client%2F2689116&rnd=04993087007538155
+/ably?clientId=production_au.client%2F2689116&rnd=31400247045195706
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=488639669624205
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7401146094273636
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=4876787295010532
+/ably?clientId=production_au.client%2F3352931&rnd=016395120335816804
+/okcomputer
+/ably?capability=&client_id=production_au.client/2066399&access_code=ffguuors
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6321989253137894
+/ably?rnd=20859114852767657
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9938226641996877
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7340461190884919
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5742256801848478
+/ably?clientId=production_au.client%2F2689116&rnd=5574966577547449
+/ably?clientId=production_au.client%2F2689116&rnd=8911170812516154
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2210734&rnd=9886747970892462
+/ably?clientId=production_au.client%2F3340259&rnd=297535231130579
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5092193243313863
+/ably?access_code=npucmocp&clientId=production_au.client/3172671&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=8955914202330009
+/okcomputer/all
+/okcomputer
+/ably?access_code=npucmocp&clientId=production_au.client/3172671&capability=
+/api/patient/xqmutgdd/video_calls/channel
+/ably?clientId=production_au.client/3339710&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538331879.673031&access_code=xqmutgdd&format=msgpack
+/api/patient/xqmutgdd/program
+/api/patient/xqmutgdd/device_registration/ios
+/api/patient/xqmutgdd/program
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8859971061704635
+/ably?rnd=7282064203001373
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5654032025486591
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=31853312059025773
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=27791404747247084
+/ably?clientId=production_au.client%2F2689116&rnd=041825238632695605
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=46404553083090705
+/ably?clientId=production_au.client%2F3384126&rnd=23235270180557144
+/ably?clientId=production_au.client%2F2210734&rnd=14849261498545552
+/pt/ably?clientId=production_au.provider%2F540919&rnd=07886262908124508
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=6056638169627813
+/okcomputer
+/okcomputer
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5376357410415109
+/ably?rnd=05456275078224415
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=36147081420807914
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=27131741592874503
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5520517437969834
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2689116&rnd=40609341858579007
+/ably?clientId=production_au.client%2F2689116&rnd=41319498411840905
+/ably?clientId=production_au.client%2F3340259&rnd=40892000957423336
+/pt/ably?clientId=production_au.provider%2F540919&rnd=30693493041483033
+/ably?clientId=production_au.client%2F2210734&rnd=385524719049684
+/okcomputer
+/ably?access_code=hsuhbgbq&clientId=production_au.client/3416509&capability=
+/ably?capability=&client_id=production_au.client/2066399&access_code=ffguuors
+/ably?clientId=production_au.client%2F3352931&rnd=10023016097579274
+/ably?capability=&clientId=production_au.client/1042716&access_code=oxjetzfn
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=1165140429123015
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=45923570375975964
+/ably?rnd=04020182568997366
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6274636545539194
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4403368303635331
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=14794112933724546
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=3241371344268087
+/ably?clientId=production_au.client%2F2689116&rnd=0772577009271509
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7700193389815679
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=41711152636663806
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=9070137161657823
+/ably?clientId=production_au.client%2F3352931&rnd=7270353343692955
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F1460&rnd=38006029783979156
+/pt/ably?clientId=production_au.provider%2F193566&rnd=41937905136560794
+/ably?rnd=2871000506642256
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7523166916677408
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9441582899415291
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=26773310152749663
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2689116&rnd=11464225420316643
+/ably?clientId=production_au.client%2F2689116&rnd=13879923893243595
+/ably?clientId=production_au.client%2F3340259&rnd=6384523313648401
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8133557273762535
+/
+/login
+/servers
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/ably?clientId=production_au.client%2F2210734&rnd=8904042066391578
+/okcomputer/all
+/okcomputer
+/api/patient/vyoymdby/video_calls/channel
+/api/patient/vyoymdby/device_registration/ios
+/api/patient/vyoymdby/program
+/api/patient/vyoymdby/program
+/ably?clientId=production_au.client/2677441&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538331997.150521&access_code=vyoymdby&format=msgpack
+/ably?clientId=production_au.client%2F3386578&rnd=6886915107991001
+/api/patient/vyoymdby/settings
+/api/patient/vyoymdby/settings
+/ably?clientId=production_au.client%2F2359097&rnd=9540092999615308
+/ably?clientId=production_au.client%2F3352931&rnd=6874261398871977
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8436347138298135
+/okcomputer
+/ably?rnd=8056005859647779
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=12940368630204868
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7349613777143038
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3890109590388722
+/api/patient/focpwiiv/video_calls/channel
+/ably?clientId=production_au.client%2F2689116&rnd=804181128780872
+/ably?clientId=production_au.client%2F2689116&rnd=16846330428349066
+/api/patient/focpwiiv/messages?birthYear=1958
+/okcomputer
+/api/patient/focpwiiv/device_registration/ios
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9845131566698326
+/ably?clientId=production_au.client/2338138&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538332020.406408&access_code=focpwiiv&format=msgpack
+/pt/ably?clientId=production_au.provider%2F723918&rnd=3653815099387968
+/ably?clientId=production_au.client%2F2210734&rnd=6618179444533763
+/okcomputer
+/api/patient/focpwiiv/program?birthYear=1958
+/api/patient/focpwiiv/exercises/384498228/complete
+/api/patient/focpwiiv/exercises/384498226/complete
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=5239472520941062
+/pt/ably?clientId=production_au.provider%2F95&rnd=5812938312380755
+/ably?capability=&clientId=production_au.client/3417095&access_code=opozhukh
+/ably?clientId=production_au.client/2338138&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538332036.342875&access_code=focpwiiv&format=msgpack
+/ably?clientId=production_au.client%2F3223240&rnd=05710256844288186
+/api/patient/focpwiiv/settings
+/pt/ably?clientId=production_au.provider%2F193566&rnd=27930150643375384
+/api/patient/focpwiiv/exercises/384498229/complete
+/okcomputer
+/api/patient/focpwiiv/exercises/384498230/complete
+/home-exercise-video/plank
+/ably?rnd=07446514774903168
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4868806029250128
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5050135197656933
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5608925570149021
+/api/patient/focpwiiv/exercises/384498227/complete
+/ably?clientId=production_au.client%2F2689116&rnd=7848780351651552
+/ably?clientId=production_au.client%2F2689116&rnd=7800079693930999
+/ably?clientId=production_au.client%2F3352931&rnd=4599278275821934
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=5905572785010934
+/pt/ably?clientId=production_au.provider%2F540919&rnd=29054366015982724
+/ably?access_code=hjhfiojh&clientId=production_au.client/3172916&capability=
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=9036488380318859
+/ably?access_code=rbaqbbfz&clientId=production_au.client/2858296&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=5478954934762947
+/ably?rnd=3327095860006142
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6907744113196332
+/okcomputer
+/ably?rnd=9124369192825439
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=31909041477221844
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=12400185231294159
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=23371197949624278
+/ably?clientId=production_au.client%2F2689116&rnd=9370251876733358
+/ably?clientId=production_au.client%2F2689116&rnd=6022745387407127
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=05690190254136729
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=926324150175281
+/ably?capability=&clientId=production_au.client/3171399&access_code=wyzcqjbv
+/ably?clientId=production_au.client%2F3352931&rnd=48490016008086045
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=1310233571456736
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3945517537231866
+/okcomputer
+/home-exercise-video/plank
+/ably?rnd=8652985110267934
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=30088036590259026
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=21317495147597976
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8052645911502705
+/ably?clientId=production_au.client%2F2689116&rnd=043844698530831616
+/ably?clientId=production_au.client%2F2689116&rnd=8014494221433812
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=9892224323910721
+/pt/ably?clientId=production_au.provider%2F540919&rnd=12989098377030195
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=25747188672327215
+/okcomputer
+/ably?rnd=04983955498281967
+/ably?clientId=production_au.client%2F2359097&rnd=07652072351402905
+/okcomputer
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/pt/ably?clientId=production_au.provider%2F193566&rnd=17124753751677457
+/ably?capability=&clientId=production_au.client/2362801&access_code=oiykeoxx
+/ably?rnd=20173278610934786
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5095000804856027
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=28588936498934747
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8322210606502403
+/ably?clientId=production_au.client%2F3352931&rnd=38853665085616007
+/ably?clientId=production_au.client%2F2689116&rnd=47745328141774834
+/ably?clientId=production_au.client%2F2689116&rnd=09728703883758016
+/okcomputer
+/ably?capability=&clientId=production_au.client/3351276&access_code=ynnmmqej
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3031989404676305
+/okcomputer
+/api/patient/focpwiiv/messages
+/api/patient/focpwiiv/messages/1022488
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/ably?clientId=production_au.client%2F2210734&rnd=06634256153430473
+/ably?clientId=production_au.client%2F11657&rnd=4777829486411065
+/okcomputer
+/ably?capability=&clientId=production_au.client/3385868&access_code=uhvfoqsn
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2359097&rnd=22585347188229132
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5476161486271167
+/ably?clientId=production_au.client%2F3340259&rnd=8968746653750579
+/login
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/ably?rnd=28510689095839803
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6644913378381005
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6230029844714469
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8908059961452466
+/users/sign_in
+/exercises
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/ably?clientId=production_au.client%2F2689116&rnd=1080530053461306
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=9177981148519065
+/themes/0/categories.json
+/exercises.json?page=1
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F540919&rnd=808242893640075
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=17472406735414925
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=9699356180308749
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9727490583103002
+/ably?clientId=production_au.client%2F2359097&rnd=8763598248316482
+/ably?rnd=3523761336559603
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3415482097864282
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=1476529086421141
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9069555444182238
+/ably?clientId=production_au.client/3351992&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538332197.577664&access_code=ganxmctw&format=msgpack
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=8520034190518573
+/api/patient/ganxmctw/program
+/ably?clientId=production_au.client%2F2689116&rnd=9440990237776583
+/ably?capability=&clientId=production_au.client/2301739&access_code=ehtxwfno
+/ably?access_code=fiuojbgq&clientId=production_au.client/3396064&capability=
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5713632494508247
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=8337341633252939
+/okcomputer
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5273891826940134
+/ably?clientId=production_au.client%2F3340259&rnd=10278309650988371
+/ably?clientId=production_au.client%2F2359097&rnd=9599883103576436
+/okcomputer
+/ably?rnd=3569740983309302
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7735331703340766
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7230108312165451
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8181567660639311
+/ably?clientId=production_au.client%2F2689116&rnd=2542446246839427
+/ably?clientId=production_au.client%2F2689116&rnd=4846907175141235
+/okcomputer/all
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=764505983548295
+/ably?capability=&clientId=production_au.client/3417095&access_code=opozhukh
+/okcomputer
+/ably?clientId=production_au.client%2F3416538&rnd=3152720981432382
+/ably?clientId=production_au.client%2F3416538&rnd=830440723655538
+/ably?capability=&clientId=production_au.client/2589325&access_code=ajyghdbx
+/ably?clientId=production_au.client%2F2210734&rnd=6614443892668596
+/okcomputer
+/ably?capability=&clientId=production_au.client/3416247&access_code=czdcjvrg
+/ably?capability=&clientId=production_au.client/3416247&access_code=czdcjvrg
+/pt/ably?clientId=production_au.provider%2F193566&rnd=27262643835302103
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=0498236130334313
+/ably?rnd=1658695513703592
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7294031708418451
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4478726827826367
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9503676277173028
+/ably?clientId=production_au.client%2F2689116&rnd=6605820938446887
+/ably?clientId=production_au.client%2F2689116&rnd=4663473515314964
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=14510452282840514
+/ably?clientId=production_au.client%2F3352931&rnd=297026574864355
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=896448741536672
+/okcomputer
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F193566&rnd=671833042716738
+/ably?clientId=production_au.client%2F3340259&rnd=20282397039161726
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=4689804533251243
+/ably?rnd=6732695078839845
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3943349749273868
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=14795261497696455
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=08974385020180087
+/ably?clientId=production_au.client%2F3386578&rnd=21451691043112942
+/ably?clientId=production_au.client%2F2689116&rnd=9673885624195997
+/ably?clientId=production_au.client%2F2689116&rnd=4884092241296789
+/okcomputer/all
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=31072448728552327
+/okcomputer
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=2372494923615054
+/ably?access_code=fgzxcodw&clientId=production_au.client/3138974&capability=
+/ably?clientId=production_au.client%2F3352931&rnd=41735795654273944
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6319468287338248
+/okcomputer
+/ably?capability=&clientId=production_au.client/2684167&access_code=ftxuohyu
+/ably?rnd=88924078672256
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8129517208205597
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=20831185995354273
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7802359856831675
+/ably?clientId=production_au.client%2F2359097&rnd=6899699777219304
+/ably?clientId=production_au.client%2F2689116&rnd=10941169624966096
+/ably?clientId=production_au.client%2F2689116&rnd=6002457551347395
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=2694323202666826
+/okcomputer
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2210734&rnd=3071666985483945
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8533289310850587
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=4620237781000791
+/api/patient/kivwsvkf/video_calls/channel
+/api/patient/kivwsvkf/device_registration/ios
+/api/patient/kivwsvkf/program
+/ably?clientId=production_au.client/3412856&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538332350.630790&access_code=kivwsvkf&format=msgpack
+/api/patient/kivwsvkf/program
+/api/patient/kivwsvkf/settings
+/api/patient/kivwsvkf/settings
+/ably?rnd=10246287325707115
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6085604269814548
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=40503275566356356
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6621536453198562
+/ably?clientId=production_au.client%2F2689116&rnd=6897750484497422
+/ably?clientId=production_au.client%2F3352931&rnd=30962207414855314
+/ably?clientId=production_au.client%2F2359097&rnd=17653333769131407
+/okcomputer/all
+/ably?clientId=production_au.client%2F2689116&rnd=397372339169465
+/okcomputer
+/ably?clientId=production_au.client/3338846&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538332358.025847&access_code=axhrzyjp&format=msgpack
+/exercises
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9787222034972209
+/okcomputer
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=8547146746740657
+/pt/ably?clientId=production_au.provider%2F193566&rnd=29351421320298243
+/okcomputer
+/ably?clientId=production_au.client%2F2792761&rnd=13508828660493022
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=11131054229650661
+/ably?rnd=03054677889962054
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2412296494167674
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6813165871279536
+/ably?clientId=production_au.client%2F2689116&rnd=7321303327747566
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=6769813144435823
+/ably?clientId=production_au.client%2F2689116&rnd=45198341081024695
+/ably?clientId=production_au.client%2F2359097&rnd=03648348193714135
+/pt/ably?clientId=production_au.provider%2F540919&rnd=2621335301517447
+/okcomputer
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2210734&rnd=8720905121495051
+/pt/ably?clientId=production_au.provider%2F193566&rnd=48257077715856256
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=9747279905550973
+/ably?access_code=rcojjreu&clientId=production_au.client/2857549&capability=
+/ably?access_code=rcojjreu&clientId=production_au.client/2857549&capability=
+/okcomputer/all
+/ably?clientId=production_au.client%2F2844195&rnd=6150094578431728
+/ably?rnd=4080385550486503
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6119783044398843
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=29323015677848874
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9503239071238607
+/ably?clientId=production_au.client%2F2689116&rnd=12998024977837286
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=5304033126430077
+/ably?clientId=production_au.client%2F2359097&rnd=9492964069849858
+/pt/ably?clientId=production_au.provider%2F540919&rnd=367413174818946
+/okcomputer
+/ably?capability=&clientId=production_au.client/3401227&access_code=xsyghvis
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/ably?rnd=331241774177075
+/ably?clientId=production_au.client%2F3352931&rnd=6636217054465585
+/okcomputer
+/ably?clientId=production_au.client%2F3389692&rnd=47399602566172705
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=15989339747228093
+/ably?clientId=production_au.client%2F2210734&rnd=9322159305738318
+/ably?rnd=13757315580289542
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=337843942107352
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7333152407468975
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=23631636908505405
+/ably?clientId=production_au.client%2F2689116&rnd=5524813060961071
+/ably?clientId=production_au.client%2F2689116&rnd=8428206797766444
+/ably?clientId=production_au.client%2F2359097&rnd=2979142056054751
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=29563812259464584
+/ably?clientId=production_au.client%2F3383671&rnd=6505723794087608
+/ably?clientId=production_au.client%2F3383671&rnd=1804470817923136
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3340259&rnd=6534846065953878
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=2543685547178558
+/ably?clientId=production_au.client%2F2210734&rnd=6916804737701705
+/okcomputer/all
+/ably?clientId=production_au.client%2F3352931&rnd=8016178378274417
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6852023313037303
+/ably?rnd=6691792096559583
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3925402724497775
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=15687051031759447
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6759441860454021
+/ably?clientId=production_au.client%2F2689116&rnd=5099085838977655
+/ably?clientId=production_au.client%2F2359097&rnd=7845139500798481
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5023762383394041
+/okcomputer
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=704210923445957
+/ably?clientId=production_au.client%2F2210734&rnd=6298297834675437
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=5671903424421163
+/ably?rnd=47594142531549144
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=028545880966534876
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=44335645538907476
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7644995634216938
+/ably?clientId=production_au.client%2F2689116&rnd=3477094679660482
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/okcomputer
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/ably?clientId=production_au.client%2F2359097&rnd=9658149475700162
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7661307380534428
+/ably?clientId=production_au.client%2F3352931&rnd=11144852263086524
+/pt/ably?clientId=production_au.provider%2F3395722&rnd=5959519403614808
+/okcomputer
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F471723&rnd=31730924536743177
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/ably?clientId=production_au.client%2F3340259&rnd=7195904332294533
+/okcomputer
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/api/patient/dyejdqkp/messages?birth_year=2005
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5345967937109131
+/ably?access_code=dgormrjz&clientId=production_au.client/2819611&capability=
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=7840663113255661
+/okcomputer
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=8662579051734784
+/ably?rnd=5770054180522894
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5655877256618835
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=801342913870096
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9097367954346773
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=836385490938786
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=17410391580800266
+/pt/ably?clientId=production_au.provider%2F540919&rnd=958846175028903
+/okcomputer
+/api/patient/txxeuvxd/video_calls/channel
+/api/patient/txxeuvxd/device_registration/ios
+/ably?clientId=production_au.client/2299668&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538332556.619211&access_code=txxeuvxd&format=msgpack
+/api/patient/txxeuvxd/program
+/api/patient/txxeuvxd/settings
+/api/patient/txxeuvxd/program
+/api/patient/txxeuvxd/settings
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=13637838382201695
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=03767337582126462
+/ably?clientId=production_au.client%2F2689116&rnd=8645208407741443
+/ably?rnd=49220435161649223
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=20452333858326366
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6210991396023511
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8766222255992815
+/ably?clientId=production_au.client%2F2689116&rnd=9230596066561436
+/okcomputer
+/ably?access_code=tbyqdgif&clientId=production_au.client/3134398&capability=
+/pt/ably?clientId=production_au.provider%2F540919&rnd=32856735829571204
+/ably?clientId=production_au.client%2F2359097&rnd=21154480488533833
+/home-exercise-video/plank
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F73&rnd=9716612070495925
+/pt/ably?clientId=production_au.provider%2F73&rnd=22232372514656684
+/pt/ably?clientId=production_au.provider%2F73&rnd=40673787085515833
+/api/patient/txxeuvxd/video_calls/channel
+/api/patient/txxeuvxd/device_registration/ios
+/ably?clientId=production_au.client%2F3340259&rnd=38005452817340435
+/api/patient/txxeuvxd/program
+/api/patient/txxeuvxd/program
+/api/patient/txxeuvxd/settings
+/api/patient/txxeuvxd/settings
+/ably?clientId=production_au.client/2299668&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538332588.176573&access_code=txxeuvxd&format=msgpack
+/okcomputer
+/api/patient/txxeuvxd/device_registration/ios
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6171161201593538
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=9496364325262898
+/ably?clientId=production_au.client%2F2210734&rnd=8073168508983948
+/ably?rnd=29934652191213207
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9360250393687253
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8411518452865101
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3053555371903651
+/ably?clientId=production_au.client%2F2689116&rnd=09142887799048482
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=9140154228593729
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4486769531289958
+/ably?clientId=production_au.client%2F2359097&rnd=5283129463225704
+/okcomputer
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6002534629397038
+/ably?access_code=drwuigqy&clientId=production_au.client/2440687&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=029152027758037713
+/ably?capability=&clientId=production_au.client/2362801&access_code=oiykeoxx
+/ably?rnd=28771060879252675
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5416445001174981
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8834580005754256
+/ably?clientId=production_au.client%2F2210734&rnd=8870955527250972
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6959477067975981
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=4876384390984281
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3067624332855967
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F3386578&rnd=28136848175970697
+/ably?clientId=production_au.client%2F2359097&rnd=8728528772832518
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=9755870000932366
+/ably?clientId=production_au.client%2F3352931&rnd=07400391008656215
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F193566&rnd=028742588737759922
+/okcomputer
+/api/patient/axhrzyjp/exercises/399287586/complete
+/ably?clientId=production_au.client%2F2689116&rnd=03448618554825433
+/ably?rnd=16728197694960167
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=874676421821758
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3864740518443137
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8838026409324213
+/ably?clientId=production_au.client%2F2210734&rnd=1864892380003993
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=07215647123482416
+/pt/ably?clientId=production_au.provider%2F540919&rnd=09330627113570444
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=12980986818673235
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=12439624089306633
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=9039642986562582
+/ably?rnd=0543394936585746
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7989836384740234
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=12714745801564664
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3415480632530741
+/ably?clientId=production_au.client%2F2210734&rnd=5438777530124541
+/ably?clientId=production_au.client%2F2689116&rnd=47334765896725384
+/ably?clientId=production_au.client%2F3352931&rnd=4540626324675303
+/home-exercise-video/plank
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9430377648461681
+/ably?clientId=production_au.client%2F2359097&rnd=8799525482769557
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=17376244890375503
+/okcomputer/all
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3284063011004994
+/ably?access_code=ufamviba&clientId=production_au.client/2963883&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=5842665824647415
+/okcomputer
+/ably?rnd=7049296286219069
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6015728739532913
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=43498009929069914
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=40884063178715313
+/ably?clientId=production_au.client%2F2689116&rnd=05515663625284617
+/ably?clientId=production_au.client%2F2210734&rnd=5515718651100021
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=16265136498726185
+/ably?clientId=production_au.client%2F2359097&rnd=3986764847793798
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=651485833644259
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=45759823913310904
+/ably?clientId=production_au.client%2F2689116&rnd=7541234542243032
+/okcomputer
+/ably?rnd=35604055847970484
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9114002313941607
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9028366236863845
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=20739949479232056
+/ably?clientId=production_au.client%2F2689116&rnd=06646508466091428
+/ably?clientId=production_au.client%2F2210734&rnd=5941255781640995
+/api/patient/hvyohkxw/video_calls/channel
+/api/patient/hvyohkxw/device_registration/ios
+/okcomputer
+/ably?clientId=production_au.client/2959348&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538332761.258185&access_code=hvyohkxw&format=msgpack
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7675653461683438
+/ably?clientId=production_au.client%2F3340259&rnd=2997744614424287
+/api/patient/hvyohkxw/program
+/api/patient/hvyohkxw/program
+/login
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/users/sign_in
+/exercises
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/okcomputer
+/ably?clientId=production_au.client%2F3411073&rnd=8458782564268439
+/themes/0/categories.json
+/ably?clientId=production_au.client%2F2359097&rnd=5149008611433052
+/ably?clientId=production_au.client%2F3076442&rnd=12132262489272172
+/exercises.json?page=1
+/okcomputer/all
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=05194284494423895
+/api/patient/uezfxvbh/video_calls/channel
+/api/patient/uezfxvbh/device_registration/ios
+/api/patient/uezfxvbh/program
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=33897435394019637
+/api/patient/uezfxvbh/program
+/ably?clientId=production_au.client%2F2689116&rnd=6223346664884826
+/ably?clientId=production_au.client/2958688&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538332783.995420&access_code=uezfxvbh&format=msgpack
+/api/patient/uezfxvbh/settings
+/api/patient/uezfxvbh/settings
+/ably?rnd=287688598831527
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5926303612878447
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=15018640162902797
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2923574079023996
+/ably?clientId=production_au.client%2F2689116&rnd=44550114245533967
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=23198942096779307
+/ably?rnd=4794507293199457
+/pt/ably?clientId=production_au.provider%2F540919&rnd=42920891364975544
+/access/xnrxopes
+/program?redirected=
+/okcomputer
+/ably?clientId=production_au.client%2F3417061&rnd=7925717156548866
+/ably?rnd=961839282329354
+/ably?clientId=production_au.client/2958688&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538332801.687065&access_code=uezfxvbh&format=msgpack
+/ably?clientId=production_au.client%2F2359097&rnd=3566289475477171
+/pt/ably?clientId=production_au.provider%2F1266277&rnd=4574621452608514
+/okcomputer
+/exercises/415185733
+/pt/ably?clientId=production_au.provider%2F193566&rnd=33292809385156374
+/ably?rnd=45999072251167494
+/pt/ably?clientId=production_au.provider%2F3413050&rnd=43108533569213736
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=9618824297300843
+/home-exercise-video/arom-radial-finger-walking
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/assets/pt_application-a7c3fc40268414d58eedefaea50044dc4813e4e1a3c109ba61d353b6f5020f5b.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/ably?rnd=06455294731805927
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=18430172688794522
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9654276910561643
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6946618937128504
+/ably?clientId=production_au.client/2958688&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538332818.000046&access_code=uezfxvbh&format=msgpack
+/ably?clientId=production_au.client%2F3076442&rnd=24049168750493366
+/ably?clientId=production_au.client%2F2689116&rnd=23330354909004014
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=8734321926966386
+/api/patient/axhrzyjp/exercises/399287587/complete
+/ably?clientId=production_au.client%2F3340259&rnd=6881752562573364
+/pt/ably?clientId=production_au.provider%2F540919&rnd=681938987263643
+/ably?clientId=production_au.client%2F3352931&rnd=6328661146164365
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F364355&rnd=5356628909098926
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/okcomputer/all
+/ably?capability=&clientId=production_au.client/2955415&access_code=bdwipcbi
+/ably?clientId=production_au.client%2F2359097&rnd=3610660703895623
+/api/patient/jgsjcjdt/video_calls/channel
+/api/patient/jgsjcjdt/device_registration/ios
+/ably?clientId=production_au.client/2028582&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538332835.727366&access_code=jgsjcjdt&format=msgpack
+/okcomputer
+/api/patient/jgsjcjdt/program
+/api/patient/jgsjcjdt/program
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/ably?capability=&clientId=production_au.client/3411328&access_code=kevwkdct
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8400176266285959
+/api/patient/jgsjcjdt/settings
+/api/patient/jgsjcjdt/settings
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=8051274527225778
+/ably?rnd=023703248631759433
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8303206150834486
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7050892983128731
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=24375002203673168
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6507033241102873
+/ably?clientId=production_au.client%2F3076442&rnd=9201029260131718
+/ably?clientId=production_au.client%2F2210734&rnd=2935669040977398
+/pt/ably?clientId=production_au.provider%2F540919&rnd=07341839463938227
+/ably?rnd=4693964558480844
+/okcomputer
+/exercises/415185726
+/ably?rnd=7989998621632368
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=5557983557668333
+/ably?clientId=production_au.client%2F3352931&rnd=2250745393474849
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7238221161066052
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=26840096604142905
+/ably?rnd=42386966681694704
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7792061772370167
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8475527411569621
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3600839280901966
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=803103729167663
+/ably?clientId=production_au.client%2F3340259&rnd=2956882126165372
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/ably?access_code=yjkoaszt&clientId=production_au.client/3390296&capability=
+/ably?clientId=production_au.client%2F2210734&rnd=3729908578170307
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8914647664840067
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F3076442&rnd=7076710820057626
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=4584934246142842
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7356328845009055
+/ably?clientId=production_au.client%2F3352931&rnd=31913432145614906
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=4247062271047688
+/ably?rnd=9831699615621443
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=49537983294053056
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=09767406801541001
+/ably?access_code=inxqqbxb&clientId=production_au.client/3393759&capability=
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2823797740595475
+/okcomputer
+/ably?rnd=1064650603001347
+/ably?clientId=production_au.client%2F2689116&rnd=09319280725913437
+/api/patient/ueoagzgg/messages?birthYear=1976
+/api/patient/ueoagzgg/messages?birthYear=1976
+/api/patient/ueoagzgg/device_registration/ios
+/api/patient/ueoagzgg/video_calls/channel
+/api/patient/ueoagzgg/program?birthYear=1976
+/api/patient/ueoagzgg/program?birthYear=1976
+/ably?clientId=production_au.client/2406886&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538332915.349100&access_code=ueoagzgg&format=msgpack
+/api/patient/ueoagzgg/settings
+/api/patient/ueoagzgg/settings
+/ably?access_code=owqzecij&clientId=production_au.client/1375866&capability=
+/program?redirected=
+/pt/ably?clientId=production_au.provider%2F540919&rnd=36829615124552184
+/okcomputer
+/sign_in
+/ably?clientId=production_au.client%2F2210734&rnd=8866618502218304
+/exercises/415185720
+/ably?rnd=316566505925281
+/okcomputer
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/ably?clientId=production_au.client%2F2359097&rnd=4248154624926568
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8230061160890665
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/okcomputer
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/api/patient/dyejdqkp/exercises/408441802/complete
+/ably?clientId=production_au.client%2F3076442&rnd=08143504552458214
+/ably?clientId=production_au.client/2958688&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538332935.411078&access_code=uezfxvbh&format=msgpack
+/ably?clientId=production_au.client%2F2531726&rnd=9340186126486345
+/api/patient/uezfxvbh/program
+/pt/ably?clientId=production_au.provider%2F1190&rnd=8336349940435945
+/api/patient/uezfxvbh/settings
+/ably?clientId=production_au.client%2F2689116&rnd=06309952400387275
+/home-exercise-video/plank
+/okcomputer
+/ably?rnd=42843379062146614
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8179730596096841
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6367857337855927
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3674260464175938
+/ably?clientId=production_au.client%2F2689116&rnd=0328637644545724
+/ably?clientId=production_au.client%2F3340259&rnd=27625122166244576
+/ably?clientId=production_au.client%2F3352931&rnd=12591445008118263
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8239350809183474
+/ably?clientId=production_au.client%2F2210734&rnd=015207947114171949
+/okcomputer/all
+/sign_in
+/
+/program?redirected=
+/okcomputer
+/ably?rnd=9199926466750649
+/ably?clientId=production_au.client%2F2359097&rnd=08130778536537408
+/pt/ably?clientId=production_au.provider%2F1563&rnd=21965664873195168
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8774084182475026
+/okcomputer
+/ably?rnd=3355450491366604
+/ably?clientId=production_au.client%2F3076442&rnd=07444168114833738
+/ably?clientId=production_au.client%2F2689116&rnd=31217458524186004
+/okcomputer
+/ably?rnd=40564380824021495
+/exercises/415185736
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=20592808959588815
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5390263555004042
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=27823288916649536
+/ably?rnd=2985235690358209
+/program/2018-09-30
+/ably?clientId=production_au.client%2F2689116&rnd=0849585695641808
+/ably?rnd=05625889378502935
+/program/2018-09-29
+/ably?rnd=6903289012211117
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/okcomputer
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/program/2018-09-28
+/ably?rnd=9625766652537614
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3556463705731123
+/program/2018-09-27
+/ably?rnd=749724300597747
+/ably?clientId=production_au.client%2F2210734&rnd=10951912729715985
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/program/2018-09-26
+/ably?rnd=5170933613706419
+/program/2018-09-27
+/ably?rnd=004167760898125539
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/okcomputer
+/api/patient/dyejdqkp/exercises/408441803/complete
+/ably?capability=&clientId=production_au.client/2366938&access_code=tbapevmz
+/ably?clientId=production_au.client%2F3352931&rnd=784780620823091
+/program/2018-09-28
+/ably?rnd=7275029345256707
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7407291327972401
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=045934810168917206
+/api/patient/dyejdqkp/exercises/408441804/complete
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/
+/login
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/ably?clientId=production_au.client%2F2689116&rnd=14967727113577278
+/ably?clientId=production_au.client%2F3076442&rnd=3223501415379004
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/api/patient/dyejdqkp/exercises/408441805/complete
+/home-exercise-video/plank
+/okcomputer
+/ably?rnd=727886587190258
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2527750474626489
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=924324273742186
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6822281163646
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/exercises/413980743
+/ably?rnd=7937576605408864
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/api/patient/dyejdqkp/exercises/408441806/complete
+/ably?clientId=production_au.client%2F2689116&rnd=130280387231541
+/ably?clientId=production_au.client%2F3340259&rnd=6006950354051768
+/api/patient/dyejdqkp/exercises/408441807/complete
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/program/2018-10-01
+/ably?capability=&clientId=production_au.client/3400821&access_code=zjryqdgm
+/ably?access_code=npucmocp&clientId=production_au.client/3172671&capability=
+/okcomputer
+/ably?rnd=8411387201148864
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9150476894890598
+/api/patient/dyejdqkp/exercises/408441808/complete
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=3140418651432164
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/api/patient/dyejdqkp/exercises/408441809/complete
+/okcomputer
+/api/patient/dyejdqkp/exercises/408441810/complete
+/exercises/415185741
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/ably?rnd=3308390295512158
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/api/patient/dyejdqkp/exercises/408441811/complete
+/api/patient/dyejdqkp/exercises/408441812/complete
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=12244192230900852
+/ably?clientId=production_au.client%2F2359097&rnd=046614444720206816
+/api/patient/dyejdqkp/exercises/408441813/complete
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/ably?access_code=dyejdqkp&clientId=production_au.client/3395657&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=45303909343178494
+/okcomputer
+/ably?rnd=6844368744235572
+/ably?capability=&clientId=production_au.client/3401227&access_code=xsyghvis
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9306000705304034
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=12203659520570076
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7799197329532708
+/ably?clientId=production_au.client%2F3352931&rnd=010249095884816262
+/ably?clientId=production_au.client%2F2689116&rnd=2848300611262853
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8867929342735084
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=4272721150144887
+/program/2018-10-01
+/ably?clientId=production_au.client%2F3076442&rnd=8865021845051728
+/ably?rnd=42101582213093036
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7771258799307534
+/ably?clientId=production_au.client%2F3340259&rnd=6179387508995343
+/ably?clientId=production_au.client%2F2538139&rnd=25578405675341
+/ably?clientId=production_au.client%2F2359097&rnd=12494175136411001
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=7420261575320459
+/exercises/413980743/feedback
+/exercises/413980743/next
+/exercises/413980744
+/ably?rnd=07256607598033438
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9309160902807085
+/ably?rnd=5473300825236486
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=902175917921727
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=932102075073757
+/ably?clientId=production_au.client%2F2689116&rnd=8368610654686779
+/okcomputer
+/ably?access_code=ndhrvhun&clientId=production_au.client/2664370&capability=
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6974747525359122
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=19985997765237862
+/ably?clientId=production_au.client%2F2210734&rnd=8350321973419641
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=35036689395048637
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9554503312096829
+/exercises/413980744/feedback
+/exercises/413980744/next
+/exercises/413980745
+/ably?rnd=6888172722395302
+/ably?clientId=production_au.client%2F2359097&rnd=2508963785077418
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=14549721663952386
+/ably?capability=&clientId=production_au.client/2857936&access_code=niafqbmo
+/ably?rnd=8670387975354916
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7665894905165767
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5474024289528003
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7989667836592311
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=8347711957007324
+/pt/ably?clientId=production_au.provider%2F540919&rnd=24703332226852504
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=6961226807010719
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4422262747132928
+/ably?clientId=production_au.client%2F3340259&rnd=3374610858243151
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=9024350299156769
+/ably?clientId=production_au.client%2F3076442&rnd=8816835745535267
+/ably?clientId=production_au.client%2F2359097&rnd=2511033456185505
+/ably?clientId=production_au.client%2F2689116&rnd=4044812895781347
+/ably?rnd=308796073939676
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4513215230962033
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=11264247681550921
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3090981900122729
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=3803190733160895
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3445199390669591
+/okcomputer
+/ably?clientId=production_au.client%2F2821642&rnd=7148645633503352
+/ably?clientId=production_au.client%2F2210734&rnd=5770534041660282
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=27707891038765564
+/exercises/413980745/feedback
+/exercises/413980745/next
+/exercises/413980746
+/ably?rnd=9420151741897489
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=6660363241188285
+/ably?clientId=production_au.client%2F2689116&rnd=8578689361670548
+/ably?clientId=production_au.client%2F2359097&rnd=12732249277138652
+/ably?rnd=31449852885925833
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5544350291442328
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3011289491769338
+/okcomputer
+/ably?rnd=5200297391965161
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=18813869922583093
+/ably?clientId=production_au.client%2F2689116&rnd=23205668516882594
+/ably?clientId=production_au.client%2F3352931&rnd=1638122141428071
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6034738402747435
+/ably?capability=&clientId=production_au.client/3384372&access_code=dikrjgpb
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=6168127967046917
+/pt/ably?clientId=production_au.provider%2F193566&rnd=33836227862994495
+/ably?clientId=production_au.client%2F3340259&rnd=8313119113702315
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=6711429733480352
+/ably?clientId=production_au.client%2F2689116&rnd=6817061572962568
+/ably?clientId=production_au.client%2F2359097&rnd=30812674044555277
+/okcomputer
+/ably?rnd=016531709510076986
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=610252339825456
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9171879074335703
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4734131729400761
+/ably?clientId=production_au.client%2F2689116&rnd=025584261645727135
+/exercises/413980746/feedback
+/okcomputer/all
+/exercises/413980746/next
+/exercises/413980747
+/ably?rnd=39353521077839326
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=6692048784030293
+/pt/ably?clientId=production_au.provider%2F540919&rnd=441340675763255
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=5063863437708307
+/pt/ably?clientId=production_au.provider%2F193566&rnd=27072873553992394
+/okcomputer
+/ably?capability=&clientId=production_au.client/3401227&access_code=xsyghvis
+/ably?clientId=production_au.client%2F2689116&rnd=9794529861075645
+/ably?clientId=production_au.client%2F2359097&rnd=7024526545707479
+/okcomputer
+/ably?rnd=6975367099208012
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=20854498258192145
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8594413463242141
+/pt/ably?clientId=production_au.provider%2F336073&rnd=8302222685859618
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5543427183078693
+/ably?access_code=kbdaqedf&clientId=production_au.client/3254210&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=9488668948883614
+/ably?clientId=production_au.client%2F3076442&rnd=6434344169826114
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7786206525651731
+/ably?clientId=production_au.client%2F3352931&rnd=6106729920634439
+/okcomputer
+/exercises/413980747/feedback
+/exercises/413980747/next
+/ably?clientId=production_au.client%2F2210734&rnd=5744589951659511
+/exercises/413980748
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7739496046572583
+/ably?rnd=20271529620097362
+/ably?clientId=production_au.client%2F3340259&rnd=7923212675905564
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=26701843508170375
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=8207863323476368
+/ably?rnd=19584744805358723
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6281355865821721
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=04016289646522542
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5904442488066362
+/ably?clientId=production_au.client%2F2689116&rnd=5796454314498531
+/okcomputer/all
+/ably?clientId=production_au.client%2F3076442&rnd=3824159318765816
+/okcomputer
+/api/patient/uuoswrcs/video_calls/channel
+/api/patient/uuoswrcs/device_registration/ios
+/ably?clientId=production_au.client/3397918&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538333257.224407&access_code=uuoswrcs&format=msgpack
+/api/patient/uuoswrcs/program
+/api/patient/uuoswrcs/program
+/api/patient/uuoswrcs/settings
+/api/patient/uuoswrcs/settings
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9946397427936993
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=8069039452600559
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7203222750332414
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=023392912377491415
+/ably?clientId=production_au.client%2F2689116&rnd=8416031762076241
+/okcomputer
+/ably?rnd=45834192857435596
+/ably?clientId=production_au.client%2F2359097&rnd=06351844270401541
+/webpack/pt-bundle-3c3e32b470055091a61e.css
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5654056839451702
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=23487030801278386
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=450104509610197
+/ably?clientId=production_au.client%2F2689116&rnd=6767068000768277
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=007553364927459505
+/ably?clientId=production_au.client%2F3076442&rnd=8518169135342023
+/webpack/vendor-bundle-69f9633f3180ee71ed4d.js
+/okcomputer
+/assets/pt/application-d047d3438140801174338bc38167e92c828ae0d65e1d17620e7731898e476a58.js
+/webpack/common-bundle-d4481460e7b360affb52.js
+/ably?clientId=production_au.client%2F3340259&rnd=1420832714469853
+/webpack/pt-bundle-3c3e32b470055091a61e.js
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9261568717770177
+/okcomputer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2210734&rnd=10696880991864255
+/ably?clientId=production_au.client%2F2689116&rnd=6618385141022927
+/okcomputer
+/ably?rnd=9613403901756887
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=42912788062667606
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8035701793413068
+/ably?clientId=production_au.client%2F3352931&rnd=23787025929340655
+/ably?clientId=production_au.client%2F2359097&rnd=4632778752375144
+/okcomputer/all
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=18481286407081576
+/ably?clientId=production_au.client%2F2689116&rnd=5433230903145492
+/exercises/413980748/feedback
+/okcomputer
+/exercises/413980748/next
+/exercises/413980749
+/ably?rnd=9924279012430938
+/ably?capability=&clientId=production_au.client/3417095&access_code=opozhukh
+/pt/ably?clientId=production_au.provider%2F540919&rnd=002224328522816954
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=1474090605691072
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=27851045608257907
+/ably?clientId=production_au.client%2F2210734&rnd=17931996026418218
+/ably?clientId=production_au.client%2F2689116&rnd=4694857767028604
+/okcomputer
+/ably?rnd=6276701865450478
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=25807914647140917
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6675344024252396
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6533027815864321
+/ably?clientId=production_au.client%2F2689116&rnd=43805981396471183
+/ably?clientId=production_au.client%2F2359097&rnd=09962558563191992
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5147483918641838
+/okcomputer
+/ably?capability=&clientId=production_au.client/2793272&access_code=jdvbhgnd
+/ably?clientId=production_au.client%2F3340259&rnd=07566814224461105
+/ably?clientId=production_au.client%2F3076442&rnd=5627530503470506
+/home-exercise-video/plank
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=19870783625644362
+/exercises/413980749/feedback
+/exercises/413980749/next
+/exercises/413980750
+/login
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/ably?rnd=5799993050540774
+/users/sign_in
+/ably?clientId=production_au.client%2F2210734&rnd=20675451971893555
+/exercises
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/ably?clientId=production_au.client%2F2689116&rnd=7838029804772833
+/okcomputer
+/themes/0/categories.json
+/exercises.json?page=1
+/okcomputer/all
+/api/patient/oddbbuum/video_calls/channel
+/api/patient/oddbbuum/messages?birthYear=1955
+/ably?rnd=5778514560865906
+/api/patient/oddbbuum/device_registration/ios
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=46393163319269415
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5845228157497269
+/ably?clientId=production_au.client/3262954&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538333376.093427&access_code=oddbbuum&format=msgpack
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=697121234042444
+/ably?clientId=production_au.client%2F2689116&rnd=10174830879807928
+/api/patient/oddbbuum/program?birthYear=1955
+/ably?clientId=production_au.client%2F2359097&rnd=1333767751534003
+/api/patient/oddbbuum/surveys
+/api/patient/oddbbuum/settings
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8795655518435963
+/okcomputer
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=06947337266080944
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6145726356924217
+/ably?capability=&clientId=production_au.client/2094300&access_code=tnrxztfu
+/ably?clientId=production_au.client%2F2689116&rnd=4178922286657527
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=431883585185429
+/ably?rnd=04511689642066652
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6704466902251016
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=09906921542141078
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5271207363014707
+/ably?clientId=production_au.client%2F2689116&rnd=06729750779154209
+/ably?clientId=production_au.client%2F3076442&rnd=48333069137053486
+/ably?clientId=production_au.client%2F2359097&rnd=017585500686809974
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=10753354471299259
+/api/patient/oddbbuum/exercises/396204642/complete
+/home-exercise-video/plank
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F5533&rnd=41517385692044706
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9127839244610512
+/api/patient/oddbbuum/exercises/396204643/complete
+/ably?clientId=production_au.client%2F3340259&rnd=6639164742771846
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=6062089163903264
+/ably?clientId=production_au.client%2F2210734&rnd=8883262114635087
+/exercises/413980750/feedback
+/okcomputer/all
+/exercises/413980750/next
+/exercises/413980751
+/ably?rnd=3647595910276171
+/okcomputer
+/ably?rnd=663999770772741
+/ably?clientId=production_au.client%2F3352931&rnd=6780273676233162
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6913492110371096
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=595671544879494
+/pt/ably?clientId=production_au.provider%2F138244&rnd=5473285245110311
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5330390156651175
+/ably?clientId=production_au.client%2F2689116&rnd=16079392635600498
+/ably?clientId=production_au.client%2F2359097&rnd=35699134285960276
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=18291798719907293
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/ably?rnd=0013815147075770806
+/ably?clientId=production_au.client%2F3076442&rnd=9531021394579784
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5153027467654254
+/ably?access_code=ufamviba&clientId=production_au.client/2963883&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=5644792750259904
+/ably?clientId=production_au.client%2F2210734&rnd=14348683789813443
+/okcomputer
+/.well-known/apple-app-site-association
+/ably?rnd=07076853905529501
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6239783385126627
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=41674998471257063
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5031616101520802
+/ably?clientId=production_au.client%2F2689116&rnd=30686357210869275
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=2282540890167506
+/api/patient/oddbbuum/exercises/396204644/complete
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7318862200837253
+/ably?access_code=rbaqbbfz&clientId=production_au.client/2858296&capability=
+/ably?access_code=rbaqbbfz&clientId=production_au.client/2858296&capability=
+/ably?access_code=rbaqbbfz&clientId=production_au.client/2858296&capability=
+/ably?clientId=production_au.client%2F3076442&rnd=7973864541110428
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=8284412889410389
+/pt/ably?clientId=production_au.provider%2F193566&rnd=1417182034432678
+/ably?clientId=production_au.client%2F3340259&rnd=22038354518348846
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=5182741095896646
+/api/patient/oddbbuum/exercises/400378104/complete
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=05727630293416808
+/okcomputer
+/exercises/413980751/feedback
+/ably?rnd=9212829481696265
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3533906171980188
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8818024471699308
+/exercises/413980751/next
+/ably?clientId=production_au.client%2F2689116&rnd=6391072869355878
+/exercises/413980752
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=22923883904835995
+/ably?rnd=022706383365741267
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=4450304985140847
+/api/patient/cqnapufk/video_calls/channel
+/api/patient/cqnapufk/device_registration/ios
+/ably?clientId=production_au.client/3134270&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538333507.344628&access_code=cqnapufk&format=msgpack
+/ably?clientId=production_au.client/3134270&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538333507.489635&access_code=cqnapufk&format=msgpack
+/api/patient/cqnapufk/program
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3316781878557187
+/api/patient/cqnapufk/program
+/api/patient/cqnapufk/settings
+/api/patient/cqnapufk/settings
+/api/patient/oddbbuum/exercises/400378165/complete
+/okcomputer
+/.well-known/apple-app-site-association
+/ably?clientId=production_au.client%2F3076442&rnd=26182081569145643
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7636062655463298
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=27490051904472446
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=03026486930199468
+/ably?rnd=6127185036621472
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6876447540786073
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8067270478259165
+/ably?clientId=production_au.client%2F2689116&rnd=7035655815206532
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9440911245148969
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=26692356261267025
+/pt/ably?clientId=production_au.provider%2F540919&rnd=0810388521602694
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=33265465783043935
+/pt/ably?clientId=production_au.provider%2F193566&rnd=620500444527661
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=09647416124997787
+/ably?clientId=production_au.client%2F2689116&rnd=7899656277923186
+/okcomputer/all
+/ably?clientId=production_au.client%2F3395517&rnd=8261564904560881
+/okcomputer
+/ably?clientId=production_au.client%2F3395517&rnd=11066562330780538
+/ably?access_code=oteuienk&clientId=production_au.client/3344713&capability=
+/ably?clientId=production_au.client%2F2210734&rnd=6605135421688371
+/ably?rnd=08915133700522548
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4085920318409726
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=012573936069570468
+/ably?clientId=production_au.client%2F2689116&rnd=06312250616915627
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=03785023857064118
+/okcomputer
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/pt/ably?clientId=production_au.provider%2F540919&rnd=020603865306921154
+/ably?clientId=production_au.client%2F2359097&rnd=9808665879414502
+/ably?clientId=production_au.client%2F3352931&rnd=4701564960248559
+/okcomputer
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/exercises/413980752/feedback
+/exercises/413980752/next
+/exercises/413980753
+/ably?rnd=37350254854807297
+/ably?clientId=production_au.client%2F3076442&rnd=2198510939978242
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4406615068945219
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=4845806349964079
+/okcomputer
+/ably?clientId=production_au.client/3397918&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538333588.240421&access_code=uuoswrcs&format=msgpack
+/api/patient/uuoswrcs/program
+/api/patient/uuoswrcs/settings
+/ably?clientId=production_au.client%2F2210734&rnd=1932707199975967
+/ably?rnd=8222627629917494
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7531513013637867
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5741226240765631
+/ably?clientId=production_au.client%2F2689116&rnd=835356908135467
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=776124157531207
+/okcomputer
+/ably?capability=&clientId=production_au.client/3265618&access_code=xdxvqsvf
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F540919&rnd=24421890902573296
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=8365856079090825
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9139991879986034
+/ably?clientId=production_au.client%2F3076442&rnd=41429663018013296
+/exercises/413980753/feedback
+/ably?clientId=production_au.client%2F3340259&rnd=5851120015023581
+/exercises/413980753/next
+/exercises/413980754
+/ably?clientId=production_au.client%2F2689116&rnd=14165348746924278
+/ably?clientId=production_au.client%2F3352931&rnd=15047269915778894
+/okcomputer/all
+/ably?rnd=4551310118433821
+/okcomputer
+/ably?capability=&client_id=production_au.client/2066399&access_code=ffguuors
+/ably?rnd=7980915398144564
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3977393435213523
+/ably?clientId=production_au.client%2F2210734&rnd=6751401670644248
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6089860274696088
+/ably?clientId=production_au.client%2F2689116&rnd=7057594868717485
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5885482699038211
+/ably?capability=&clientId=production_au.client/3401227&access_code=xsyghvis
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9700518546181112
+/ably?clientId=production_au.client%2F2359097&rnd=20492811270649702
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3771311239251618
+/ably?clientId=production_au.client%2F2689116&rnd=10675757497206062
+/okcomputer
+/.well-known/apple-app-site-association
+/okcomputer
+/ably?rnd=7061096091397747
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5151687107404606
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=14379455107360806
+/ably?clientId=production_au.client%2F2689116&rnd=9908142868605541
+/ably?clientId=production_au.client%2F2210734&rnd=9585521857162591
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=36596781836212067
+/ably?clientId=production_au.client%2F3352931&rnd=5043674487928134
+/ably?clientId=production_au.client%2F3076442&rnd=5774034116789756
+/home-exercise-video/plank
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5849483186206059
+/ably?clientId=production_au.client%2F3340259&rnd=9043809550272881
+/ably?clientId=production_au.client%2F2359097&rnd=6623134888627262
+/okcomputer
+/exercises/413980754/feedback
+/pt/ably?clientId=production_au.provider%2F193566&rnd=4461751020959346
+/exercises/413980754/next
+/exercises/413980755
+/ably?rnd=7266354986234692
+/okcomputer/all
+/ably?clientId=production_au.client%2F2689116&rnd=318820520742781
+/okcomputer
+/okcomputer
+/ably?rnd=22366098085212616
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=005341904239033468
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=47789942795476126
+/ably?clientId=production_au.client%2F2689116&rnd=7909694306317621
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8650024135774042
+/ably?clientId=production_au.client%2F2210734&rnd=7713553332324161
+/ably?clientId=production_au.client%2F3076442&rnd=09209238127615749
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=22309870739134574
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=09887320123264609
+/ably?access_code=ufamviba&clientId=production_au.client/2963883&capability=
+/ably?rnd=9943186613548902
+/pt/ably?clientId=production_au.provider%2F193566&rnd=39005008917328743
+/ably?clientId=production_au.client%2F2689116&rnd=49180016894621326
+/okcomputer
+/okcomputer
+/ably?access_code=gmpvwnvm&clientId=production_au.client/1075218&capability=
+/ably?rnd=8466047238643746
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=04018333902203097
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=16624192209166355
+/ably?clientId=production_au.client%2F2689116&rnd=15289840961571444
+/exercises/413980755/feedback
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=09121985952655032
+/exercises/413980755/next
+/exercises/413980756
+/ably?rnd=5409619329895022
+/ably?clientId=production_au.client%2F2210734&rnd=8588189269472444
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=9451324617367728
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8510678064756143
+/ably?clientId=production_au.client%2F3340259&rnd=03149706171617561
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=19896850153248957
+/pt/ably?clientId=production_au.provider%2F193566&rnd=38757709180269795
+/okcomputer/all
+/ably?clientId=production_au.client%2F2689116&rnd=7694554821154025
+/okcomputer
+/ably?capability=&clientId=production_au.client/2820288&access_code=cxyyvhty
+/ably?capability=&clientId=production_au.client/2820288&access_code=cxyyvhty
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=019402306591040253
+/ably?rnd=9634418863941934
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5000197091411227
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6841787838153546
+/ably?clientId=production_au.client%2F2689116&rnd=19390607528812653
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7178264228054059
+/ably?access_code=oteuienk&clientId=production_au.client/3344713&capability=
+/ably?clientId=production_au.client%2F2210734&rnd=42318235669457627
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5613389974738794
+/ably?clientId=production_au.client%2F3076442&rnd=7139308338189833
+/okcomputer
+/ably?clientId=production_au.client%2F3396068&rnd=978049084154527
+/pt/ably?clientId=production_au.provider%2F193566&rnd=008595586266401112
+/ably?clientId=production_au.client%2F2359097&rnd=9473938111345339
+/exercises/413980756/feedback
+/exercises/413980756/next
+/ably?clientId=production_au.client%2F2689116&rnd=6186346535492719
+/okcomputer
+/exercises/413980757
+/ably?rnd=5869527208188611
+/okcomputer
+/ably?rnd=43172307906173635
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6930955236798886
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8546286998506007
+/ably?clientId=production_au.client%2F2689116&rnd=8282827233312535
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5516154688239716
+/home-exercise-video/plank
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=8479759517459926
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4834183535877983
+/ably?clientId=production_au.client%2F3340259&rnd=4447451197154103
+/ably?access_code=iudhcxav&clientId=production_au.client/2868206&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=23230150515243642
+/okcomputer/all
+/ably?clientId=production_au.client%2F3076442&rnd=0033377631172626376
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6355065113769283
+/ably?clientId=production_au.client%2F2359097&rnd=009205834813072355
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=576951834207124
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/ably?clientId=production_au.client%2F2536387&rnd=2544451384133648
+/ably?clientId=production_au.client%2F2536387&rnd=5948515208472361
+/okcomputer
+/ably?access_code=xhcbwcab&clientId=production_au.client/2763835&capability=
+/ably?rnd=10886637767495233
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=29343511412373036
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3783580915136302
+/ably?clientId=production_au.client%2F2689116&rnd=2639481558378478
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=29384975671366154
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=9687032348498474
+/pt/ably?clientId=production_au.provider%2F540919&rnd=036455141728175766
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3574914050355973
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=7913128361725616
+/ably?clientId=production_au.client%2F2689116&rnd=012005216611705505
+/ably?clientId=production_au.client%2F3076442&rnd=3858153370928181
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=6506281539314747
+/ably?clientId=production_au.client%2F3340259&rnd=4100260447160755
+/ably?rnd=5862218013590017
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7851511746473931
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3796270970074185
+/ably?clientId=production_au.client%2F2689116&rnd=558453485130129
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3399348297694942
+/okcomputer
+/exercises/413980757/feedback
+/exercises/413980757/next
+/exercises/413980758
+/ably?clientId=production_au.client%2F2210734&rnd=1239563246920301
+/ably?rnd=8157283440486224
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4738140768193404
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2536387&rnd=8998761902953935
+/ably?clientId=production_au.client%2F2536387&rnd=352608726368173
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7834865047585988
+/ably?clientId=production_au.client%2F2689116&rnd=9131894755303887
+/ably?clientId=production_au.client%2F2359097&rnd=16032772218385527
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=20004170717889191
+/ably?access_code=whxpxean&clientId=production_au.client/2847180&capability=
+/ably?rnd=1431972476789516
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6933363017817515
+/.well-known/apple-app-site-association
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8182543433766734
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=030524882186652613
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=8013722634725893
+/ably?capability=&clientId=production_au.client/2064122&access_code=rvuneoop
+/api/patient/fiwasbqv/program
+/api/patient/fiwasbqv/video_calls/channel
+/api/patient/fiwasbqv/surveys
+/ably?clientId=production_au.client%2F3397578&rnd=3893695193341671
+/ably?clientId=production_au.client%2F2210734&rnd=3001828346833162
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9468792679439639
+/ably?clientId=production_au.client%2F3340259&rnd=30731742713719024
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=520574341219096
+/api/patient/fiwasbqv/client
+/ably?clientId=production_au.client%2F2689116&rnd=5068753467360623
+/ably?clientId=production_au.client%2F2359097&rnd=04636757454168139
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=7573074179516309
+/home-exercise-video/plank
+/okcomputer
+/ably?rnd=7525396126930841
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=889317635311214
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7069387258017672
+/ably?access_code=fiwasbqv&clientId=production_au.client/2956786&capability=
+/api/patient/fiwasbqv/device_registration/android
+/ably?clientId=production_au.client%2F2689116&rnd=8153149898252765
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5738776477635728
+/ably?access_code=fiwasbqv&clientId=production_au.client/2956786&capability=
+/ably?access_code=owqzecij&clientId=production_au.client/1375866&capability=
+/okcomputer
+/ably?clientId=production_au.client%2F3397578&rnd=7875509129849643
+/exercises/413980758/feedback
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5351107210770807
+/exercises/413980758/next
+/ably?clientId=production_au.client%2F2210734&rnd=8975184795999829
+/exercises/413980759
+/ably?rnd=9873968954874449
+/ably?access_code=yzixnigz&clientId=production_au.client/2489385&capability=
+/okcomputer/all
+/program/2018-09-29
+/ably?rnd=040338786505542235
+/okcomputer
+/ably?rnd=9625766652537614
+/program/2018-09-28
+/pt/ably?clientId=production_au.provider%2F193566&rnd=48999169433090395
+/ably?rnd=006859997649200644
+/ably?clientId=production_au.client%2F2689116&rnd=36193599750972427
+/preferences
+/ably?rnd=659818223142283
+/ably?clientId=production_au.client%2F3352931&rnd=6902318301971129
+/ably?clientId=production_au.client%2F2359097&rnd=4886020563925655
+/sign_out
+/sign_in
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=09322040347216942
+/okcomputer
+/ably?rnd=059855648728956545
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7499599732158897
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8785460043491029
+/ably?clientId=production_au.client%2F2689116&rnd=7577347810207502
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=34088691418964623
+/ably?clientId=production_au.client%2F3340259&rnd=6550394795456852
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=10482031817599546
+/ably?clientId=production_au.client%2F2210734&rnd=07983520969679425
+/ably?rnd=32075043934441383
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=043252700064405625
+/ably?clientId=production_au.client%2F2689116&rnd=15800093675108373
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F1777249&rnd=04903158726360346
+/ably?clientId=production_au.client%2F2359097&rnd=045850592787754385
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3076442&rnd=6516144044639179
+/okcomputer
+/ably?rnd=8103373643741487
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=13556487487778757
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9270960235103762
+/ably?clientId=production_au.client%2F2689116&rnd=5534091472204989
+/login
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5250451455394336
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/ably?clientId=production_au.client%2F3352931&rnd=15190686351350013
+/users/sign_in
+/exercises
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/themes/0/categories.json
+/okcomputer
+/exercises.json?page=1
+/pt/ably?clientId=production_au.provider%2F540919&rnd=4616753943232941
+/okcomputer/all
+/ably?clientId=production_au.client%2F2210734&rnd=27053925892602915
+/okcomputer
+/ably?capability=&clientId=production_au.client/2998044&access_code=fwzwjiyx
+/pt/ably?clientId=production_au.provider%2F193566&rnd=32184114139136333
+/ably?capability=&clientId=production_au.client/2998044&access_code=fwzwjiyx
+/ably?clientId=production_au.client%2F2689116&rnd=9170122597511912
+/ably?capability=&clientId=production_au.client/2998044&access_code=fwzwjiyx
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=1787055416646104
+/
+/login
+/servers
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/okcomputer
+/ably?rnd=4639718877209895
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=2098656995146737
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3820944684383958
+/ably?clientId=production_au.client%2F2689116&rnd=42861760903112667
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=4197343874472246
+/ably?clientId=production_au.client%2F3076442&rnd=349850423878065
+/ably?access_code=owqzecij&clientId=production_au.client/1375866&capability=
+/ably?capability=&clientId=production_au.client/2793272&access_code=jdvbhgnd
+/okcomputer
+/ably?capability=&clientId=production_au.client/2546752&access_code=nbqhkeiz
+/ably?clientId=production_au.client%2F3340259&rnd=27398759780576576
+/pt/ably?clientId=production_au.provider%2F540919&rnd=9917204813263305
+/ably?clientId=production_au.client%2F2952572&rnd=002049950043502502
+/ably?capability=&clientId=production_au.client/2807746&access_code=jbpixdez
+/ably?capability=&clientId=production_au.client/2807746&access_code=jbpixdez
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=017997825256948374
+/ably?clientId=production_au.client%2F3352931&rnd=6005738988930216
+/.well-known/apple-app-site-association
+/pt/ably?clientId=production_au.provider%2F193566&rnd=11951396117284041
+/ably?clientId=production_au.client%2F2689116&rnd=06411559160977975
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=804265943055946
+/ably?capability=&clientId=production_au.client/2998044&access_code=fwzwjiyx
+/ably?capability=&clientId=production_au.client/2998044&access_code=fwzwjiyx
+/home-exercise-video/plank
+/okcomputer
+/ably?capability=&clientId=production_au.client/2998044&access_code=fwzwjiyx
+/ably?capability=&clientId=production_au.client/2998044&access_code=fwzwjiyx
+/ably?rnd=9534568423038212
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=4358292864037496
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=10765052424982735
+/ably?clientId=production_au.client%2F2689116&rnd=2426988595016999
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=3949813247598608
+/okcomputer
+/ably?clientId=production_au.client%2F3076442&rnd=8600078216272369
+/okcomputer/all
+/ably?capability=&clientId=production_au.client/3400764&access_code=vvctmjru
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6596274220645069
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=9631879156549148
+/pt/ably?clientId=production_au.provider%2F193566&rnd=7102151323783186
+/ably?clientId=production_au.client%2F2689116&rnd=3214914996124174
+/okcomputer
+/ably?capability=&clientId=production_au.client/2998044&access_code=fwzwjiyx
+/ably?clientId=production_au.client%2F2359097&rnd=883725056731367
+/okcomputer
+/ably?rnd=17646411757828884
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=07265782262182952
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=147727100957471
+/ably?clientId=production_au.client%2F2689116&rnd=5632526573546595
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6273901203934062
+/okcomputer
+/ably?capability=&clientId=production_au.client/2792679&access_code=ixopapxy
+/pt/ably?clientId=production_au.provider%2F540919&rnd=94475022214128
+/ably?clientId=production_au.client%2F3340259&rnd=2542202773485389
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=08825578113912425
+/pt/ably?clientId=production_au.provider%2F193566&rnd=8019828467654142
+/ably?clientId=production_au.client%2F2689116&rnd=2291167841807793
+/okcomputer
+/ably?capability=&clientId=production_au.client/2772434&access_code=mgbrvyer
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F3076442&rnd=8715537658782617
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=1103454247447142
+/ably?rnd=7956869079992452
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3788558534071955
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6480938974190895
+/ably?clientId=production_au.client%2F2689116&rnd=08714547457118593
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5453231260363149
+/ably?capability=&clientId=production_au.client/2998044&access_code=fwzwjiyx
+/okcomputer/all
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=08022327724054668
+/pt/ably?clientId=production_au.provider%2F540919&rnd=3049780223193974
+/ably?clientId=production_au.client%2F2210734&rnd=03793742166159464
+/pt/ably?clientId=production_au.provider%2F193566&rnd=534325501370793
+/ably?clientId=production_au.client%2F2689116&rnd=391027861910916
+/okcomputer
+/okcomputer
+/ably?capability=&clientId=production_au.client/3393843&access_code=etgxzjor
+/ably?clientId=production_au.client%2F2359097&rnd=1632093055446946
+/pt/ably?clientId=production_au.provider%2F1222721&rnd=43633899810306165
+/ably?rnd=8306591787224193
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=9379075345721033
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=613701123792999
+/okcomputer
+/ably?clientId=production_au.client%2F2689116&rnd=4939045860704332
+/ably?clientId=production_au.client%2F3076442&rnd=5074881752050691
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=02548851260907381
+/ably?clientId=production_au.client%2F3340259&rnd=7239745631887194
+/okcomputer
+/ably?capability=&clientId=production_au.client/3411232&access_code=hhfaiduq
+/ably?capability=&clientId=production_au.client/3172519&access_code=mwwmhznf
+/pt/ably?clientId=production_au.provider%2F540919&rnd=594082983350261
+/ably?access_code=zdpazuye&clientId=production_au.client/2707131&capability=
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=871172058256797
+/ably?clientId=production_au.client%2F2689116&rnd=5697585738774993
+/ably?clientId=production_au.client%2F2210734&rnd=5607170327464814
+/ably?clientId=production_au.client%2F3352931&rnd=12972493967318544
+/home-exercise-video/plank
+/okcomputer
+/ably?capability=&clientId=production_au.client/2808179&access_code=hgnaqjct
+/ably?clientId=production_au.client%2F2359097&rnd=5578666229793452
+/ably?capability=&clientId=production_au.client/2808179&access_code=hgnaqjct
+/okcomputer
+/ably?rnd=6773345881653081
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=37837003312987316
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8436065161293522
+/ably?clientId=production_au.client%2F2689116&rnd=6449080419811053
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=9531617720286525
+/okcomputer/all
+/ably?clientId=production_au.client%2F3076442&rnd=9985459954787226
+/ably?capability=&clientId=production_au.client/2808179&access_code=hgnaqjct
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=7294290452793912
+/clients
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/home-exercise-video/unilateral-scapula-retraction-with-thoracic-rotation-%255b19020%255d
+/ably?capability=&clientId=production_au.client/2857936&access_code=niafqbmo
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=832530319835548
+/ably?clientId=production_au.client%2F2689116&rnd=8463951774935299
+/ably?clientId=production_au.client%2F2210734&rnd=04456215749052972
+/pt/ably?rnd=7010857134554997
+/ably?clientId=production_au.client/3338846&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538334168.959875&access_code=axhrzyjp&format=msgpack
+/clients.json
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=2504717270370953
+/okcomputer
+/ably?rnd=6512807861648551
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=8509255844539045
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5345376290186437
+/ably?clientId=production_au.client%2F2689116&rnd=0824211479620458
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=5447687296646131
+/ably?clientId=production_au.client%2F3352931&rnd=7882114341202882
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=07587261362787479
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6107345215199029
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F193566&rnd=38344042462596195
+/ably?clientId=production_au.client%2F2689116&rnd=07445702417887867
+/ably?clientId=production_au.client%2F2210734&rnd=7080474076319208
+/home-exercise-video/plank
+/okcomputer
+/clients.json?page=2&patient_search%5Bquery%5D=&patient_search%5Bfilters%5D%5Border%5D=unread_messages&patient_search%5Bfilters%5D%5Bscope%5D=
+/ably?clientId=production_au.client%2F3076442&rnd=8604789369918484
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=26139463308564536
+/ably?rnd=3522636731130182
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=7831807637850707
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=16877430252592296
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/ably?clientId=production_au.client%2F2689116&rnd=9098134614084776
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=7322740125471385
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/okcomputer/all
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/ably?clientId=production_au.client%2F3399110&rnd=15642994802245358
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=6857976847710447
+/ably?capability=&clientId=production_au.client/2808179&access_code=hgnaqjct
+/ably?capability=&clientId=production_au.client/2808179&access_code=hgnaqjct
+/okcomputer
+/api/patient/aosakwpj/video_calls/channel
+/assets/OpenSans-Italic-webfont-1617f5a058a7b704f9c4d8f2d3032fd67a71b815adeca1322c56e615a6a817fd.woff
+/pt/ably?clientId=production_au.provider%2F193566&rnd=9117752754079942
+/api/patient/aosakwpj/device_registration/ios
+/api/patient/aosakwpj/program
+/ably?clientId=production_au.client/2531734&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538334226.670000&access_code=aosakwpj&format=msgpack
+/ably?clientId=production_au.client%2F2689116&rnd=6211825135977485
+/ably?capability=&clientId=production_au.client/2808179&access_code=hgnaqjct
+/api/patient/aosakwpj/settings
+/ably?capability=&clientId=production_au.client/2808179&access_code=hgnaqjct
+/ably?clientId=production_au.client%2F2210734&rnd=8861505057894832
+/okcomputer
+/api/patient/hgnaqjct/exercises/370964478/complete
+/ably?capability=&clientId=production_au.client/2808179&access_code=hgnaqjct
+/ably?rnd=22421721923435078
+/ably?capability=&clientId=production_au.client/2808179&access_code=hgnaqjct
+/okcomputer
+/ably?rnd=9899838322216148
+/ably?clientId=production_au.client%2F2359097&rnd=3852725836661386
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5357681420394818
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=913382529573596
+/ably?clientId=production_au.client%2F2689116&rnd=9005751704580567
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=21433614386953725
+/api/patient/pexbxmks/video_calls/channel
+/api/patient/pexbxmks/messages?birthYear=1981
+/okcomputer
+/api/patient/pexbxmks/program?birthYear=1981
+/ably?clientId=production_au.client/1924927&capability=%7B%22*%22:%5B%22*%22%5D%7D&timestamp=1538334247.932490&access_code=pexbxmks&format=msgpack
+/api/patient/pexbxmks/program?birthYear=1981
+/api/patient/pexbxmks/device_registration/ios
+/ably?clientId=production_au.client%2F3340259&rnd=18655556219555292
+/api/patient/pexbxmks/messages?birthYear=1981
+/pt/ably?clientId=production_au.provider%2F540919&rnd=5110839236686213
+/ably?access_code=fiwasbqv&clientId=production_au.client/2956786&capability=
+/ably?access_code=oteuienk&clientId=production_au.client/3344713&capability=
+/ably?access_code=oteuienk&clientId=production_au.client/3344713&capability=
+/okcomputer
+/api/patient/pexbxmks/exercises/373660302/complete
+/api/patient/pexbxmks/exercises/373660302/complete
+/api/patient/pexbxmks/messages?birthYear=1981
+/ably?clientId=production_au.client%2F3076442&rnd=3835463267596193
+/api/patient/pexbxmks/settings
+/pt/ably?clientId=production_au.provider%2F193566&rnd=2288046675772557
+/api/patient/pexbxmks/settings
+/ably?clientId=production_au.client%2F2689116&rnd=026049530241809782
+/home-exercise-video/plank
+/api/patient/pexbxmks/exercises/373660531/complete
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=5175483723591126
+/api/patient/pexbxmks/program?birthYear=1981
+/api/patient/pexbxmks/settings
+/api/patient/pexbxmks/exercises/373660175/complete
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=47567703518389837
+/ably?clientId=production_au.client%2F2689116&rnd=26009681745629076
+/okcomputer/all
+/ably?rnd=551336655417491
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=3805322663726065
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=12000775551431975
+/ably?clientId=production_au.client%2F2359097&rnd=33418326907204343
+/ably?clientId=production_au.client%2F2802754&rnd=11432213897999532
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6604532914555641
+/okcomputer
+/api/patient/pexbxmks/exercises/373660949/complete
+/api/patient/pexbxmks/exercises/373660701/complete
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=937094909324276
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3171408161575995
+/ably?clientId=production_au.client%2F2689116&rnd=7109868163111985
+/ably?capability=&clientId=production_au.client/2808179&access_code=hgnaqjct
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=2950399353766566
+/
+/login
+/servers
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.css
+/webpack/vendor-bundle-3ccbb3e5c255732eca9b.js
+/webpack/common-bundle-a3e9ffae3734e1efcaa7.js
+/webpack/pt-bundle-0982e7cfac96e5923788.css
+/webpack/pt-bundle-0982e7cfac96e5923788.js
+/ably?clientId=production_au.client%2F3400226&rnd=511461514279221
+/ably?clientId=production_au.client%2F3076442&rnd=018441503274465476
+/ably?capability=&clientId=production_au.client/2808179&access_code=hgnaqjct
+/okcomputer
+/api/patient/pexbxmks/exercises/386632325/complete
+/ably?capability=&clientId=production_au.client/2925116&access_code=ugzjsqzm
+/ably?capability=&clientId=production_au.client/2925116&access_code=ugzjsqzm
+/ably?capability=&clientId=production_au.client/2808179&access_code=hgnaqjct
+/ably?clientId=production_au.client%2F2689116&rnd=5774078733215704
+/ably?rnd=4533788072227847
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=15873506346166044
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=270992109374276
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=6991721075532775
+/ably?clientId=production_au.client%2F2802754&rnd=14502271596459093
+/okcomputer
+/ably?clientId=production_au.client%2F2359097&rnd=8319075530316449
+/api/patient/pexbxmks/exercises/386632390/complete
+/okcomputer
+/ably?clientId=production_au.client%2F3352931&rnd=8205234874478489
+/pt/ably?clientId=production_au.provider%2F540919&rnd=17091825632564128
+/pt/ably?clientId=production_au.provider%2F193566&rnd=6124720082774555
+/home-exercise-video/plank
+/ably?clientId=production_au.client%2F2689116&rnd=313467403823259
+/okcomputer
+/ably?clientId=production_au.client%2F3340259&rnd=7274225806899578
+/ably?clientId=production_au.client%2F2210734&rnd=6608577532630053
+/ably?clientId=production_au.client%2F3076442&rnd=8085074309644791
+/okcomputer
+/okcomputer/all
+/ably?clientId=production_au.client%2F2689116&rnd=9790765864206938
+/ably?rnd=520998671625253
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6438134611807171
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=5001156303072369
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=664916590288515
+/ably?clientId=production_au.client%2F2359097&rnd=18395784849027774
+/okcomputer
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8402403146181192
+/pt/ably?clientId=production_au.provider%2F193566&rnd=3007773145358772
+/ably?clientId=production_au.client%2F2689116&rnd=7565979865082268
+/okcomputer
+/ably?clientId=production_au.client%2F2210734&rnd=8911407632733046
+/okcomputer
+/ably?clientId=production_au.client%2F2696933&rnd=557782230903521
+/ably?clientId=production_au.client%2F3352931&rnd=6216603188659167
+/ably?clientId=production_au.client%2F2689116&rnd=9373769163188495
+/okcomputer
+/ably?rnd=6320140877931204
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=23148551185076083
+/pt/ably?clientId=production_au.provider%2F3231350&rnd=6940501517514404
+/pt/ably?clientId=production_au.provider%2F2032316&rnd=20432123083924547
+/api/patient/hgnaqjct/exercises/370964475/complete
+/ably?capability=&clientId=production_au.client/2808179&access_code=hgnaqjct
+/ably?clientId=production_au.client%2F2359097&rnd=7513677609610105
+/ably?capability=&clientId=production_au.client/2808179&access_code=hgnaqjct
+/clients
+/okcomputer
+/clients/3417449
+/ably?capability=&clientId=production_au.client/2808179&access_code=hgnaqjct
+/ably?clientId=production_au.client%2F3076442&rnd=3055761341533092
+/pt/ably?clientId=production_au.provider%2F540919&rnd=8039034149016726
+/home-exercise-video/plank
+/pt/ably?clientId=production_au.provider%2F193566&rnd=5197174574257564
+/okcomputer
+/ably?access_code=vgieweck&clientId=production_au.client/3302102&capability=
+/ably?clientId=production_au.client%2F2689116&rnd=6584547572487274