diff --git a/deps/db/src/logseq/db/frontend/property.cljs b/deps/db/src/logseq/db/frontend/property.cljs index d2717c23fb..657cc6a044 100644 --- a/deps/db/src/logseq/db/frontend/property.cljs +++ b/deps/db/src/logseq/db/frontend/property.cljs @@ -563,11 +563,7 @@ :hide? true} :rtc {:rtc/ignore-attr-when-init-upload true :rtc/ignore-attr-when-init-download true - :rtc/ignore-attr-when-syncing true}} - ;; TODO: remove later - :logseq.property/test1 {:title "test1 property" - :schema {:type :default - :public? true}}))) + :rtc/ignore-attr-when-syncing true}}))) (def db-attribute-properties "Internal properties that are also db schema attributes" diff --git a/src/main/frontend/worker/db/migrate.cljs b/src/main/frontend/worker/db/migrate.cljs index c078f8ebd6..8dbce76fb2 100644 --- a/src/main/frontend/worker/db/migrate.cljs +++ b/src/main/frontend/worker/db/migrate.cljs @@ -290,12 +290,29 @@ db)] (mapcat (fn [id] - (let [title (:block/title (d/entity db id))] - [[:db/add id :db/ident (db-class/create-user-class-ident-from-name db title)] - [:db/add id :logseq.property.class/extends :logseq.class/Root] - [:db/retract id :block/tags :logseq.class/Page] - [:db/retract id :block/refs :logseq.class/Page] - [:db/retract id :block/path-refs :logseq.class/Page]])) + [[:db/add id :logseq.property.class/extends :logseq.class/Root] + [:db/retract id :block/tags :logseq.class/Page] + [:db/retract id :block/refs :logseq.class/Page] + [:db/retract id :block/path-refs :logseq.class/Page]]) + class-ids))) + +(defn add-missing-db-ident-for-tags2 + [db] + (let [class-ids + (d/q + '[:find [?b ...] + :where + [?b :block/tags :logseq.class/Tag] + [(missing? $ ?b :db/ident)]] + db)] + (keep + (fn [id] + (let [ent (d/entity db id) + title (:block/title ent) + block-uuid (:block/uuid ent)] + (when block-uuid + {:db-ident-or-block-uuid block-uuid + :new-db-ident (db-class/create-user-class-ident-from-name db title)}))) class-ids))) (defn fix-using-properties-as-tags @@ -312,11 +329,30 @@ (map first))] (mapcat (fn [id] - (let [property (d/entity db id) - title (:block/title property)] - (into (retract-property-attributes id) - [[:db/retract id :logseq.property/parent] - [:db/add id :db/ident (db-class/create-user-class-ident-from-name db title)]]))) + (into (retract-property-attributes id) + [[:db/retract id :logseq.property/parent]])) + property-ids))) + +(defn fix-using-properties-as-tags2 + [db] + (let [property-ids + (->> + (d/q + '[:find ?b ?i + :where + [?b :block/tags :logseq.class/Tag] + [?b :db/ident ?i]] + db) + (filter (fn [[_ ident]] (= "user.property" (namespace ident)))) + (map first))] + (keep + (fn [id] + (let [ent (d/entity db id) + title (:block/title ent) + block-uuid (:block/uuid ent)] + (when block-uuid + {:db-ident-or-block-uuid block-uuid + :new-db-ident (db-class/create-user-class-ident-from-name db title)}))) property-ids))) (defn remove-block-order-for-tags @@ -358,20 +394,17 @@ (def schema-version->updates "A vec of tuples defining datascript migrations. Each tuple consists of the schema version integer and a migration map. A migration map can have keys of :properties, :classes - and :fix." + :rename-db-idents and :fix." [["65.0" {:fix separate-classes-and-properties}] ["65.1" {:fix fix-rename-parent-to-extends}] ["65.2" {:fix fix-tag-properties}] - ["65.3" {:fix add-missing-db-ident-for-tags}] - ["65.4" {:fix fix-using-properties-as-tags}] + ["65.3" {:rename-db-idents add-missing-db-ident-for-tags2 :fix add-missing-db-ident-for-tags}] + ["65.4" {:rename-db-idents fix-using-properties-as-tags2 :fix fix-using-properties-as-tags}] ["65.5" {:fix remove-block-order-for-tags}] ["65.6" {:fix update-extends-to-cardinality-many}] ["65.7" {:fix add-quick-add-page}] ["65.8" {:fix add-missing-page-name}] - ["65.9" {:properties [:logseq.property.embedding/hnsw-label-updated-at]}] - ["65.10" {:properties [:logseq.property/test1]}] - ["65.11" {:rename-db-idents [{:db-ident :logseq.property/test1 - :new-db-ident :logseq.property/test2}]}]]) + ["65.9" {:properties [:logseq.property.embedding/hnsw-label-updated-at]}]]) (let [[major minor] (last (sort (map (comp (juxt :major :minor) db-schema/parse-schema-version first) schema-version->updates)))] @@ -382,14 +415,6 @@ (when (neg? compare-result) (js/console.warn (str "Current db schema-version is " db-schema/version ", max available schema-version is " max-schema-version)))))) -;;; some validations of schema-version->updates -(doseq [[version migrate-updates] schema-version->updates] - (when (contains? (set (keys migrate-updates)) :fix) - (assert (= 1 (count migrate-updates)) - (common-util/format - "migration(%s): :fix type cannot coexist with other types (:properties, :classes, :rename-db-idents)" - version)))) - (defn ensure-built-in-data-exists! "Return tx-data" [conn] @@ -473,7 +498,8 @@ new-class-idents (keep (fn [class] (when-let [db-ident (:db/ident class)] {:db/ident db-ident})) new-classes) - rename-db-idents-tx-data (rename-db-ident/rename-db-idents-migration-tx-data db rename-db-idents) + [rename-db-idents-tx-data rename-db-idents-coll] + (rename-db-ident/rename-db-idents-migration-tx-data db rename-db-idents) fixes (when (fn? fix) (fix db)) tx-data (if db-based? @@ -482,18 +508,20 @@ tx-data' (concat [(sqlite-util/kv :logseq.kv/schema-version version)] tx-data) - r (ldb/transact! conn tx-data' {:db-migrate? true})] + r (ldb/transact! conn tx-data' {:db-migrate? true}) + migrate-updates (cond-> migrate-updates + (seq rename-db-idents-coll) (assoc :rename-db-idents rename-db-idents-coll))] (println "DB schema migrated to" version) (assoc r :migrate-updates migrate-updates))) (defn migrate "Migrate 'frontend' datascript schema and data. To add a new migration, add an entry to schema-version->updates and bump db-schema/version" - [conn] + [conn & {:keys [target-version] :or {target-version db-schema/version}}] (when (ldb/db-based-graph? @conn) (let [db @conn version-in-db (db-schema/parse-schema-version (or (:kv/value (d/entity db :logseq.kv/schema-version)) 0)) - compare-result (db-schema/compare-schema-version db-schema/version version-in-db)] + compare-result (db-schema/compare-schema-version target-version version-in-db)] (cond (zero? compare-result) nil @@ -507,7 +535,7 @@ updates (keep (fn [[v updates]] (let [v* (db-schema/parse-schema-version v)] (when (and (neg? (db-schema/compare-schema-version version-in-db v*)) - (not (pos? (db-schema/compare-schema-version v* db-schema/version)))) + (not (pos? (db-schema/compare-schema-version v* target-version)))) [v updates]))) schema-version->updates) result-ks [:tx-data :db-before :db-after :migrate-updates] @@ -519,9 +547,9 @@ (swap! *upgrade-result-coll conj (select-keys (ensure-built-in-data-exists! conn) result-ks)) {:from-version version-in-db - :to-version db-schema/version + :to-version target-version :upgrade-result-coll @*upgrade-result-coll}) (catch :default e - (prn :error (str "DB migration failed to migrate to " db-schema/version " from " version-in-db ":")) + (prn :error (str "DB migration failed to migrate to " target-version " from " version-in-db ":")) (js/console.error e) (throw e))))))) diff --git a/src/main/frontend/worker/db/rename_db_ident.cljs b/src/main/frontend/worker/db/rename_db_ident.cljs index 75f15c61b7..371c4171c1 100644 --- a/src/main/frontend/worker/db/rename_db_ident.cljs +++ b/src/main/frontend/worker/db/rename_db_ident.cljs @@ -3,21 +3,26 @@ (:require [datascript.core :as d])) (defn rename-db-idents-migration-tx-data - "Rename :db/ident and replace all usages as well. return tx-data. - rename-db-idents: coll of {:db-ident ..., :new-db-ident ...} + "Rename :db/ident and replace all usages as well. + rename-db-idents: fn to generate coll of {:db-ident ..., :new-db-ident ...} NOTE: this fn should only care about :db/ident changing, don't touch other attr/values" [db rename-db-idents] - (assert (every? - (fn [{:keys [db-ident new-db-ident]}] - (and (keyword? db-ident) (keyword? new-db-ident))) - rename-db-idents) - rename-db-idents) - (->> (for [{:keys [db-ident new-db-ident]} rename-db-idents - :let [ent (d/entity db db-ident)] - :when (some? ent)] - (cons {:db/id (:db/id ent) :db/ident new-db-ident} - (->> (d/q '[:find ?b ?v :in $ ?a :where [?b ?a ?v]] db db-ident) - (mapcat (fn [[id v]] - [[:db/retract id db-ident] - [:db/add id new-db-ident v]]))))) - (apply concat))) + (assert (fn? rename-db-idents)) + (let [rename-db-idents-coll (rename-db-idents db) + *rename-db-idents-coll (atom []) + tx-data + (->> (for [{:keys [db-ident-or-block-uuid new-db-ident] :as rename-db-ident} rename-db-idents-coll + :let [ent (d/entity db (if (keyword? db-ident-or-block-uuid) + db-ident-or-block-uuid + [:block/uuid db-ident-or-block-uuid])) + old-db-ident (:db/ident ent)]] + (do (when (some? ent) (swap! *rename-db-idents-coll conj rename-db-ident)) + (cons {:db/id (:db/id ent) :db/ident new-db-ident} + (some->> old-db-ident + (d/q '[:find ?b ?v :in $ ?a :where [?b ?a ?v]] db) + (mapcat (fn [[id v]] + [[:db/retract id old-db-ident] + [:db/add id new-db-ident v]])))))) + (apply concat) + doall)] + [tx-data @*rename-db-idents-coll])) diff --git a/src/main/frontend/worker/rtc/client.cljs b/src/main/frontend/worker/rtc/client.cljs index d371f8682f..0ae56c51c4 100644 --- a/src/main/frontend/worker/rtc/client.cljs +++ b/src/main/frontend/worker/rtc/client.cljs @@ -289,7 +289,7 @@ [rename-db-ident-ops-map] (keep (fn [[op-type op]] (when (keyword-identical? :rename-db-ident op-type) - [:rename-db-ident (select-keys (last op) [:db-ident :new-db-ident])])) + [:rename-db-ident (select-keys (last op) [:db-ident-or-block-uuid :new-db-ident])])) rename-db-ident-ops-map)) (defn- gen-rename-db-ident-remote-ops diff --git a/src/main/frontend/worker/rtc/client_op.cljs b/src/main/frontend/worker/rtc/client_op.cljs index 987e2e4a41..ab9d75c781 100644 --- a/src/main/frontend/worker/rtc/client_op.cljs +++ b/src/main/frontend/worker/rtc/client_op.cljs @@ -25,7 +25,7 @@ [:op :keyword] [:t :int] [:value [:map - [:db-ident :keyword] + [:db-ident-or-block-uuid [:or :keyword :uuid]] [:new-db-ident :keyword]]]]] [:move [:catn @@ -87,6 +87,7 @@ and move it to its own namespace." {:block/uuid {:db/unique :db.unique/identity} :db-ident {:db/unique :db.unique/identity} + :db-ident-or-block-uuid {:db/unique :db.unique/identity} :local-tx {:db/index true} :graph-uuid {:db/index true} :aes-key-jwk {:db/index true} @@ -249,19 +250,19 @@ [ops] (let [op-type :rename-db-ident sorted-ops (sort-by second ops) - db-ident->op + db-ident-or-block-uuid->op (reduce (fn [r op] (let [[_op-type _t value] op - db-ident (:db-ident value)] - (assoc r db-ident op))) + db-ident-or-block-uuid (:db-ident-or-block-uuid value)] + (assoc r db-ident-or-block-uuid op))) {} sorted-ops)] (mapcat - (fn [[db-ident op]] - (let [tmpid (str db-ident "-rename-db-ident")] - [[:db/add tmpid :db-ident db-ident] + (fn [[db-ident-or-block-uuid op]] + (let [tmpid (str db-ident-or-block-uuid "-rename-db-ident")] + [[:db/add tmpid :db-ident-or-block-uuid db-ident-or-block-uuid] [:db/add tmpid op-type op]])) - db-ident->op))) + db-ident-or-block-uuid->op))) (defn- partition-ops "Return [:update-kv-value-ops :rename-db-ident-ops block-ops]" @@ -328,18 +329,18 @@ (defn- get-all-rename-db-ident-ops* [db] - (let [db-ident-datoms (d/datoms db :avet :db-ident) - es (map :e db-ident-datoms)] + (let [db-ident-or-block-uuid-datoms (d/datoms db :avet :db-ident-or-block-uuid) + es (map :e db-ident-or-block-uuid-datoms)] (->> (map (fn [e] [e (d/datoms db :eavt e)]) es) (keep (fn [[e datoms]] (let [op-map (into {} (keep (fn [datom] (let [a (:a datom)] - (when (or (keyword-identical? :db-ident a) + (when (or (keyword-identical? :db-ident-or-block-uuid a) (contains? db-ident-rename-op-types a)) [a (:v datom)])))) datoms)] - (when (and (:db-ident op-map) (> (count op-map) 1)) + (when (and (:db-ident-or-block-uuid op-map) (> (count op-map) 1)) [e op-map])))) (into {})))) diff --git a/src/main/frontend/worker/rtc/gen_client_op.cljs b/src/main/frontend/worker/rtc/gen_client_op.cljs index 6ca24ba619..9f62a49258 100644 --- a/src/main/frontend/worker/rtc/gen_client_op.cljs +++ b/src/main/frontend/worker/rtc/gen_client_op.cljs @@ -171,11 +171,12 @@ (defn generate-rtc-rename-db-ident-ops [rename-db-idents] - (assert (every? (fn [{:keys [db-ident new-db-ident]}] - (and (keyword? db-ident) (keyword? new-db-ident))) + (assert (every? (fn [{:keys [db-ident-or-block-uuid new-db-ident]}] + (and (or (keyword? db-ident-or-block-uuid) (uuid? db-ident-or-block-uuid)) + (keyword? new-db-ident))) rename-db-idents) rename-db-idents) (map - (fn [{:keys [db-ident new-db-ident]}] - [:rename-db-ident 0 {:db-ident db-ident :new-db-ident new-db-ident}]) + (fn [{:keys [db-ident-or-block-uuid new-db-ident]}] + [:rename-db-ident 0 {:db-ident-or-block-uuid db-ident-or-block-uuid :new-db-ident new-db-ident}]) rename-db-idents)) diff --git a/src/main/frontend/worker/rtc/malli_schema.cljs b/src/main/frontend/worker/rtc/malli_schema.cljs index d3b2733b4c..45e2465640 100644 --- a/src/main/frontend/worker/rtc/malli_schema.cljs +++ b/src/main/frontend/worker/rtc/malli_schema.cljs @@ -33,7 +33,7 @@ [:rename-db-ident [:cat :keyword [:map - [:db-ident :keyword] + [:db-ident-or-block-uuid [:or :keyword :uuid]] [:new-db-ident :keyword]]]] [:move [:cat :keyword diff --git a/src/main/frontend/worker/rtc/migrate.cljs b/src/main/frontend/worker/rtc/migrate.cljs index 0ab14e6b99..2006226c3a 100644 --- a/src/main/frontend/worker/rtc/migrate.cljs +++ b/src/main/frontend/worker/rtc/migrate.cljs @@ -4,35 +4,40 @@ [datascript.core :as d] [frontend.worker.rtc.gen-client-op :as gen-client-op])) +(def apply-conj (partial apply conj)) + (defn migration-results=>client-ops [{:keys [_from-version to-version upgrade-result-coll] :as _migration-result}] - (let [client-ops - (mapcat - (fn [{:keys [tx-data db-before db-after migrate-updates]}] - (cond - (:fix migrate-updates) - (let [{:keys [same-entity-datoms-coll id->same-entity-datoms]} - (gen-client-op/group-datoms-by-entity tx-data) - e->a->add?->v->t - (update-vals - id->same-entity-datoms - gen-client-op/entity-datoms=>a->add?->v->t)] - (gen-client-op/generate-rtc-ops db-before db-after same-entity-datoms-coll e->a->add?->v->t)) - - (empty? (set/difference (set (keys migrate-updates)) #{:properties :classes :rename-db-idents})) - (let [property-ks (:properties migrate-updates) - class-ks (:classes migrate-updates) - rename-db-idents (:rename-db-idents migrate-updates) - d-entity-fn (partial d/entity db-after) - new-property-entities (keep d-entity-fn property-ks) - new-class-entities (keep d-entity-fn class-ks)] - (concat (gen-client-op/generate-rtc-ops-from-property-entities new-property-entities) - (gen-client-op/generate-rtc-ops-from-class-entities new-class-entities) - (gen-client-op/generate-rtc-rename-db-ident-ops rename-db-idents))))) - upgrade-result-coll) - max-t (apply max 0 (map second client-ops))] - (conj (vec client-ops) - [:update-kv-value - max-t - {:db-ident :logseq.kv/schema-version - :value to-version}]))) + (when to-version + (let [client-ops + (mapcat + (fn [{:keys [tx-data db-before db-after migrate-updates]}] + (let [*tx-data (atom [])] + (when-let [rename-db-idents (:rename-db-idents migrate-updates)] + (swap! *tx-data apply-conj (gen-client-op/generate-rtc-rename-db-ident-ops rename-db-idents))) + (when (:fix migrate-updates) + (let [{:keys [same-entity-datoms-coll id->same-entity-datoms]} + (gen-client-op/group-datoms-by-entity tx-data) + e->a->add?->v->t + (update-vals + id->same-entity-datoms + gen-client-op/entity-datoms=>a->add?->v->t)] + (swap! *tx-data apply-conj + (gen-client-op/generate-rtc-ops + db-before db-after same-entity-datoms-coll e->a->add?->v->t)))) + (let [property-ks (seq (:properties migrate-updates)) + class-ks (:classes migrate-updates) + d-entity-fn (partial d/entity db-after) + new-property-entities (keep d-entity-fn property-ks) + new-class-entities (keep d-entity-fn class-ks)] + (swap! *tx-data apply-conj + (concat (gen-client-op/generate-rtc-ops-from-property-entities new-property-entities) + (gen-client-op/generate-rtc-ops-from-class-entities new-class-entities)))) + @*tx-data)) + upgrade-result-coll) + max-t (apply max 0 (map second client-ops))] + (conj (vec client-ops) + [:update-kv-value + max-t + {:db-ident :logseq.kv/schema-version + :value to-version}])))) diff --git a/src/test/frontend/worker/rtc/migrate_test.cljs b/src/test/frontend/worker/rtc/migrate_test.cljs index 1250e1cba8..99c82f0732 100644 --- a/src/test/frontend/worker/rtc/migrate_test.cljs +++ b/src/test/frontend/worker/rtc/migrate_test.cljs @@ -1,16 +1,31 @@ (ns frontend.worker.rtc.migrate-test (:require ["fs" :as fs-node] [cljs.pprint :as pp] - [cljs.test :refer [deftest]] + [cljs.test :refer [deftest is testing]] + [clojure.set :as set] [datascript.core :as d] [frontend.worker.db.migrate :as db-migrate] [frontend.worker.rtc.migrate :as rtc-migrate] [logseq.db :as ldb])) (deftest ^:focus migration-results=>client-ops - (let [db-transit (str (fs-node/readFileSync "src/test/migration/64.8.transit")) - db (ldb/read-transit-str db-transit) - conn (d/conn-from-db db) - migration-result (db-migrate/migrate conn) - client-ops (rtc-migrate/migration-results=>client-ops migration-result)] - (pp/pprint client-ops))) + (testing "65.2 => 65.3" + (let [db-transit (str (fs-node/readFileSync "src/test/migration/65.2.transit")) + db (ldb/read-transit-str db-transit) + conn (d/conn-from-db db) + migration-result (db-migrate/migrate conn {:target-version "65.3"}) + client-ops (rtc-migrate/migration-results=>client-ops migration-result)] + (prn :migration-result "================================================================") + (pp/pprint (map (fn [r] [(:tx-data r) (select-keys (:migrate-updates r) [:rename-db-idents])]) + (:upgrade-result-coll migration-result))) + (prn :client-ops "================================================================") + (pp/pprint client-ops) + (testing "client-ops are generated correctly from migration-result" + (is (seq client-ops) "Client ops should not be empty") + + (let [last-op (last client-ops) + schema-version-update? (= :update-kv-value (first last-op))] + (is schema-version-update? "The last op should be to update schema version") + (when schema-version-update? + (is (= :logseq.kv/schema-version (get-in last-op [2 :db-ident])) "The schema version key should be correct") + (is (= (:to-version migration-result) (get-in last-op [2 :value])) "The schema version should be updated to the new version"))))))) diff --git a/src/test/migration/65.2.transit b/src/test/migration/65.2.transit new file mode 100644 index 0000000000..52741e8d6d --- /dev/null +++ b/src/test/migration/65.2.transit @@ -0,0 +1 @@ +["~#datascript/DB",["^ ","~:schema",["^ ","~i32","~:block/updated-at","~i64","~:logseq.property.tldraw/page","~i96","~:logseq.property.repeat/checked-property","~i128","~:logseq.property.history/ref-value","~:logseq.property.view/type.table",["^ ","~:db/ident","^:"],"~:logseq.property/ui-position",["^ ","~:db/index",true,"~:db/cardinality","~:db.cardinality/one","^;","^<"],"~:file/created-at",["^ "],"~:logseq.property.repeat/temporal-property",["^ ","^=",true,"~:db/valueType","~:db.type/ref","^>","^?","^;","^A"],"~:logseq.property.user/name",["^ ","^=",true,"^>","^?","^;","^D"],"~i1","~:logseq.class/Root","~i33","~:logseq.property.node/display-type","~i65","~:logseq.property.tldraw/shape","~i97","~:logseq.property/icon","~:logseq.property.pdf/hl-image",["^ ","^=",true,"^B","^C","^>","^?","^;","^L"],"~i129","~:logseq.property.history/scalar-value","~:logseq.property.fsrs/state",["^ ","^=",true,"^>","^?","^;","^O"],"~:logseq.property.pdf/hl-color",["^ ","^=",true,"^B","^C","^>","^?","^;","^P"],"~:logseq.kv/graph-initial-schema-version",["^ ","^;","^Q"],"~:block/tx-id",["^ "],"~:logseq.property/value",["^ ","^=",true,"^>","^?","^;","^S"],"~:logseq.property.repeat/recur-unit.week",["^ ","^;","^T"],"~i2","~:logseq.class/Tag","~i34","~:logseq.property/description","~i66","~:logseq.property.journal/title-format","~i98","~:logseq.property/publishing-public?","~i130","~:logseq.property/created-by","~i162",["^ "],"~:logseq.property.table/sorting",["^ ","^=",true,"^>","^?","^;","^13"],"~:logseq.kv/import-type",["^ ","^;","^14"],"~:logseq.property.table/pinned-columns",["^ ","^=",true,"^B","^C","^>","~:db.cardinality/many","^;","^15"],"~:logseq.property.repeat/recur-unit.day",["^ ","^;","^17"],"~i3","~:logseq.class/Property","~i35","~:logseq.property.code/lang","~i67","~:logseq.property/choice-checkbox-state","~i99","~:logseq.property/exclude-from-graph-view","~i131","~:logseq.property/created-by-ref","~:logseq.property/test1",["^ ","^=",true,"^B","^C","^>","^?","^;","^1A"],"~i4","~:logseq.class/Template","~i36","~:logseq.property.class/extends","~i68","~:logseq.property/checkbox-display-properties","~i100","~:logseq.property.view/type","~i132","~:logseq.property/used-template","~:logseq.property/deadline",["^ ","^=",true,"^>","^?","^;","^1K"],"~:logseq.property/type",["^ ","^=",true,"^>","^?","^;","^1L"],"~:logseq.property.repeat/recur-unit.year",["^ ","^;","^1M"],"~:file/content",["^ "],"~i5","~:logseq.kv/db-type","~i69","~:logseq.property/status","~i101","^:","~i133","~:logseq.property/template-applied-to","~:logseq.property.table/sized-columns",["^ ","^=",true,"^>","^?","^;","^1U"],"~:block/alias",["^ ","^=",true,"^B","^C","^>","^16","^;","^1V"],"~i6","~:logseq.kv/schema-version","~:logseq.property.user/avatar",["^ ","^=",true,"^>","^?","^;","^1X"],"~i38","~:logseq.property/default-value","~i70","~:logseq.property/status.backlog","~i102","~:logseq.property.view/type.list","~i134","~:logseq.class/Page","~:kv/value",["^ "],"~:logseq.property/scalar-default-value",["^ ","^=",true,"^>","^?","^;","^26"],"~:logseq.property.asset/type",["^ ","^=",true,"^>","^?","^;","^27"],"~:logseq.class/Asset",["^ ","^;","^28"],"~:logseq.property/color.green",["^ ","^;","^29"],"~i7","^Q","~i39","^26","~i71","~:logseq.property/status.todo","~i103","~:logseq.property.view/type.gallery","~i135","~:logseq.class/Journal","~:logseq.property.linked-references/includes",["^ ","^=",true,"^B","^C","^>","^16","^;","^2A"],"~:logseq.property.repeat/recur-unit",["^ ","^=",true,"^B","^C","^>","^?","^;","^2B"],"^1F",["^ ","^=",true,"^B","^C","^>","^16","^;","^1F"],"~:block/link",["^ ","^=",true,"^B","^C","^>","^?","^;","^2C"],"^1H",["^ ","^=",true,"^B","^C","^>","^?","^;","^1H"],"~:logseq.class/Quote-block",["^ ","^;","^2D"],"~:logseq.property/heading",["^ ","^=",true,"^>","^?","^;","^2E"],"~i8","~:logseq.kv/graph-created-at","~i40","~:logseq.property.class/properties","~i72","~:logseq.property/status.doing","~i104","~:logseq.property.view/feature-type","~:block/uuid",["^ ","~:db/unique","~:db.unique/identity"],"~i136","~:logseq.class/Whiteboard","~i168",["^ "],"~:logseq.property/color.purple",["^ ","^;","^2S"],"~:logseq.property.table/hidden-columns",["^ ","^=",true,"^>","^16","^;","^2T"],"~:logseq.kv/imported-at",["^ ","^;","^2U"],"^18",["^ ","^;","^18"],"~:logseq.kv/graph-git-sha",["^ ","^;","^2V"],"~i9","~:logseq.property/empty-placeholder","~i41","~:logseq.property/hide-empty-value","~i73","~:logseq.property/status.in-review","~i105","~:logseq.property.view/group-by-property","^24",["^ ","^;","^24"],"~i137","~:logseq.class/Task","~:logseq.property.embedding/hnsw-label-updated-at",["^ ","^=",true,"^>","^?","^;","^34"],"^3",["^ ","^=",true,"^>","^?","^;","^3"],"~:logseq.property/color.blue",["^ ","^;","^35"],"~i10","^2V","~i74","~:logseq.property/status.done","~i106","^13","~i138","~:logseq.class/Query","~i170","~:user.property/ClassAsProperty-cLUbtHJS","^22",["^ ","^;","^22"],"~i11","^1L","~:file/size",["^ "],"~i43","~:logseq.property.class/hide-from-node","^1Q",["^ ","^=",true,"^B","^C","^>","^?","^;","^1Q"],"~i75","~:logseq.property/status.canceled","^1D",["^ ","^=",true,"^B","^C","^;","^1D","^>","^16"],"~i107","~:logseq.property.table/filters","~i139","~:logseq.class/Card","^2Y",["^ ","^=",true,"^>","^?","^;","^2Y"],"~:block/refs",["^ ","^=",true,"^B","^C","^>","^16","^;","^3H"],"^3G",["^ ","^;","^3G"],"^11",["^ ","^=",true,"^>","^?","^;","^11"],"~i12","~:logseq.property/built-in?","~i44","~:logseq.property/query","~i76","~:logseq.property/priority","~i108","^2T","~i140","~:logseq.class/Cards","^31",["^ ","^=",true,"^B","^C","^>","^?","^;","^31"],"~:logseq.property/view-context",["^ ","^=",true,"^>","^?","^;","^3R"],"^1W",["^ ","^;","^1W"],"~:logseq.property.pdf/hl-page",["^ ","^=",true,"^>","^?","^;","^3S"],"~i13","~:logseq.property/hide?","~i45","~:logseq.property/page-tags","~:block/closed-value-property",["^ ","^=",true,"^B","^C","^>","^16","^;","^3X"],"~i77","~:logseq.property/priority.low","~i109","~:logseq.property.table/ordered-columns","~:logseq.property.asset/checksum",["^ ","^=",true,"^>","^?","^;","^41"],"^[",["^ ","^=",true,"^>","^?","^;","^["],"~i141","^28","~i173","^34","^G",["^ ","^=",true,"^>","^?","^;","^G"],"^20",["^ ","^;","^20"],"~i14","~:logseq.property/created-from-property","~:file/last-modified-at",["^ "],"~i78","~:logseq.property/priority.medium","~i110","^1U","~i142","~:logseq.class/Code-block","~i174","^1A","^2H",["^ ","^=",true,"^B","^C","^>","^16","^;","^2H"],"^1J",["^ ","^=",true,"^B","^C","^>","^?","^;","^1J"],"~:logseq.property/enable-history?",["^ ","^=",true,"^>","^?","^;","^4="],"~:logseq.kv/graph-last-gc-at",["^ ","^;","^4>"],"~i15","~:logseq.property/public?","~i47","~:logseq.property/background-color","~i79","~:logseq.property/priority.high","~:logseq.class/Math-block",["^ ","^;","^4E"],"~i111","^15","~i143","^2D","~:block/created-at",["^ ","^=",true,"^>","^?","^;","^4H"],"^N",["^ ","^=",true,"^>","^?","^;","^N"],"^3W",["^ ","^=",true,"^B","^C","^>","^16","^;","^3W"],"~:logseq.property/scheduled",["^ ","^=",true,"^>","^?","^;","^4I"],"^33",["^ ","^;","^33"],"~:block/collapsed?",["^ ","^=",true,"^>","^?","^;","^4J"],"~:logseq.property.asset/last-visit-page",["^ ","^=",true,"^>","^?","^;","^4K"],"^5",["^ ","^=",true,"^>","^?","^;","^5"],"~i16","^3R","~i48","^2E","~i80","~:logseq.property/priority.urgent","~i112","~:logseq.property/view-for","~i144","^4E","~i176","^14","^3J",["^ ","^=",true,"^>","^?","^;","^3J"],"~i17","^<","~i49","~:logseq.property/asset","~i81","^1K","^3A",["^ ","^=",true,"^>","^?","^;","^3A"],"~i113","^27","~i145","~:logseq.class/Pdf-annotation","~i177","^2U","~:logseq.property.linked-references/excludes",["^ ","^=",true,"^B","^C","^>","^16","^;","^50"],"^2L",["^ ","^=",true,"^>","^?","^;","^2L"],"^4;",["^ ","^;","^4;"],"^1<",["^ ","^=",true,"^>","^?","^;","^1<"],"^7",["^ ","^=",true,"^B","^C","^>","^?","^;","^7"],"~:logseq.property.asset/resize-metadata",["^ ","^=",true,"^>","^?","^;","^51"],"~:logseq.property/ls-type",["^ ","^=",true,"^>","^?","^;","^52"],"^3Q",["^ ","^;","^3Q"],"~:logseq.property.user/email",["^ ","^=",true,"^>","^?","^;","^53"],"^4Q",["^ ","^=",true,"^B","^C","^>","^?","^;","^4Q"],"~i18","~:logseq.property/classes","^3L",["^ ","^=",true,"^B","^C","^>","^?","^;","^3L"],"~i50","^52","~i114","~:logseq.property.asset/size","^3U",["^ ","^=",true,"^>","^?","^;","^3U"],"^4B",["^ ","^=",true,"^B","^C","^>","^?","^;","^4B"],"~:logseq.property.repeat/recur-frequency",["^ ","^=",true,"^B","^C","^>","^?","^;","^59"],"^1Z",["^ ","^=",true,"^B","^C","^>","^?","^;","^1Z"],"~:block/journal-day",["^ ","^=",true],"~:logseq.property/color.red",["^ ","^;","^5;"],"~i19","^S","^E",["^ ","^;","^E"],"~i51","~:logseq.property.pdf/hl-type","~i83","^4I","~i115","^41","~:logseq.property.repeat/recur-unit.minute",["^ ","^;","^5A"],"^2W",["^ ","^;","^2W"],"^1:",["^ ","^=",true,"^>","^?","^;","^1:"],"~i20","^1V","~i52","^P","~i116","^4K","^1@",["^ ","^=",true,"^B","^C","^>","^?","^;","^1@"],"^4D",["^ ","^;","^4D"],"^3Z",["^ ","^;","^3Z"],"~:block/tags",["^ ","^=",true,"^B","^C","^>","^16","^;","^5E"],"~:block/title",["^ ","^=",true,"^>","^?","^;","^5F"],"^I",["^ ","^=",true,"^>","^?","^;","^I"],"^2Q",["^ ","^;","^2Q"],"~i21","^5E","~i53","~:logseq.property/color.yellow","~i85","^59","~i117","~:logseq.property.asset/remote-metadata","^45",["^ ","^=",true,"^B","^C","^>","^?","^;","^45"],"^K",["^ ","^=",true,"^>","^?","^;","^K"],"^4O",["^ ","^;","^4O"],"^58",["^ ","^=",true,"^>","^?","^;","^58"],"~i22","~:block/parent","~i54","^5;","~i118","^51","^55",["^ ","^=",true,"^B","^C","^>","^16","^;","^55"],"^4V",["^ ","^=",true,"^B","^C","^>","^?","^;","^4V"],"^2F",["^ ","^;","^2F"],"~i23","~:block/order","~i55","^29","~i87","^2B","~i119","~:logseq.property.fsrs/due","~:logseq.property/order-list-type",["^ ","^=",true,"^B","^C","^>","^?","^;","^5W"],"^1>",["^ ","^=",true,"^>","^?","^;","^1>"],"~i24","^4J","~i56","^35","^5>",["^ ","^=",true,"^>","^?","^;","^5>"],"~i88","^5A","~i120","^O","~i152","^4>","^;",["^ ","^2N","^2O"],"^2>",["^ ","^;","^2>"],"^W",["^ ","^=",true,"^B","^C","^>","^?","^;","^W"],"~:logseq.property.history/block",["^ ","^=",true,"^B","^C","^>","^?","^;","^61"],"~:block/path-refs",["^ ","^=",true,"^B","^C","^>","^16","^;","^62"],"~:user.property/PropertyAsClass-Ynz29EMG",["^ ","^=",true,"^B","^C","^>","^?","^;","^63"],"^5N",["^ ","^=",true,"^B","^C","^>","^?","^;","^5N"],"~i25","~:block/page","~i57","^2S","~i89","~:logseq.property.repeat/recur-unit.hour","~i121","^D","^2@",["^ ","^;","^2@"],"~i26","^3H","~i58","^3S","~i90","^17","^68",["^ ","^;","^68"],"^5I",["^ ","^;","^5I"],"~i122","^53","^48",["^ ","^;","^48"],"~:logseq.property.history/property",["^ ","^=",true,"^B","^C","^>","^?","^;","^6>"],"~:logseq.property.pdf/hl-value",["^ ","^=",true,"^>","^?","^;","^6?"],"^3;",["^ ","^;","^3;"],"~i27","^62","~i59","^L","~i91","^T","~i123","^1X","^5L",["^ ","^=",true,"^>","^?","^;","^5L"],"~:logseq.property.repeat/recur-unit.month",["^ ","^;","^6D"],"^5R",["^ ","^=",true,"^>","^?","^;","^5R"],"^3N",["^ ","^=",true,"^B","^C","^>","^?","^;","^3N"],"^9",["^ ","^=",true,"^B","^C","^>","^?","^;","^9"],"^3=",["^ ","^=",true,"^B","^C","^>","^?","^;","^3="],"^5V",["^ ","^=",true,"^>","^?","^;","^5V"],"~i28","^2C","^2J",["^ ","^;","^2J"],"~i60","^6?","~i92","^6D","~i124","^4=","^65",["^ ","^=",true,"^B","^C","^>","^?","^;","^65"],"~i156","~:user.class/ClassAsProperty-gq5cDU1A","~:block/name",["^ ","^=",true],"^4Z",["^ ","^;","^4Z"],"^40",["^ ","^=",true,"^>","^?","^;","^40"],"~:file/path",["^ ","^2N","^2O"],"~i29","^5F","~i61","^5W","~i93","^1M","~:logseq.property.repeat/repeated?",["^ ","^=",true,"^>","^?","^;","^6P"],"^U",["^ ","^;","^U"],"^2[",["^ ","^;","^2["],"^4@",["^ ","^=",true,"^>","^?","^;","^4@"],"~i30","^3X","~i62","^2A","~i94","^6P","~i126","^61","^3C",["^ ","^;","^3C"],"^1T",["^ ","^=",true,"^B","^C","^>","^16","^;","^1T"],"^1B",["^ ","^;","^1B"],"^Y",["^ ","^=",true,"^>","^?","^;","^Y"],"^38",["^ ","^;","^38"],"~i31","^4H","~i63","^50","^1O",["^ ","^;","^1O"],"~i95","^A","~i127","^6>","~i159","^63","^6J",["^ ","^;","^6J"],"^3E",["^ ","^=",true,"^>","^?","^;","^3E"],"^2<",["^ ","^;","^2<"]],"~:datoms",["~#list",[["~#datascript/Datom",[1,"^4H",1750770383791,536870913]],["^70",[1,"^6K","root tag",536870913]],["^70",[1,"^5E",2,536870913]],["^70",[1,"^5F","Root Tag",536870913]],["^70",[1,"^3",1750770383791,536870913]],["^70",[1,"^2M","~u00000002-2737-8382-7000-000000000000",536870913]],["^70",[1,"^;","^E",536870913]],["^70",[1,"^3J",true,536870913]],["^70",[2,"^4H",1750770383791,536870913]],["^70",[2,"^6K","tag",536870913]],["^70",[2,"^5E",2,536870913]],["^70",[2,"^5F","Tag",536870913]],["^70",[2,"^3",1750770383791,536870913]],["^70",[2,"^2M","~u00000002-5389-0208-3000-000000000000",536870913]],["^70",[2,"^;","^U",536870913]],["^70",[2,"^3J",true,536870913]],["^70",[2,"^1D",1,536871093]],["^70",[3,"^4H",1750770383791,536870913]],["^70",[3,"^6K","property",536870913]],["^70",[3,"^5E",2,536870913]],["^70",[3,"^5F","Property",536870913]],["^70",[3,"^3",1750770383791,536870913]],["^70",[3,"^2M","~u00000002-1038-7670-4800-000000000000",536870913]],["^70",[3,"^;","^18",536870913]],["^70",[3,"^3J",true,536870913]],["^70",[3,"^1D",1,536871093]],["^70",[4,"^4H",1750770383791,536870913]],["^70",[4,"^6K","template",536870913]],["^70",[4,"^5E",2,536870913]],["^70",[4,"^5F","Template",536870913]],["^70",[4,"^3",1750770383791,536870913]],["^70",[4,"^2M","~u00000002-1720-8548-4600-000000000000",536870913]],["^70",[4,"^;","^1B",536870913]],["^70",[4,"^3J",true,536870913]],["^70",[4,"^1D",1,536871093]],["^70",[4,"^2H",133,536870913]],["^70",[5,"^;","^1O",536870913]],["^70",[5,"^25","db",536870913]],["^70",[6,"^;","^1W",536870913]],["^70",[6,"^25",["^ ","~:major",65,"~:minor",2],536871094]],["^70",[7,"^;","^Q",536870913]],["^70",[7,"^25",["^ ","^71",64,"^72",9],536870913]],["^70",[8,"^;","^2F",536870913]],["^70",[8,"^25",1750770383784,536870913]],["^70",[9,"^2M","~u00000004-1595-0218-3700-000000000000",536870913]],["^70",[9,"^;","^2W",536870913]],["^70",[10,"^;","^2V",536870913]],["^70",[10,"^25","d6dae4d92a",536870913]],["^70",[11,"^4H",1750770383784,536870913]],["^70",[11,"^6K","property type",536870913]],["^70",[11,"^5R","d00PG",536870913]],["^70",[11,"^5E",3,536870913]],["^70",[11,"^5F","Property type",536870913]],["^70",[11,"^3",1750770383784,536870913]],["^70",[11,"^2M","~u00000002-8384-2404-0000-000000000000",536870913]],["^70",[11,"^>","^?",536870913]],["^70",[11,"^;","^1L",536870913]],["^70",[11,"^=",true,536870913]],["^70",[11,"^3J",true,536870913]],["^70",[11,"^3U",true,536870913]],["^70",[11,"^1L","~:keyword",536870913]],["^70",[12,"^4H",1750770383784,536870913]],["^70",[12,"^6K","built in?",536870913]],["^70",[12,"^5R","d00PH",536870913]],["^70",[12,"^5E",3,536870913]],["^70",[12,"^5F","Built in?",536870913]],["^70",[12,"^3",1750770383784,536870913]],["^70",[12,"^2M","~u00000002-1125-9581-6000-000000000000",536870913]],["^70",[12,"^>","^?",536870913]],["^70",[12,"^;","^3J",536870913]],["^70",[12,"^=",true,536870913]],["^70",[12,"^3J",true,536870913]],["^70",[12,"^3U",true,536870913]],["^70",[12,"^1L","~:checkbox",536870913]],["^70",[13,"^4H",1750770383784,536870913]],["^70",[13,"^6K","hide this property",536870913]],["^70",[13,"^5R","d00PI",536870913]],["^70",[13,"^5E",3,536870913]],["^70",[13,"^5F","Hide this property",536870913]],["^70",[13,"^3",1750770383784,536870913]],["^70",[13,"^2M","~u00000002-6836-5746-0000-000000000000",536870913]],["^70",[13,"^>","^?",536870913]],["^70",[13,"^;","^3U",536870913]],["^70",[13,"^=",true,536870913]],["^70",[13,"^3J",true,536870913]],["^70",[13,"^3U",true,536870913]],["^70",[13,"^1L","^74",536870913]],["^70",[14,"^4H",1750770383784,536870913]],["^70",[14,"^6K","created from property",536870913]],["^70",[14,"^5R","d00PJ",536870913]],["^70",[14,"^5E",3,536870913]],["^70",[14,"^5F","Created from property",536870913]],["^70",[14,"^3",1750770383784,536870913]],["^70",[14,"^2M","~u00000002-8618-9226-7000-000000000000",536870913]],["^70",[14,"^>","^?",536870913]],["^70",[14,"^;","^45",536870913]],["^70",[14,"^=",true,536870913]],["^70",[14,"^B","^C",536870913]],["^70",[14,"^3J",true,536870913]],["^70",[14,"^3U",true,536870913]],["^70",[14,"^1L","~:entity",536870913]],["^70",[15,"^4H",1750770383785,536870913]],["^70",[15,"^6K","property public?",536870913]],["^70",[15,"^5R","d00PK",536870913]],["^70",[15,"^5E",3,536870913]],["^70",[15,"^5F","Property public?",536870913]],["^70",[15,"^3",1750770383785,536870913]],["^70",[15,"^2M","~u00000002-1843-0851-4900-000000000000",536870913]],["^70",[15,"^>","^?",536870913]],["^70",[15,"^;","^4@",536870913]],["^70",[15,"^=",true,536870913]],["^70",[15,"^3J",true,536870913]],["^70",[15,"^3U",true,536870913]],["^70",[15,"^1L","^74",536870913]],["^70",[16,"^4H",1750770383785,536870913]],["^70",[16,"^6K","property view context",536870913]],["^70",[16,"^5R","d00PL",536870913]],["^70",[16,"^5E",3,536870913]],["^70",[16,"^5F","Property view context",536870913]],["^70",[16,"^3",1750770383785,536870913]],["^70",[16,"^2M","~u00000002-1547-3958-2800-000000000000",536870913]],["^70",[16,"^>","^?",536870913]],["^70",[16,"^;","^3R",536870913]],["^70",[16,"^=",true,536870913]],["^70",[16,"^3J",true,536870913]],["^70",[16,"^3U",true,536870913]],["^70",[16,"^1L","^73",536870913]],["^70",[17,"^4H",1750770383785,536870913]],["^70",[17,"^6K","property position",536870913]],["^70",[17,"^5R","d00PM",536870913]],["^70",[17,"^5E",3,536870913]],["^70",[17,"^5F","Property position",536870913]],["^70",[17,"^3",1750770383785,536870913]],["^70",[17,"^2M","~u00000002-1869-2008-6400-000000000000",536870913]],["^70",[17,"^>","^?",536870913]],["^70",[17,"^;","^<",536870913]],["^70",[17,"^=",true,536870913]],["^70",[17,"^3J",true,536870913]],["^70",[17,"^3U",true,536870913]],["^70",[17,"^1L","^73",536870913]],["^70",[18,"^4H",1750770383785,536870913]],["^70",[18,"^6K","property classes",536870913]],["^70",[18,"^5R","d00PN",536870913]],["^70",[18,"^5E",3,536870913]],["^70",[18,"^5F","Property classes",536870913]],["^70",[18,"^3",1750770383785,536870913]],["^70",[18,"^2M","~u00000002-9137-5048-6000-000000000000",536870913]],["^70",[18,"^>","^16",536870913]],["^70",[18,"^;","^55",536870913]],["^70",[18,"^=",true,536870913]],["^70",[18,"^B","^C",536870913]],["^70",[18,"^3J",true,536870913]],["^70",[18,"^3U",true,536870913]],["^70",[18,"^4@",false,536870913]],["^70",[18,"^1L","^75",536870913]],["^70",[19,"^4H",1750770383785,536870913]],["^70",[19,"^6K","property value",536870913]],["^70",[19,"^5R","d00PO",536870913]],["^70",[19,"^5E",3,536870913]],["^70",[19,"^5F","Property value",536870913]],["^70",[19,"^3",1750770383785,536870913]],["^70",[19,"^2M","~u00000002-1396-5248-6500-000000000000",536870913]],["^70",[19,"^>","^?",536870913]],["^70",[19,"^;","^S",536870913]],["^70",[19,"^=",true,536870913]],["^70",[19,"^3J",true,536870913]],["^70",[19,"^3U",true,536870913]],["^70",[19,"^4@",false,536870913]],["^70",[19,"^1L","~:any",536870913]],["^70",[20,"^4H",1750770383785,536870913]],["^70",[20,"^6K","alias",536870913]],["^70",[20,"^5R","d00PP",536870913]],["^70",[20,"^5E",3,536870913]],["^70",[20,"^5F","Alias",536870913]],["^70",[20,"^3",1750770383785,536870913]],["^70",[20,"^2M","~u00000002-2112-6446-9900-000000000000",536870913]],["^70",[20,"^>","^16",536870913]],["^70",[20,"^;","^1V",536870913]],["^70",[20,"^=",true,536870913]],["^70",[20,"^B","^C",536870913]],["^70",[20,"^3J",true,536870913]],["^70",[20,"^4@",true,536870913]],["^70",[20,"^1L","~:page",536870913]],["^70",[20,"^3R","^77",536870913]],["^70",[21,"^4H",1750770383785,536870913]],["^70",[21,"^6K","tags",536870913]],["^70",[21,"^5R","d00PQ",536870913]],["^70",[21,"^5E",3,536870913]],["^70",[21,"^5F","Tags",536870913]],["^70",[21,"^3",1750770383785,536870913]],["^70",[21,"^2M","~u00000002-1814-9483-4000-000000000000",536870913]],["^70",[21,"^>","^16",536870913]],["^70",[21,"^;","^5E",536870913]],["^70",[21,"^=",true,536870913]],["^70",[21,"^B","^C",536870913]],["^70",[21,"^3J",true,536870913]],["^70",[21,"^4@",true,536870913]],["^70",[21,"^1L","~:class",536870913]],["^70",[22,"^4H",1750770383785,536870913]],["^70",[22,"^6K","node parent",536870913]],["^70",[22,"^5R","d00PR",536870913]],["^70",[22,"^5E",3,536870913]],["^70",[22,"^5F","Node parent",536870913]],["^70",[22,"^3",1750770383785,536870913]],["^70",[22,"^2M","~u00000002-9183-0906-4000-000000000000",536870913]],["^70",[22,"^>","^?",536870913]],["^70",[22,"^;","^5N",536870913]],["^70",[22,"^=",true,536870913]],["^70",[22,"^B","^C",536870913]],["^70",[22,"^3J",true,536870913]],["^70",[22,"^3U",true,536870913]],["^70",[22,"^4@",false,536870913]],["^70",[22,"^1L","^75",536870913]],["^70",[23,"^4H",1750770383786,536870913]],["^70",[23,"^6K","node order",536870913]],["^70",[23,"^5R","d00PS",536870913]],["^70",[23,"^5E",3,536870913]],["^70",[23,"^5F","Node order",536870913]],["^70",[23,"^3",1750770383786,536870913]],["^70",[23,"^2M","~u00000002-1429-2824-3700-000000000000",536870913]],["^70",[23,"^>","^?",536870913]],["^70",[23,"^;","^5R",536870913]],["^70",[23,"^=",true,536870913]],["^70",[23,"^3J",true,536870913]],["^70",[23,"^3U",true,536870913]],["^70",[23,"^4@",false,536870913]],["^70",[23,"^1L","~:string",536870913]],["^70",[24,"^4H",1750770383786,536870913]],["^70",[24,"^6K","node collapsed?",536870913]],["^70",[24,"^5R","d00PT",536870913]],["^70",[24,"^5E",3,536870913]],["^70",[24,"^5F","Node collapsed?",536870913]],["^70",[24,"^3",1750770383786,536870913]],["^70",[24,"^2M","~u00000002-2140-2109-9100-000000000000",536870913]],["^70",[24,"^>","^?",536870913]],["^70",[24,"^;","^4J",536870913]],["^70",[24,"^=",true,536870913]],["^70",[24,"^3J",true,536870913]],["^70",[24,"^3U",true,536870913]],["^70",[24,"^4@",false,536870913]],["^70",[24,"^1L","^74",536870913]],["^70",[25,"^4H",1750770383786,536870913]],["^70",[25,"^6K","node page",536870913]],["^70",[25,"^5R","d00PU",536870913]],["^70",[25,"^5E",3,536870913]],["^70",[25,"^5F","Node page",536870913]],["^70",[25,"^3",1750770383786,536870913]],["^70",[25,"^2M","~u00000002-8223-1410-8000-000000000000",536870913]],["^70",[25,"^>","^?",536870913]],["^70",[25,"^;","^65",536870913]],["^70",[25,"^=",true,536870913]],["^70",[25,"^B","^C",536870913]],["^70",[25,"^3J",true,536870913]],["^70",[25,"^3U",true,536870913]],["^70",[25,"^4@",false,536870913]],["^70",[25,"^1L","^75",536870913]],["^70",[26,"^4H",1750770383786,536870913]],["^70",[26,"^6K","node references",536870913]],["^70",[26,"^5R","d00PV",536870913]],["^70",[26,"^5E",3,536870913]],["^70",[26,"^5F","Node references",536870913]],["^70",[26,"^3",1750770383786,536870913]],["^70",[26,"^2M","~u00000002-1214-4953-4900-000000000000",536870913]],["^70",[26,"^>","^16",536870913]],["^70",[26,"^;","^3H",536870913]],["^70",[26,"^=",true,536870913]],["^70",[26,"^B","^C",536870913]],["^70",[26,"^3J",true,536870913]],["^70",[26,"^3U",true,536870913]],["^70",[26,"^4@",false,536870913]],["^70",[26,"^1L","^75",536870913]],["^70",[27,"^4H",1750770383786,536870913]],["^70",[27,"^6K","node path references",536870913]],["^70",[27,"^5R","d00PW",536870913]],["^70",[27,"^5E",3,536870913]],["^70",[27,"^5F","Node path references",536870913]],["^70",[27,"^3",1750770383786,536870913]],["^70",[27,"^2M","~u00000002-2109-1813-5200-000000000000",536870913]],["^70",[27,"^>","^16",536870913]],["^70",[27,"^;","^62",536870913]],["^70",[27,"^=",true,536870913]],["^70",[27,"^B","^C",536870913]],["^70",[27,"^3J",true,536870913]],["^70",[27,"^3U",true,536870913]],["^70",[27,"^4@",false,536870913]],["^70",[27,"^1L","^75",536870913]],["^70",[28,"^4H",1750770383786,536870913]],["^70",[28,"^6K","node links to",536870913]],["^70",[28,"^5R","d00PX",536870913]],["^70",[28,"^5E",3,536870913]],["^70",[28,"^5F","Node links to",536870913]],["^70",[28,"^3",1750770383786,536870913]],["^70",[28,"^2M","~u00000002-1872-3999-9300-000000000000",536870913]],["^70",[28,"^>","^?",536870913]],["^70",[28,"^;","^2C",536870913]],["^70",[28,"^=",true,536870913]],["^70",[28,"^B","^C",536870913]],["^70",[28,"^3J",true,536870913]],["^70",[28,"^3U",true,536870913]],["^70",[28,"^4@",false,536870913]],["^70",[28,"^1L","^75",536870913]],["^70",[29,"^4H",1750770383786,536870913]],["^70",[29,"^6K","node title",536870913]],["^70",[29,"^5R","d00PY",536870913]],["^70",[29,"^5E",3,536870913]],["^70",[29,"^5F","Node title",536870913]],["^70",[29,"^3",1750770383786,536870913]],["^70",[29,"^2M","~u00000002-7104-4568-4000-000000000000",536870913]],["^70",[29,"^>","^?",536870913]],["^70",[29,"^;","^5F",536870913]],["^70",[29,"^=",true,536870913]],["^70",[29,"^3J",true,536870913]],["^70",[29,"^3U",true,536870913]],["^70",[29,"^4@",false,536870913]],["^70",[29,"^1L","^79",536870913]],["^70",[30,"^4H",1750770383786,536870913]],["^70",[30,"^6K","closed value property",536870913]],["^70",[30,"^5R","d00PZ",536870913]],["^70",[30,"^5E",3,536870913]],["^70",[30,"^5F","Closed value property",536870913]],["^70",[30,"^3",1750770383786,536870913]],["^70",[30,"^2M","~u00000002-1157-7928-1300-000000000000",536870913]],["^70",[30,"^>","^?",536870913]],["^70",[30,"^;","^3X",536870913]],["^70",[30,"^=",true,536870913]],["^70",[30,"^B","^C",536870913]],["^70",[30,"^3J",true,536870913]],["^70",[30,"^3U",true,536870913]],["^70",[30,"^4@",false,536870913]],["^70",[30,"^1L","^75",536870913]],["^70",[31,"^4H",1750770383786,536870913]],["^70",[31,"^6K","node created at",536870913]],["^70",[31,"^5R","d00Pa",536870913]],["^70",[31,"^5E",3,536870913]],["^70",[31,"^5F","Node created at",536870913]],["^70",[31,"^3",1750770383786,536870913]],["^70",[31,"^2M","~u00000002-1440-0150-0000-000000000000",536870913]],["^70",[31,"^>","^?",536870913]],["^70",[31,"^;","^4H",536870913]],["^70",[31,"^=",true,536870913]],["^70",[31,"^3J",true,536870913]],["^70",[31,"^3U",true,536870913]],["^70",[31,"^4@",false,536870913]],["^70",[31,"^1L","~:datetime",536870913]],["^70",[32,"^4H",1750770383786,536870913]],["^70",[32,"^6K","node updated at",536870913]],["^70",[32,"^5R","d00Pb",536870913]],["^70",[32,"^5E",3,536870913]],["^70",[32,"^5F","Node updated at",536870913]],["^70",[32,"^3",1750770383786,536870913]],["^70",[32,"^2M","~u00000002-1516-5505-5100-000000000000",536870913]],["^70",[32,"^>","^?",536870913]],["^70",[32,"^;","^3",536870913]],["^70",[32,"^=",true,536870913]],["^70",[32,"^3J",true,536870913]],["^70",[32,"^3U",true,536870913]],["^70",[32,"^4@",false,536870913]],["^70",[32,"^1L","^7:",536870913]],["^70",[33,"^4H",1750770383786,536870913]],["^70",[33,"^6K","node display type",536870913]],["^70",[33,"^5R","d00Pc",536870913]],["^70",[33,"^5E",3,536870913]],["^70",[33,"^5F","Node Display Type",536870913]],["^70",[33,"^3",1750770383786,536870913]],["^70",[33,"^2M","~u00000002-4424-4618-9000-000000000000",536870913]],["^70",[33,"^>","^?",536870913]],["^70",[33,"^;","^G",536870913]],["^70",[33,"^=",true,536870913]],["^70",[33,"^3J",true,536870913]],["^70",[33,"^3U",true,536870913]],["^70",[33,"^4@",false,536870913]],["^70",[33,"^1L","^73",536870913]],["^70",[33,"^3R","~:block",536870913]],["^70",[34,"^4H",1750770383786,536870913]],["^70",[34,"^6K","description",536870913]],["^70",[34,"^5R","d00Pd",536870913]],["^70",[34,"^5E",3,536870913]],["^70",[34,"^5F","Description",536870913]],["^70",[34,"^3",1750770383786,536870913]],["^70",[34,"^2M","~u00000002-3362-3620-0000-000000000000",536870913]],["^70",[34,"^>","^?",536870913]],["^70",[34,"^;","^W",536870913]],["^70",[34,"^=",true,536870913]],["^70",[34,"^B","^C",536870913]],["^70",[34,"^3J",true,536870913]],["^70",[34,"^4@",true,536870913]],["^70",[34,"^1L","~:default",536870913]],["^70",[35,"^4H",1750770383786,536870913]],["^70",[35,"^6K","code mode",536870913]],["^70",[35,"^5R","d00Pe",536870913]],["^70",[35,"^5E",3,536870913]],["^70",[35,"^5F","Code Mode",536870913]],["^70",[35,"^3",1750770383786,536870913]],["^70",[35,"^2M","~u00000002-8578-9716-5000-000000000000",536870913]],["^70",[35,"^>","^?",536870913]],["^70",[35,"^;","^1:",536870913]],["^70",[35,"^=",true,536870913]],["^70",[35,"^3J",true,536870913]],["^70",[35,"^3U",true,536870913]],["^70",[35,"^4@",false,536870913]],["^70",[35,"^1L","^79",536870913]],["^70",[35,"^3R","^7;",536870913]],["^70",[36,"^4H",1755080762459,536871095]],["^70",[36,"^6K","extends",536871093]],["^70",[36,"^5R","d00Ri",536871095]],["^70",[36,"^5E",3,536870913]],["^70",[36,"^5F","Extends",536871093]],["^70",[36,"^3",1755080762459,536871095]],["^70",[36,"^2M","~u00000002-7475-9380-3000-000000000000",536871095]],["^70",[36,"^>","^16",536871095]],["^70",[36,"^;","^1D",536871093]],["^70",[36,"^=",true,536870913]],["^70",[36,"^B","^C",536870913]],["^70",[36,"^3J",true,536870913]],["^70",[36,"^W",172,536871095]],["^70",[36,"^4@",true,536870913]],["^70",[36,"^1L","^78",536871095]],["^70",[36,"^3R","^78",536871095]],["^70",[37,"^4H",1750770383786,536870913]],["^70",[37,"^5R","d00Pg",536870913]],["^70",[37,"^65",36,536870913]],["^70",[37,"^5N",36,536870913]],["^70",[37,"^5F","Provides parent-child relationships between nodes. For tags this enables inheritance and for pages this enables namespaces.",536870913]],["^70",[37,"^3",1750770383786,536870913]],["^70",[37,"^2M","~u00000004-6576-7869-2000-000000000000",536870913]],["^70",[37,"^3J",true,536870913]],["^70",[37,"^45",34,536870913]],["^70",[38,"^4H",1750770383786,536870913]],["^70",[38,"^6K","default value",536870913]],["^70",[38,"^5R","d00Ph",536870913]],["^70",[38,"^5E",3,536870913]],["^70",[38,"^5F","Default value",536870913]],["^70",[38,"^3",1750770383786,536870913]],["^70",[38,"^2M","~u00000002-8920-7966-2000-000000000000",536870913]],["^70",[38,"^>","^?",536870913]],["^70",[38,"^;","^1Z",536870913]],["^70",[38,"^=",true,536870913]],["^70",[38,"^B","^C",536870913]],["^70",[38,"^3J",true,536870913]],["^70",[38,"^3U",true,536870913]],["^70",[38,"^4@",false,536870913]],["^70",[38,"^1L","^75",536870913]],["^70",[38,"^3R","~:property",536870913]],["^70",[39,"^4H",1750770383786,536870913]],["^70",[39,"^6K","non ref type default value",536870913]],["^70",[39,"^5R","d00Pi",536870913]],["^70",[39,"^5E",3,536870913]],["^70",[39,"^5F","Non ref type default value",536870913]],["^70",[39,"^3",1750770383786,536870913]],["^70",[39,"^2M","~u00000002-1595-7230-1400-000000000000",536870913]],["^70",[39,"^>","^?",536870913]],["^70",[39,"^;","^26",536870913]],["^70",[39,"^=",true,536870913]],["^70",[39,"^3J",true,536870913]],["^70",[39,"^3U",true,536870913]],["^70",[39,"^4@",false,536870913]],["^70",[39,"^1L","^76",536870913]],["^70",[39,"^3R","^7=",536870913]],["^70",[40,"^4H",1750770383786,536870913]],["^70",[40,"^6K","tag properties",536870913]],["^70",[40,"^5R","d00Pj",536870913]],["^70",[40,"^5E",3,536870913]],["^70",[40,"^5F","Tag Properties",536870913]],["^70",[40,"^3",1750770383786,536870913]],["^70",[40,"^2M","~u00000002-2123-7120-5000-000000000000",536870913]],["^70",[40,"^>","^16",536870913]],["^70",[40,"^;","^2H",536870913]],["^70",[40,"^=",true,536870913]],["^70",[40,"^B","^C",536870913]],["^70",[40,"^3J",true,536870913]],["^70",[40,"^4@",true,536870913]],["^70",[40,"^1L","^7=",536870913]],["^70",[40,"^3R","~:never",536870913]],["^70",[41,"^4H",1750770383787,536870913]],["^70",[41,"^6K","hide empty value",536870913]],["^70",[41,"^5R","d00Pk",536870913]],["^70",[41,"^5E",3,536870913]],["^70",[41,"^5F","Hide empty value",536870913]],["^70",[41,"^3",1750770383787,536870913]],["^70",[41,"^2M","~u00000002-2062-3258-9900-000000000000",536870913]],["^70",[41,"^>","^?",536870913]],["^70",[41,"^;","^2Y",536870913]],["^70",[41,"^=",true,536870913]],["^70",[41,"^3J",true,536870913]],["^70",[41,"^W",42,536870913]],["^70",[41,"^4@",true,536870913]],["^70",[41,"^1L","^74",536870913]],["^70",[41,"^3R","^7=",536870913]],["^70",[42,"^4H",1750770383787,536870913]],["^70",[42,"^5R","d00Pl",536870913]],["^70",[42,"^65",41,536870913]],["^70",[42,"^5N",41,536870913]],["^70",[42,"^5F","Hides a property's value on any node when empty e.g. when a property appears on a node through a tag.",536870913]],["^70",[42,"^3",1750770383787,536870913]],["^70",[42,"^2M","~u00000004-1118-8585-8000-000000000000",536870913]],["^70",[42,"^3J",true,536870913]],["^70",[42,"^45",34,536870913]],["^70",[43,"^4H",1750770383787,536870913]],["^70",[43,"^6K","hide from node",536870913]],["^70",[43,"^5R","d00Pm",536870913]],["^70",[43,"^5E",3,536870913]],["^70",[43,"^5F","Hide from Node",536870913]],["^70",[43,"^3",1750770383787,536870913]],["^70",[43,"^2M","~u00000002-2610-3727-0000-000000000000",536870913]],["^70",[43,"^>","^?",536870913]],["^70",[43,"^;","^3A",536870913]],["^70",[43,"^=",true,536870913]],["^70",[43,"^3J",true,536870913]],["^70",[43,"^4@",true,536870913]],["^70",[43,"^1L","^74",536870913]],["^70",[43,"^3R","^78",536870913]],["^70",[44,"^4H",1750770383787,536870913]],["^70",[44,"^6K","query",536870913]],["^70",[44,"^5R","d00Pn",536870913]],["^70",[44,"^5E",3,536870913]],["^70",[44,"^5F","Query",536870913]],["^70",[44,"^3",1750770383787,536870913]],["^70",[44,"^2M","~u00000002-9741-4126-0000-000000000000",536870913]],["^70",[44,"^>","^?",536870913]],["^70",[44,"^;","^3L",536870913]],["^70",[44,"^=",true,536870913]],["^70",[44,"^B","^C",536870913]],["^70",[44,"^3J",true,536870913]],["^70",[44,"^3U",true,536870913]],["^70",[44,"^4@",true,536870913]],["^70",[44,"^1L","^7<",536870913]],["^70",[44,"^3R","^7;",536870913]],["^70",[45,"^4H",1750770383787,536870913]],["^70",[45,"^6K","page tags",536870913]],["^70",[45,"^5R","d00Po",536870913]],["^70",[45,"^5E",3,536870913]],["^70",[45,"^5F","Page Tags",536870913]],["^70",[45,"^3",1750770383787,536870913]],["^70",[45,"^2M","~u00000002-2133-5311-8500-000000000000",536870913]],["^70",[45,"^>","^16",536870913]],["^70",[45,"^;","^3W",536870913]],["^70",[45,"^=",true,536870913]],["^70",[45,"^B","^C",536870913]],["^70",[45,"^3J",true,536870913]],["^70",[45,"^W",46,536870913]],["^70",[45,"^4@",true,536870913]],["^70",[45,"^1L","^77",536870913]],["^70",[45,"^3R","^77",536870913]],["^70",[46,"^4H",1750770383787,536870913]],["^70",[46,"^5R","d00Pp",536870913]],["^70",[46,"^65",45,536870913]],["^70",[46,"^5N",45,536870913]],["^70",[46,"^5F","Provides a way for a page to associate to another page i.e. backward compatible tagging.",536870913]],["^70",[46,"^3",1750770383787,536870913]],["^70",[46,"^2M","~u00000004-1223-8671-8000-000000000000",536870913]],["^70",[46,"^3J",true,536870913]],["^70",[46,"^45",34,536870913]],["^70",[47,"^4H",1750770383787,536870913]],["^70",[47,"^6K","background color",536870913]],["^70",[47,"^5R","d00Pq",536870913]],["^70",[47,"^5E",3,536870913]],["^70",[47,"^5F","Background color",536870913]],["^70",[47,"^3",1750770383787,536870913]],["^70",[47,"^2M","~u00000002-5191-2660-6000-000000000000",536870913]],["^70",[47,"^>","^?",536870913]],["^70",[47,"^;","^4B",536870913]],["^70",[47,"^=",true,536870913]],["^70",[47,"^B","^C",536870913]],["^70",[47,"^3J",true,536870913]],["^70",[47,"^3U",true,536870913]],["^70",[47,"^1L","^7<",536870913]],["^70",[48,"^4H",1750770383787,536870913]],["^70",[48,"^6K","heading",536870913]],["^70",[48,"^5R","d00Pr",536870913]],["^70",[48,"^5E",3,536870913]],["^70",[48,"^5F","Heading",536870913]],["^70",[48,"^3",1750770383787,536870913]],["^70",[48,"^2M","~u00000002-1858-7494-1500-000000000000",536870913]],["^70",[48,"^>","^?",536870913]],["^70",[48,"^;","^2E",536870913]],["^70",[48,"^=",true,536870913]],["^70",[48,"^3J",true,536870913]],["^70",[48,"^3U",true,536870913]],["^70",[48,"^1L","^76",536870913]],["^70",[49,"^4H",1750770383787,536870913]],["^70",[49,"^6K","asset",536870913]],["^70",[49,"^5R","d00Ps",536870913]],["^70",[49,"^5E",3,536870913]],["^70",[49,"^5F","Asset",536870913]],["^70",[49,"^3",1750770383787,536870913]],["^70",[49,"^2M","~u00000002-8768-5679-0000-000000000000",536870913]],["^70",[49,"^>","^?",536870913]],["^70",[49,"^;","^4V",536870913]],["^70",[49,"^=",true,536870913]],["^70",[49,"^B","^C",536870913]],["^70",[49,"^3J",true,536870913]],["^70",[49,"^3U",true,536870913]],["^70",[49,"^1L","^75",536870913]],["^70",[50,"^4H",1750770383787,536870913]],["^70",[50,"^6K","ls-type",536870913]],["^70",[50,"^5R","d00Pt",536870913]],["^70",[50,"^5E",3,536870913]],["^70",[50,"^5F","ls-type",536870913]],["^70",[50,"^3",1750770383787,536870913]],["^70",[50,"^2M","~u00000002-3269-7934-5000-000000000000",536870913]],["^70",[50,"^>","^?",536870913]],["^70",[50,"^;","^52",536870913]],["^70",[50,"^=",true,536870913]],["^70",[50,"^3J",true,536870913]],["^70",[50,"^3U",true,536870913]],["^70",[50,"^1L","^73",536870913]],["^70",[51,"^4H",1750770383787,536870913]],["^70",[51,"^6K","annotation type",536870913]],["^70",[51,"^5R","d00Pu",536870913]],["^70",[51,"^5E",3,536870913]],["^70",[51,"^5F","Annotation type",536870913]],["^70",[51,"^3",1750770383787,536870913]],["^70",[51,"^2M","~u00000002-9984-3783-2000-000000000000",536870913]],["^70",[51,"^>","^?",536870913]],["^70",[51,"^;","^5>",536870913]],["^70",[51,"^=",true,536870913]],["^70",[51,"^3J",true,536870913]],["^70",[51,"^3U",true,536870913]],["^70",[51,"^1L","^73",536870913]],["^70",[52,"^4H",1750770383787,536870913]],["^70",[52,"^6K","annotation color",536870913]],["^70",[52,"^5R","d00Pv",536870913]],["^70",[52,"^5E",3,536870913]],["^70",[52,"^5F","Annotation color",536870913]],["^70",[52,"^3",1750770383787,536870913]],["^70",[52,"^2M","~u00000002-6747-9388-7000-000000000000",536870913]],["^70",[52,"^>","^?",536870913]],["^70",[52,"^;","^P",536870913]],["^70",[52,"^=",true,536870913]],["^70",[52,"^B","^C",536870913]],["^70",[52,"^3J",true,536870913]],["^70",[52,"^3U",true,536870913]],["^70",[52,"^1L","^7<",536870913]],["^70",[53,"^3X",52,536870913]],["^70",[53,"^4H",1750770383787,536870913]],["^70",[53,"^5R","d00Pw",536870913]],["^70",[53,"^65",52,536870913]],["^70",[53,"^5N",52,536870913]],["^70",[53,"^5F","yellow",536870913]],["^70",[53,"^3",1750770383787,536870913]],["^70",[53,"^2M","~u00000002-1752-1030-0200-000000000000",536870913]],["^70",[53,"^;","^5I",536870913]],["^70",[53,"^3J",true,536870913]],["^70",[53,"^45",52,536870913]],["^70",[54,"^3X",52,536870913]],["^70",[54,"^4H",1750770383787,536870913]],["^70",[54,"^5R","d00Px",536870913]],["^70",[54,"^65",52,536870913]],["^70",[54,"^5N",52,536870913]],["^70",[54,"^5F","red",536870913]],["^70",[54,"^3",1750770383787,536870913]],["^70",[54,"^2M","~u00000002-4136-2216-2000-000000000000",536870913]],["^70",[54,"^;","^5;",536870913]],["^70",[54,"^3J",true,536870913]],["^70",[54,"^45",52,536870913]],["^70",[55,"^3X",52,536870913]],["^70",[55,"^4H",1750770383787,536870913]],["^70",[55,"^5R","d00Py",536870913]],["^70",[55,"^65",52,536870913]],["^70",[55,"^5N",52,536870913]],["^70",[55,"^5F","green",536870913]],["^70",[55,"^3",1750770383787,536870913]],["^70",[55,"^2M","~u00000002-1992-2016-2600-000000000000",536870913]],["^70",[55,"^;","^29",536870913]],["^70",[55,"^3J",true,536870913]],["^70",[55,"^45",52,536870913]],["^70",[56,"^3X",52,536870913]],["^70",[56,"^4H",1750770383787,536870913]],["^70",[56,"^5R","d00Pz",536870913]],["^70",[56,"^65",52,536870913]],["^70",[56,"^5N",52,536870913]],["^70",[56,"^5F","blue",536870913]],["^70",[56,"^3",1750770383787,536870913]],["^70",[56,"^2M","~u00000002-1836-0512-4100-000000000000",536870913]],["^70",[56,"^;","^35",536870913]],["^70",[56,"^3J",true,536870913]],["^70",[56,"^45",52,536870913]],["^70",[57,"^3X",52,536870913]],["^70",[57,"^4H",1750770383787,536870913]],["^70",[57,"^5R","d00Q0",536870913]],["^70",[57,"^65",52,536870913]],["^70",[57,"^5N",52,536870913]],["^70",[57,"^5F","purple",536870913]],["^70",[57,"^3",1750770383787,536870913]],["^70",[57,"^2M","~u00000002-1104-3848-5600-000000000000",536870913]],["^70",[57,"^;","^2S",536870913]],["^70",[57,"^3J",true,536870913]],["^70",[57,"^45",52,536870913]],["^70",[58,"^4H",1750770383787,536870913]],["^70",[58,"^6K","annotation page",536870913]],["^70",[58,"^5R","d00Q1",536870913]],["^70",[58,"^5E",3,536870913]],["^70",[58,"^5F","Annotation page",536870913]],["^70",[58,"^3",1750770383787,536870913]],["^70",[58,"^2M","~u00000002-7532-8459-6000-000000000000",536870913]],["^70",[58,"^>","^?",536870913]],["^70",[58,"^;","^3S",536870913]],["^70",[58,"^=",true,536870913]],["^70",[58,"^3J",true,536870913]],["^70",[58,"^3U",true,536870913]],["^70",[58,"^1L","~:raw-number",536870913]],["^70",[59,"^4H",1750770383787,536870913]],["^70",[59,"^6K","annotation image",536870913]],["^70",[59,"^5R","d00Q2",536870913]],["^70",[59,"^5E",3,536870913]],["^70",[59,"^5F","Annotation image",536870913]],["^70",[59,"^3",1750770383787,536870913]],["^70",[59,"^2M","~u00000002-1377-6700-9000-000000000000",536870913]],["^70",[59,"^>","^?",536870913]],["^70",[59,"^;","^L",536870913]],["^70",[59,"^=",true,536870913]],["^70",[59,"^B","^C",536870913]],["^70",[59,"^3J",true,536870913]],["^70",[59,"^3U",true,536870913]],["^70",[59,"^1L","^75",536870913]],["^70",[60,"^4H",1750770383787,536870913]],["^70",[60,"^6K","annotation data",536870913]],["^70",[60,"^5R","d00Q3",536870913]],["^70",[60,"^5E",3,536870913]],["^70",[60,"^5F","Annotation data",536870913]],["^70",[60,"^3",1750770383787,536870913]],["^70",[60,"^2M","~u00000002-5458-2940-2000-000000000000",536870913]],["^70",[60,"^>","^?",536870913]],["^70",[60,"^;","^6?",536870913]],["^70",[60,"^=",true,536870913]],["^70",[60,"^3J",true,536870913]],["^70",[60,"^3U",true,536870913]],["^70",[60,"^1L","~:map",536870913]],["^70",[61,"^4H",1750770383788,536870913]],["^70",[61,"^6K","list type",536870913]],["^70",[61,"^5R","d00Q4",536870913]],["^70",[61,"^5E",3,536870913]],["^70",[61,"^5F","List type",536870913]],["^70",[61,"^3",1750770383788,536870913]],["^70",[61,"^2M","~u00000002-6078-1711-1000-000000000000",536870913]],["^70",[61,"^>","^?",536870913]],["^70",[61,"^;","^5W",536870913]],["^70",[61,"^=",true,536870913]],["^70",[61,"^B","^C",536870913]],["^70",[61,"^3J",true,536870913]],["^70",[61,"^3U",true,536870913]],["^70",[61,"^1L","^7<",536870913]],["^70",[62,"^4H",1750770383788,536870913]],["^70",[62,"^6K","included references",536870913]],["^70",[62,"^5R","d00Q5",536870913]],["^70",[62,"^5E",3,536870913]],["^70",[62,"^5F","Included references",536870913]],["^70",[62,"^3",1750770383788,536870913]],["^70",[62,"^2M","~u00000002-1680-5777-0300-000000000000",536870913]],["^70",[62,"^>","^16",536870913]],["^70",[62,"^;","^2A",536870913]],["^70",[62,"^=",true,536870913]],["^70",[62,"^B","^C",536870913]],["^70",[62,"^3J",true,536870913]],["^70",[62,"^3U",true,536870913]],["^70",[62,"^1L","~:node",536870913]],["^70",[63,"^4H",1750770383788,536870913]],["^70",[63,"^6K","excluded references",536870913]],["^70",[63,"^5R","d00Q6",536870913]],["^70",[63,"^5E",3,536870913]],["^70",[63,"^5F","Excluded references",536870913]],["^70",[63,"^3",1750770383788,536870913]],["^70",[63,"^2M","~u00000002-2426-7588-9000-000000000000",536870913]],["^70",[63,"^>","^16",536870913]],["^70",[63,"^;","^50",536870913]],["^70",[63,"^=",true,536870913]],["^70",[63,"^B","^C",536870913]],["^70",[63,"^3J",true,536870913]],["^70",[63,"^3U",true,536870913]],["^70",[63,"^1L","^7A",536870913]],["^70",[64,"^4H",1750770383788,536870913]],["^70",[64,"^6K","tldraw page",536870913]],["^70",[64,"^5R","d00Q7",536870913]],["^70",[64,"^5E",3,536870913]],["^70",[64,"^5F","Tldraw Page",536870913]],["^70",[64,"^3",1750770383788,536870913]],["^70",[64,"^2M","~u00000002-3546-2145-7000-000000000000",536870913]],["^70",[64,"^>","^?",536870913]],["^70",[64,"^;","^5",536870913]],["^70",[64,"^=",true,536870913]],["^70",[64,"^3J",true,536870913]],["^70",[64,"^3U",true,536870913]],["^70",[64,"^1L","^7@",536870913]],["^70",[65,"^4H",1750770383788,536870913]],["^70",[65,"^6K","tldraw shape",536870913]],["^70",[65,"^5R","d00Q8",536870913]],["^70",[65,"^5E",3,536870913]],["^70",[65,"^5F","Tldraw Shape",536870913]],["^70",[65,"^3",1750770383788,536870913]],["^70",[65,"^2M","~u00000002-1313-2454-2000-000000000000",536870913]],["^70",[65,"^>","^?",536870913]],["^70",[65,"^;","^I",536870913]],["^70",[65,"^=",true,536870913]],["^70",[65,"^3J",true,536870913]],["^70",[65,"^3U",true,536870913]],["^70",[65,"^1L","^7@",536870913]],["^70",[66,"^4H",1750770383788,536870913]],["^70",[66,"^6K","title format",536870913]],["^70",[66,"^5R","d00Q9",536870913]],["^70",[66,"^5E",3,536870913]],["^70",[66,"^5F","Title Format",536870913]],["^70",[66,"^3",1750770383788,536870913]],["^70",[66,"^2M","~u00000002-1536-4979-5400-000000000000",536870913]],["^70",[66,"^>","^?",536870913]],["^70",[66,"^;","^Y",536870913]],["^70",[66,"^=",true,536870913]],["^70",[66,"^3J",true,536870913]],["^70",[66,"^4@",false,536870913]],["^70",[66,"^1L","^79",536870913]],["^70",[67,"^4H",1750770383788,536870913]],["^70",[67,"^6K","choice checkbox state",536870913]],["^70",[67,"^5R","d00QA",536870913]],["^70",[67,"^5E",3,536870913]],["^70",[67,"^5F","Choice checkbox state",536870913]],["^70",[67,"^3",1750770383788,536870913]],["^70",[67,"^2M","~u00000002-1272-4228-6300-000000000000",536870913]],["^70",[67,"^>","^?",536870913]],["^70",[67,"^;","^1<",536870913]],["^70",[67,"^=",true,536870913]],["^70",[67,"^3J",true,536870913]],["^70",[67,"^3U",true,536870913]],["^70",[67,"^1L","^74",536870913]],["^70",[68,"^4H",1750770383788,536870913]],["^70",[68,"^6K","properties displayed as checkbox",536870913]],["^70",[68,"^5R","d00QB",536870913]],["^70",[68,"^5E",3,536870913]],["^70",[68,"^5F","Properties displayed as checkbox",536870913]],["^70",[68,"^3",1750770383788,536870913]],["^70",[68,"^2M","~u00000002-3215-3256-9000-000000000000",536870913]],["^70",[68,"^>","^16",536870913]],["^70",[68,"^;","^1F",536870913]],["^70",[68,"^=",true,536870913]],["^70",[68,"^B","^C",536870913]],["^70",[68,"^3J",true,536870913]],["^70",[68,"^3U",true,536870913]],["^70",[68,"^1L","^7=",536870913]],["^70",[69,"^4H",1750770383788,536870913]],["^70",[69,"^6K","status",536870913]],["^70",[69,"^5R","d00QC",536870913]],["^70",[69,"^5E",3,536870913]],["^70",[69,"^5F","Status",536870913]],["^70",[69,"^3",1750770383788,536870913]],["^70",[69,"^2M","~u00000002-9072-1685-3000-000000000000",536870913]],["^70",[69,"^>","^?",536870913]],["^70",[69,"^;","^1Q",536870913]],["^70",[69,"^=",true,536870913]],["^70",[69,"^B","^C",536870913]],["^70",[69,"^3J",true,536870913]],["^70",[69,"^1Z",71,536870913]],["^70",[69,"^4=",true,536870913]],["^70",[69,"^2Y",true,536870913]],["^70",[69,"^4@",true,536870913]],["^70",[69,"^1L","^7<",536870913]],["^70",[69,"^<","~:block-left",536870913]],["^70",[70,"^3X",69,536870913]],["^70",[70,"^4H",1750770383788,536870913]],["^70",[70,"^5R","d00QD",536870913]],["^70",[70,"^65",69,536870913]],["^70",[70,"^5N",69,536870913]],["^70",[70,"^5F","Backlog",536870913]],["^70",[70,"^3",1750770383788,536870913]],["^70",[70,"^2M","~u00000002-7233-3491-0000-000000000000",536870913]],["^70",[70,"^;","^20",536870913]],["^70",[70,"^3J",true,536870913]],["^70",[70,"^45",69,536870913]],["^70",[70,"^K",["^ ","~:type","~:tabler-icon","~:id","Backlog"],536870913]],["^70",[71,"^3X",69,536870913]],["^70",[71,"^4H",1750770383788,536870913]],["^70",[71,"^5R","d00QE",536870913]],["^70",[71,"^65",69,536870913]],["^70",[71,"^5N",69,536870913]],["^70",[71,"^5F","Todo",536870913]],["^70",[71,"^3",1750770383788,536870913]],["^70",[71,"^2M","~u00000002-1615-5853-7700-000000000000",536870913]],["^70",[71,"^;","^2<",536870913]],["^70",[71,"^3J",true,536870913]],["^70",[71,"^1<",false,536870913]],["^70",[71,"^45",69,536870913]],["^70",[71,"^K",["^ ","^7C","^7D","^7E","Todo"],536870913]],["^70",[72,"^3X",69,536870913]],["^70",[72,"^4H",1750770383788,536870913]],["^70",[72,"^5R","d00QF",536870913]],["^70",[72,"^65",69,536870913]],["^70",[72,"^5N",69,536870913]],["^70",[72,"^5F","Doing",536870913]],["^70",[72,"^3",1750770383788,536870913]],["^70",[72,"^2M","~u00000002-1840-1229-0800-000000000000",536870913]],["^70",[72,"^;","^2J",536870913]],["^70",[72,"^3J",true,536870913]],["^70",[72,"^45",69,536870913]],["^70",[72,"^K",["^ ","^7C","^7D","^7E","InProgress50"],536870913]],["^70",[73,"^3X",69,536870913]],["^70",[73,"^4H",1750770383788,536870913]],["^70",[73,"^5R","d00QG",536870913]],["^70",[73,"^65",69,536870913]],["^70",[73,"^5N",69,536870913]],["^70",[73,"^5F","In Review",536870913]],["^70",[73,"^3",1750770383788,536870913]],["^70",[73,"^2M","~u00000002-1870-0014-4300-000000000000",536870913]],["^70",[73,"^;","^2[",536870913]],["^70",[73,"^3J",true,536870913]],["^70",[73,"^45",69,536870913]],["^70",[73,"^K",["^ ","^7C","^7D","^7E","InReview"],536870913]],["^70",[74,"^3X",69,536870913]],["^70",[74,"^4H",1750770383788,536870913]],["^70",[74,"^5R","d00QH",536870913]],["^70",[74,"^65",69,536870913]],["^70",[74,"^5N",69,536870913]],["^70",[74,"^5F","Done",536870913]],["^70",[74,"^3",1750770383788,536870913]],["^70",[74,"^2M","~u00000002-1827-5820-8200-000000000000",536870913]],["^70",[74,"^;","^38",536870913]],["^70",[74,"^3J",true,536870913]],["^70",[74,"^1<",true,536870913]],["^70",[74,"^45",69,536870913]],["^70",[74,"^K",["^ ","^7C","^7D","^7E","Done"],536870913]],["^70",[75,"^3X",69,536870913]],["^70",[75,"^4H",1750770383788,536870913]],["^70",[75,"^5R","d00QI",536870913]],["^70",[75,"^65",69,536870913]],["^70",[75,"^5N",69,536870913]],["^70",[75,"^5F","Canceled",536870913]],["^70",[75,"^3",1750770383788,536870913]],["^70",[75,"^2M","~u00000002-7526-4326-2000-000000000000",536870913]],["^70",[75,"^;","^3C",536870913]],["^70",[75,"^3J",true,536870913]],["^70",[75,"^45",69,536870913]],["^70",[75,"^K",["^ ","^7C","^7D","^7E","Cancelled"],536870913]],["^70",[76,"^4H",1750770383788,536870913]],["^70",[76,"^6K","priority",536870913]],["^70",[76,"^5R","d00QJ",536870913]],["^70",[76,"^5E",3,536870913]],["^70",[76,"^5F","Priority",536870913]],["^70",[76,"^3",1750770383788,536870913]],["^70",[76,"^2M","~u00000002-2392-2841-1000-000000000000",536870913]],["^70",[76,"^>","^?",536870913]],["^70",[76,"^;","^3N",536870913]],["^70",[76,"^=",true,536870913]],["^70",[76,"^B","^C",536870913]],["^70",[76,"^3J",true,536870913]],["^70",[76,"^4=",true,536870913]],["^70",[76,"^2Y",true,536870913]],["^70",[76,"^4@",true,536870913]],["^70",[76,"^1L","^7<",536870913]],["^70",[76,"^<","^7B",536870913]],["^70",[77,"^3X",76,536870913]],["^70",[77,"^4H",1750770383788,536870913]],["^70",[77,"^5R","d00QK",536870913]],["^70",[77,"^65",76,536870913]],["^70",[77,"^5N",76,536870913]],["^70",[77,"^5F","Low",536870913]],["^70",[77,"^3",1750770383788,536870913]],["^70",[77,"^2M","~u00000002-2107-4537-4800-000000000000",536870913]],["^70",[77,"^;","^3Z",536870913]],["^70",[77,"^3J",true,536870913]],["^70",[77,"^45",76,536870913]],["^70",[77,"^K",["^ ","^7C","^7D","^7E","priorityLvlLow"],536870913]],["^70",[78,"^3X",76,536870913]],["^70",[78,"^4H",1750770383788,536870913]],["^70",[78,"^5R","d00QL",536870913]],["^70",[78,"^65",76,536870913]],["^70",[78,"^5N",76,536870913]],["^70",[78,"^5F","Medium",536870913]],["^70",[78,"^3",1750770383788,536870913]],["^70",[78,"^2M","~u00000002-1829-3222-7800-000000000000",536870913]],["^70",[78,"^;","^48",536870913]],["^70",[78,"^3J",true,536870913]],["^70",[78,"^45",76,536870913]],["^70",[78,"^K",["^ ","^7C","^7D","^7E","priorityLvlMedium"],536870913]],["^70",[79,"^3X",76,536870913]],["^70",[79,"^4H",1750770383788,536870913]],["^70",[79,"^5R","d00QM",536870913]],["^70",[79,"^65",76,536870913]],["^70",[79,"^5N",76,536870913]],["^70",[79,"^5F","High",536870913]],["^70",[79,"^3",1750770383788,536870913]],["^70",[79,"^2M","~u00000002-5672-2766-8000-000000000000",536870913]],["^70",[79,"^;","^4D",536870913]],["^70",[79,"^3J",true,536870913]],["^70",[79,"^45",76,536870913]],["^70",[79,"^K",["^ ","^7C","^7D","^7E","priorityLvlHigh"],536870913]],["^70",[80,"^3X",76,536870913]],["^70",[80,"^4H",1750770383788,536870913]],["^70",[80,"^5R","d00QN",536870913]],["^70",[80,"^65",76,536870913]],["^70",[80,"^5N",76,536870913]],["^70",[80,"^5F","Urgent",536870913]],["^70",[80,"^3",1750770383788,536870913]],["^70",[80,"^2M","~u00000002-1996-4346-6700-000000000000",536870913]],["^70",[80,"^;","^4O",536870913]],["^70",[80,"^3J",true,536870913]],["^70",[80,"^45",76,536870913]],["^70",[80,"^K",["^ ","^7C","^7D","^7E","priorityLvlUrgent"],536870913]],["^70",[81,"^4H",1750770383788,536870913]],["^70",[81,"^6K","deadline",536870913]],["^70",[81,"^5R","d00QO",536870913]],["^70",[81,"^5E",3,536870913]],["^70",[81,"^5F","Deadline",536870913]],["^70",[81,"^3",1750770383788,536870913]],["^70",[81,"^2M","~u00000002-1685-9016-0400-000000000000",536870913]],["^70",[81,"^>","^?",536870913]],["^70",[81,"^;","^1K",536870913]],["^70",[81,"^=",true,536870913]],["^70",[81,"^3J",true,536870913]],["^70",[81,"^W",82,536870913]],["^70",[81,"^2Y",true,536870913]],["^70",[81,"^4@",true,536870913]],["^70",[81,"^1L","^7:",536870913]],["^70",[81,"^<","~:block-below",536870913]],["^70",[82,"^4H",1750770383788,536870913]],["^70",[82,"^5R","d00QP",536870913]],["^70",[82,"^65",81,536870913]],["^70",[82,"^5N",81,536870913]],["^70",[82,"^5F","Use it to finish something at a specific date(time).",536870913]],["^70",[82,"^3",1750770383788,536870913]],["^70",[82,"^2M","~u00000004-1356-3664-2200-000000000000",536870913]],["^70",[82,"^3J",true,536870913]],["^70",[82,"^45",34,536870913]],["^70",[83,"^4H",1750770383788,536870913]],["^70",[83,"^6K","scheduled",536870913]],["^70",[83,"^5R","d00QQ",536870913]],["^70",[83,"^5E",3,536870913]],["^70",[83,"^5F","Scheduled",536870913]],["^70",[83,"^3",1750770383788,536870913]],["^70",[83,"^2M","~u00000002-1644-5209-4300-000000000000",536870913]],["^70",[83,"^>","^?",536870913]],["^70",[83,"^;","^4I",536870913]],["^70",[83,"^=",true,536870913]],["^70",[83,"^3J",true,536870913]],["^70",[83,"^W",84,536870913]],["^70",[83,"^2Y",true,536870913]],["^70",[83,"^4@",true,536870913]],["^70",[83,"^1L","^7:",536870913]],["^70",[83,"^<","^7F",536870913]],["^70",[84,"^4H",1750770383788,536870913]],["^70",[84,"^5R","d00QR",536870913]],["^70",[84,"^65",83,536870913]],["^70",[84,"^5N",83,536870913]],["^70",[84,"^5F","Use it to plan something to start at a specific date(time).",536870913]],["^70",[84,"^3",1750770383788,536870913]],["^70",[84,"^2M","~u00000004-9817-6380-0000-000000000000",536870913]],["^70",[84,"^3J",true,536870913]],["^70",[84,"^45",34,536870913]],["^70",[85,"^4H",1750770383788,536870913]],["^70",[85,"^6K","repeating recur frequency",536870913]],["^70",[85,"^5R","d00QS",536870913]],["^70",[85,"^5E",3,536870913]],["^70",[85,"^5F","Repeating recur frequency",536870913]],["^70",[85,"^3",1750770383788,536870913]],["^70",[85,"^2M","~u00000002-8716-1592-2000-000000000000",536870913]],["^70",[85,"^>","^?",536870913]],["^70",[85,"^;","^59",536870913]],["^70",[85,"^=",true,536870913]],["^70",[85,"^B","^C",536870913]],["^70",[85,"^3J",true,536870913]],["^70",[85,"^1Z",86,536870913]],["^70",[85,"^2Y",true,536870913]],["^70",[85,"^4@",false,536870913]],["^70",[85,"^1L","~:number",536870913]],["^70",[86,"^4H",1750770383789,536870913]],["^70",[86,"^5R","d00QT",536870913]],["^70",[86,"^65",85,536870913]],["^70",[86,"^5N",85,536870913]],["^70",[86,"^3",1750770383789,536870913]],["^70",[86,"^2M","~u00000004-1654-1034-2600-000000000000",536870913]],["^70",[86,"^3J",true,536870913]],["^70",[86,"^45",85,536870913]],["^70",[86,"^S",1,536870913]],["^70",[87,"^4H",1750770383789,536870913]],["^70",[87,"^6K","repeating recur unit",536870913]],["^70",[87,"^5R","d00QU",536870913]],["^70",[87,"^5E",3,536870913]],["^70",[87,"^5F","Repeating recur unit",536870913]],["^70",[87,"^3",1750770383789,536870913]],["^70",[87,"^2M","~u00000002-6903-0624-7000-000000000000",536870913]],["^70",[87,"^>","^?",536870913]],["^70",[87,"^;","^2B",536870913]],["^70",[87,"^=",true,536870913]],["^70",[87,"^B","^C",536870913]],["^70",[87,"^3J",true,536870913]],["^70",[87,"^1Z",90,536870913]],["^70",[87,"^2Y",true,536870913]],["^70",[87,"^4@",false,536870913]],["^70",[87,"^1L","^7<",536870913]],["^70",[88,"^3X",87,536870913]],["^70",[88,"^4H",1750770383789,536870913]],["^70",[88,"^5R","d00QV",536870913]],["^70",[88,"^65",87,536870913]],["^70",[88,"^5N",87,536870913]],["^70",[88,"^5F","Minute",536870913]],["^70",[88,"^3",1750770383789,536870913]],["^70",[88,"^2M","~u00000002-1513-6550-8500-000000000000",536870913]],["^70",[88,"^;","^5A",536870913]],["^70",[88,"^3J",true,536870913]],["^70",[88,"^45",87,536870913]],["^70",[89,"^3X",87,536870913]],["^70",[89,"^4H",1750770383789,536870913]],["^70",[89,"^5R","d00QW",536870913]],["^70",[89,"^65",87,536870913]],["^70",[89,"^5N",87,536870913]],["^70",[89,"^5F","Hour",536870913]],["^70",[89,"^3",1750770383789,536870913]],["^70",[89,"^2M","~u00000002-1438-8849-5400-000000000000",536870913]],["^70",[89,"^;","^68",536870913]],["^70",[89,"^3J",true,536870913]],["^70",[89,"^45",87,536870913]],["^70",[90,"^3X",87,536870913]],["^70",[90,"^4H",1750770383789,536870913]],["^70",[90,"^5R","d00QX",536870913]],["^70",[90,"^65",87,536870913]],["^70",[90,"^5N",87,536870913]],["^70",[90,"^5F","Day",536870913]],["^70",[90,"^3",1750770383789,536870913]],["^70",[90,"^2M","~u00000002-3924-1785-8000-000000000000",536870913]],["^70",[90,"^;","^17",536870913]],["^70",[90,"^3J",true,536870913]],["^70",[90,"^45",87,536870913]],["^70",[91,"^3X",87,536870913]],["^70",[91,"^4H",1750770383789,536870913]],["^70",[91,"^5R","d00QY",536870913]],["^70",[91,"^65",87,536870913]],["^70",[91,"^5N",87,536870913]],["^70",[91,"^5F","Week",536870913]],["^70",[91,"^3",1750770383789,536870913]],["^70",[91,"^2M","~u00000002-2130-9244-4900-000000000000",536870913]],["^70",[91,"^;","^T",536870913]],["^70",[91,"^3J",true,536870913]],["^70",[91,"^45",87,536870913]],["^70",[92,"^3X",87,536870913]],["^70",[92,"^4H",1750770383789,536870913]],["^70",[92,"^5R","d00QZ",536870913]],["^70",[92,"^65",87,536870913]],["^70",[92,"^5N",87,536870913]],["^70",[92,"^5F","Month",536870913]],["^70",[92,"^3",1750770383789,536870913]],["^70",[92,"^2M","~u00000002-2073-3937-9700-000000000000",536870913]],["^70",[92,"^;","^6D",536870913]],["^70",[92,"^3J",true,536870913]],["^70",[92,"^45",87,536870913]],["^70",[93,"^3X",87,536870913]],["^70",[93,"^4H",1750770383789,536870913]],["^70",[93,"^5R","d00Qa",536870913]],["^70",[93,"^65",87,536870913]],["^70",[93,"^5N",87,536870913]],["^70",[93,"^5F","Year",536870913]],["^70",[93,"^3",1750770383789,536870913]],["^70",[93,"^2M","~u00000002-1520-4385-2400-000000000000",536870913]],["^70",[93,"^;","^1M",536870913]],["^70",[93,"^3J",true,536870913]],["^70",[93,"^45",87,536870913]],["^70",[94,"^4H",1750770383789,536870913]],["^70",[94,"^6K","node repeats?",536870913]],["^70",[94,"^5R","d00Qb",536870913]],["^70",[94,"^5E",3,536870913]],["^70",[94,"^5F","Node Repeats?",536870913]],["^70",[94,"^3",1750770383789,536870913]],["^70",[94,"^2M","~u00000002-1908-1217-8900-000000000000",536870913]],["^70",[94,"^>","^?",536870913]],["^70",[94,"^;","^6P",536870913]],["^70",[94,"^=",true,536870913]],["^70",[94,"^3J",true,536870913]],["^70",[94,"^3U",true,536870913]],["^70",[94,"^1L","^74",536870913]],["^70",[95,"^4H",1750770383789,536870913]],["^70",[95,"^6K","repeating temporal property",536870913]],["^70",[95,"^5R","d00Qc",536870913]],["^70",[95,"^5E",3,536870913]],["^70",[95,"^5F","Repeating Temporal Property",536870913]],["^70",[95,"^3",1750770383789,536870913]],["^70",[95,"^2M","~u00000002-8346-1078-4000-000000000000",536870913]],["^70",[95,"^>","^?",536870913]],["^70",[95,"^;","^A",536870913]],["^70",[95,"^=",true,536870913]],["^70",[95,"^B","^C",536870913]],["^70",[95,"^3J",true,536870913]],["^70",[95,"^3U",true,536870913]],["^70",[95,"^1L","^7=",536870913]],["^70",[96,"^4H",1750770383789,536870913]],["^70",[96,"^6K","repeating checked property",536870913]],["^70",[96,"^5R","d00Qd",536870913]],["^70",[96,"^5E",3,536870913]],["^70",[96,"^5F","Repeating Checked Property",536870913]],["^70",[96,"^3",1750770383789,536870913]],["^70",[96,"^2M","~u00000002-1866-3655-5300-000000000000",536870913]],["^70",[96,"^>","^?",536870913]],["^70",[96,"^;","^7",536870913]],["^70",[96,"^=",true,536870913]],["^70",[96,"^B","^C",536870913]],["^70",[96,"^3J",true,536870913]],["^70",[96,"^3U",true,536870913]],["^70",[96,"^1L","^7=",536870913]],["^70",[97,"^4H",1750770383789,536870913]],["^70",[97,"^6K","icon",536870913]],["^70",[97,"^5R","d00Qe",536870913]],["^70",[97,"^5E",3,536870913]],["^70",[97,"^5F","Icon",536870913]],["^70",[97,"^3",1750770383789,536870913]],["^70",[97,"^2M","~u00000002-5891-2328-5000-000000000000",536870913]],["^70",[97,"^>","^?",536870913]],["^70",[97,"^;","^K",536870913]],["^70",[97,"^=",true,536870913]],["^70",[97,"^3J",true,536870913]],["^70",[97,"^1L","^7@",536870913]],["^70",[98,"^4H",1750770383789,536870913]],["^70",[98,"^6K","publishing public?",536870913]],["^70",[98,"^5R","d00Qf",536870913]],["^70",[98,"^5E",3,536870913]],["^70",[98,"^5F","Publishing Public?",536870913]],["^70",[98,"^3",1750770383789,536870913]],["^70",[98,"^2M","~u00000002-1094-6579-3900-000000000000",536870913]],["^70",[98,"^>","^?",536870913]],["^70",[98,"^;","^[",536870913]],["^70",[98,"^=",true,536870913]],["^70",[98,"^3J",true,536870913]],["^70",[98,"^3U",true,536870913]],["^70",[98,"^4@",true,536870913]],["^70",[98,"^1L","^74",536870913]],["^70",[98,"^3R","^77",536870913]],["^70",[99,"^4H",1750770383789,536870913]],["^70",[99,"^6K","excluded from graph view?",536870913]],["^70",[99,"^5R","d00Qg",536870913]],["^70",[99,"^5E",3,536870913]],["^70",[99,"^5F","Excluded from Graph view?",536870913]],["^70",[99,"^3",1750770383789,536870913]],["^70",[99,"^2M","~u00000002-4524-3306-5000-000000000000",536870913]],["^70",[99,"^>","^?",536870913]],["^70",[99,"^;","^1>",536870913]],["^70",[99,"^=",true,536870913]],["^70",[99,"^3J",true,536870913]],["^70",[99,"^3U",true,536870913]],["^70",[99,"^4@",true,536870913]],["^70",[99,"^1L","^74",536870913]],["^70",[99,"^3R","^77",536870913]],["^70",[100,"^4H",1750770383789,536870913]],["^70",[100,"^6K","view type",536870913]],["^70",[100,"^5R","d00Qh",536870913]],["^70",[100,"^5E",3,536870913]],["^70",[100,"^5F","View Type",536870913]],["^70",[100,"^3",1750770383789,536870913]],["^70",[100,"^2M","~u00000002-2182-3760-7000-000000000000",536870913]],["^70",[100,"^>","^?",536870913]],["^70",[100,"^;","^1H",536870913]],["^70",[100,"^=",true,536870913]],["^70",[100,"^B","^C",536870913]],["^70",[100,"^3J",true,536870913]],["^70",[100,"^1Z",101,536870913]],["^70",[100,"^3U",true,536870913]],["^70",[100,"^4@",false,536870913]],["^70",[100,"^1L","^7<",536870913]],["^70",[101,"^3X",100,536870913]],["^70",[101,"^4H",1750770383789,536870913]],["^70",[101,"^5R","d00Qi",536870913]],["^70",[101,"^65",100,536870913]],["^70",[101,"^5N",100,536870913]],["^70",[101,"^5F","Table View",536870913]],["^70",[101,"^3",1750770383789,536870913]],["^70",[101,"^2M","~u00000002-1942-5424-0000-000000000000",536870913]],["^70",[101,"^;","^:",536870913]],["^70",[101,"^3J",true,536870913]],["^70",[101,"^45",100,536870913]],["^70",[101,"^K",["^ ","^7C","^7D","^7E","table"],536870913]],["^70",[102,"^3X",100,536870913]],["^70",[102,"^4H",1750770383789,536870913]],["^70",[102,"^5R","d00Qj",536870913]],["^70",[102,"^65",100,536870913]],["^70",[102,"^5N",100,536870913]],["^70",[102,"^5F","List View",536870913]],["^70",[102,"^3",1750770383789,536870913]],["^70",[102,"^2M","~u00000002-1164-8285-0200-000000000000",536870913]],["^70",[102,"^;","^22",536870913]],["^70",[102,"^3J",true,536870913]],["^70",[102,"^45",100,536870913]],["^70",[102,"^K",["^ ","^7C","^7D","^7E","list"],536870913]],["^70",[103,"^3X",100,536870913]],["^70",[103,"^4H",1750770383789,536870913]],["^70",[103,"^5R","d00Qk",536870913]],["^70",[103,"^65",100,536870913]],["^70",[103,"^5N",100,536870913]],["^70",[103,"^5F","Gallery View",536870913]],["^70",[103,"^3",1750770383789,536870913]],["^70",[103,"^2M","~u00000002-1506-0511-2000-000000000000",536870913]],["^70",[103,"^;","^2>",536870913]],["^70",[103,"^3J",true,536870913]],["^70",[103,"^45",100,536870913]],["^70",[103,"^K",["^ ","^7C","^7D","^7E","layout-grid"],536870913]],["^70",[104,"^4H",1750770383789,536870913]],["^70",[104,"^6K","view feature type",536870913]],["^70",[104,"^5R","d00Ql",536870913]],["^70",[104,"^5E",3,536870913]],["^70",[104,"^5F","View Feature Type",536870913]],["^70",[104,"^3",1750770383789,536870913]],["^70",[104,"^2M","~u00000002-9391-4187-1000-000000000000",536870913]],["^70",[104,"^>","^?",536870913]],["^70",[104,"^;","^2L",536870913]],["^70",[104,"^=",true,536870913]],["^70",[104,"^3J",true,536870913]],["^70",[104,"^3U",true,536870913]],["^70",[104,"^4@",false,536870913]],["^70",[104,"^1L","^73",536870913]],["^70",[105,"^4H",1750770383789,536870913]],["^70",[105,"^6K","view group by property",536870913]],["^70",[105,"^5R","d00Qm",536870913]],["^70",[105,"^5E",3,536870913]],["^70",[105,"^5F","View group by property",536870913]],["^70",[105,"^3",1750770383789,536870913]],["^70",[105,"^2M","~u00000002-8092-1623-6000-000000000000",536870913]],["^70",[105,"^>","^?",536870913]],["^70",[105,"^;","^31",536870913]],["^70",[105,"^=",true,536870913]],["^70",[105,"^B","^C",536870913]],["^70",[105,"^3J",true,536870913]],["^70",[105,"^3U",true,536870913]],["^70",[105,"^4@",false,536870913]],["^70",[105,"^1L","^7=",536870913]],["^70",[106,"^4H",1750770383789,536870913]],["^70",[106,"^6K","view sorting",536870913]],["^70",[106,"^5R","d00Qn",536870913]],["^70",[106,"^5E",3,536870913]],["^70",[106,"^5F","View sorting",536870913]],["^70",[106,"^3",1750770383789,536870913]],["^70",[106,"^2M","~u00000002-2081-0259-4000-000000000000",536870913]],["^70",[106,"^>","^?",536870913]],["^70",[106,"^;","^13",536870913]],["^70",[106,"^=",true,536870913]],["^70",[106,"^3J",true,536870913]],["^70",[106,"^3U",true,536870913]],["^70",[106,"^4@",false,536870913]],["^70",[106,"^1L","~:coll",536870913]],["^70",[107,"^4H",1750770383789,536870913]],["^70",[107,"^6K","view filters",536870913]],["^70",[107,"^5R","d00Qo",536870913]],["^70",[107,"^5E",3,536870913]],["^70",[107,"^5F","View filters",536870913]],["^70",[107,"^3",1750770383789,536870913]],["^70",[107,"^2M","~u00000002-1702-3936-3300-000000000000",536870913]],["^70",[107,"^>","^?",536870913]],["^70",[107,"^;","^3E",536870913]],["^70",[107,"^=",true,536870913]],["^70",[107,"^3J",true,536870913]],["^70",[107,"^3U",true,536870913]],["^70",[107,"^4@",false,536870913]],["^70",[107,"^1L","^7@",536870913]],["^70",[108,"^4H",1750770383789,536870913]],["^70",[108,"^6K","view hidden columns",536870913]],["^70",[108,"^5R","d00Qp",536870913]],["^70",[108,"^5E",3,536870913]],["^70",[108,"^5F","View hidden columns",536870913]],["^70",[108,"^3",1750770383789,536870913]],["^70",[108,"^2M","~u00000002-9750-5719-2000-000000000000",536870913]],["^70",[108,"^>","^16",536870913]],["^70",[108,"^;","^2T",536870913]],["^70",[108,"^=",true,536870913]],["^70",[108,"^3J",true,536870913]],["^70",[108,"^3U",true,536870913]],["^70",[108,"^4@",false,536870913]],["^70",[108,"^1L","^73",536870913]],["^70",[109,"^4H",1750770383789,536870913]],["^70",[109,"^6K","view ordered columns",536870913]],["^70",[109,"^5R","d00Qq",536870913]],["^70",[109,"^5E",3,536870913]],["^70",[109,"^5F","View ordered columns",536870913]],["^70",[109,"^3",1750770383789,536870913]],["^70",[109,"^2M","~u00000002-1485-5871-0000-000000000000",536870913]],["^70",[109,"^>","^?",536870913]],["^70",[109,"^;","^40",536870913]],["^70",[109,"^=",true,536870913]],["^70",[109,"^3J",true,536870913]],["^70",[109,"^3U",true,536870913]],["^70",[109,"^4@",false,536870913]],["^70",[109,"^1L","^7H",536870913]],["^70",[110,"^4H",1750770383789,536870913]],["^70",[110,"^6K","view columns settings",536870913]],["^70",[110,"^5R","d00Qr",536870913]],["^70",[110,"^5E",3,536870913]],["^70",[110,"^5F","View columns settings",536870913]],["^70",[110,"^3",1750770383789,536870913]],["^70",[110,"^2M","~u00000002-1675-5105-5500-000000000000",536870913]],["^70",[110,"^>","^?",536870913]],["^70",[110,"^;","^1U",536870913]],["^70",[110,"^=",true,536870913]],["^70",[110,"^3J",true,536870913]],["^70",[110,"^3U",true,536870913]],["^70",[110,"^4@",false,536870913]],["^70",[110,"^1L","^7@",536870913]],["^70",[111,"^4H",1750770383790,536870913]],["^70",[111,"^6K","table view pinned columns",536870913]],["^70",[111,"^5R","d00Qs",536870913]],["^70",[111,"^5E",3,536870913]],["^70",[111,"^5F","Table view pinned columns",536870913]],["^70",[111,"^3",1750770383790,536870913]],["^70",[111,"^2M","~u00000002-2673-7513-8000-000000000000",536870913]],["^70",[111,"^>","^16",536870913]],["^70",[111,"^;","^15",536870913]],["^70",[111,"^=",true,536870913]],["^70",[111,"^B","^C",536870913]],["^70",[111,"^3J",true,536870913]],["^70",[111,"^3U",true,536870913]],["^70",[111,"^4@",false,536870913]],["^70",[111,"^1L","^7=",536870913]],["^70",[112,"^4H",1750770383790,536870913]],["^70",[112,"^6K","this view belongs to",536870913]],["^70",[112,"^5R","d00Qt",536870913]],["^70",[112,"^5E",3,536870913]],["^70",[112,"^5F","This view belongs to",536870913]],["^70",[112,"^3",1750770383790,536870913]],["^70",[112,"^2M","~u00000002-3627-4319-0000-000000000000",536870913]],["^70",[112,"^>","^?",536870913]],["^70",[112,"^;","^4Q",536870913]],["^70",[112,"^=",true,536870913]],["^70",[112,"^B","^C",536870913]],["^70",[112,"^3J",true,536870913]],["^70",[112,"^3U",true,536870913]],["^70",[112,"^4@",false,536870913]],["^70",[112,"^1L","^7A",536870913]],["^70",[113,"^4H",1750770383790,536870913]],["^70",[113,"^6K","file type",536870913]],["^70",[113,"^5R","d00Qu",536870913]],["^70",[113,"^5E",3,536870913]],["^70",[113,"^5F","File Type",536870913]],["^70",[113,"^3",1750770383790,536870913]],["^70",[113,"^2M","~u00000002-1142-0830-9800-000000000000",536870913]],["^70",[113,"^>","^?",536870913]],["^70",[113,"^;","^27",536870913]],["^70",[113,"^=",true,536870913]],["^70",[113,"^3J",true,536870913]],["^70",[113,"^3U",true,536870913]],["^70",[113,"^4@",false,536870913]],["^70",[113,"^1L","^79",536870913]],["^70",[114,"^4H",1750770383790,536870913]],["^70",[114,"^6K","file size",536870913]],["^70",[114,"^5R","d00Qv",536870913]],["^70",[114,"^5E",3,536870913]],["^70",[114,"^5F","File Size",536870913]],["^70",[114,"^3",1750770383790,536870913]],["^70",[114,"^2M","~u00000002-1167-8621-9000-000000000000",536870913]],["^70",[114,"^>","^?",536870913]],["^70",[114,"^;","^58",536870913]],["^70",[114,"^=",true,536870913]],["^70",[114,"^3J",true,536870913]],["^70",[114,"^3U",true,536870913]],["^70",[114,"^4@",false,536870913]],["^70",[114,"^1L","^7?",536870913]],["^70",[115,"^4H",1750770383790,536870913]],["^70",[115,"^6K","file checksum",536870913]],["^70",[115,"^5R","d00Qw",536870913]],["^70",[115,"^5E",3,536870913]],["^70",[115,"^5F","File checksum",536870913]],["^70",[115,"^3",1750770383790,536870913]],["^70",[115,"^2M","~u00000002-1011-4169-7900-000000000000",536870913]],["^70",[115,"^>","^?",536870913]],["^70",[115,"^;","^41",536870913]],["^70",[115,"^=",true,536870913]],["^70",[115,"^3J",true,536870913]],["^70",[115,"^3U",true,536870913]],["^70",[115,"^4@",false,536870913]],["^70",[115,"^1L","^79",536870913]],["^70",[116,"^4H",1750770383790,536870913]],["^70",[116,"^6K","last visit page",536870913]],["^70",[116,"^5R","d00Qx",536870913]],["^70",[116,"^5E",3,536870913]],["^70",[116,"^5F","Last visit page",536870913]],["^70",[116,"^3",1750770383790,536870913]],["^70",[116,"^2M","~u00000002-2107-8035-3500-000000000000",536870913]],["^70",[116,"^>","^?",536870913]],["^70",[116,"^;","^4K",536870913]],["^70",[116,"^=",true,536870913]],["^70",[116,"^3J",true,536870913]],["^70",[116,"^3U",true,536870913]],["^70",[116,"^4@",false,536870913]],["^70",[116,"^1L","^7?",536870913]],["^70",[117,"^4H",1750770383790,536870913]],["^70",[117,"^6K","file remote metadata",536870913]],["^70",[117,"^5R","d00Qy",536870913]],["^70",[117,"^5E",3,536870913]],["^70",[117,"^5F","File remote metadata",536870913]],["^70",[117,"^3",1750770383790,536870913]],["^70",[117,"^2M","~u00000002-9907-5046-9000-000000000000",536870913]],["^70",[117,"^>","^?",536870913]],["^70",[117,"^;","^5L",536870913]],["^70",[117,"^=",true,536870913]],["^70",[117,"^3J",true,536870913]],["^70",[117,"^3U",true,536870913]],["^70",[117,"^4@",false,536870913]],["^70",[117,"^1L","^7@",536870913]],["^70",[118,"^4H",1750770383790,536870913]],["^70",[118,"^6K","asset resize metadata",536870913]],["^70",[118,"^5R","d00Qz",536870913]],["^70",[118,"^5E",3,536870913]],["^70",[118,"^5F","Asset resize metadata",536870913]],["^70",[118,"^3",1750770383790,536870913]],["^70",[118,"^2M","~u00000002-1297-5230-5500-000000000000",536870913]],["^70",[118,"^>","^?",536870913]],["^70",[118,"^;","^51",536870913]],["^70",[118,"^=",true,536870913]],["^70",[118,"^3J",true,536870913]],["^70",[118,"^3U",true,536870913]],["^70",[118,"^4@",false,536870913]],["^70",[118,"^1L","^7@",536870913]],["^70",[119,"^4H",1750770383790,536870913]],["^70",[119,"^6K","due",536870913]],["^70",[119,"^5R","d00R0",536870913]],["^70",[119,"^5E",3,536870913]],["^70",[119,"^5F","Due",536870913]],["^70",[119,"^3",1750770383790,536870913]],["^70",[119,"^2M","~u00000002-1089-0805-4900-000000000000",536870913]],["^70",[119,"^>","^?",536870913]],["^70",[119,"^;","^5V",536870913]],["^70",[119,"^=",true,536870913]],["^70",[119,"^3J",true,536870913]],["^70",[119,"^3U",false,536870913]],["^70",[119,"^4@",false,536870913]],["^70",[119,"^1L","^7:",536870913]],["^70",[120,"^4H",1750770383790,536870913]],["^70",[120,"^6K","state",536870913]],["^70",[120,"^5R","d00R1",536870913]],["^70",[120,"^5E",3,536870913]],["^70",[120,"^5F","State",536870913]],["^70",[120,"^3",1750770383790,536870913]],["^70",[120,"^2M","~u00000002-1165-1650-8700-000000000000",536870913]],["^70",[120,"^>","^?",536870913]],["^70",[120,"^;","^O",536870913]],["^70",[120,"^=",true,536870913]],["^70",[120,"^3J",true,536870913]],["^70",[120,"^3U",false,536870913]],["^70",[120,"^4@",false,536870913]],["^70",[120,"^1L","^7@",536870913]],["^70",[121,"^4H",1750770383790,536870913]],["^70",[121,"^6K","user name",536870913]],["^70",[121,"^5R","d00R2",536870913]],["^70",[121,"^5E",3,536870913]],["^70",[121,"^5F","User Name",536870913]],["^70",[121,"^3",1750770383790,536870913]],["^70",[121,"^2M","~u00000002-1360-0260-1600-000000000000",536870913]],["^70",[121,"^>","^?",536870913]],["^70",[121,"^;","^D",536870913]],["^70",[121,"^=",true,536870913]],["^70",[121,"^3J",true,536870913]],["^70",[121,"^3U",false,536870913]],["^70",[121,"^4@",true,536870913]],["^70",[121,"^1L","^79",536870913]],["^70",[122,"^4H",1750770383790,536870913]],["^70",[122,"^6K","user email",536870913]],["^70",[122,"^5R","d00R3",536870913]],["^70",[122,"^5E",3,536870913]],["^70",[122,"^5F","User Email",536870913]],["^70",[122,"^3",1750770383790,536870913]],["^70",[122,"^2M","~u00000002-1655-2060-6300-000000000000",536870913]],["^70",[122,"^>","^?",536870913]],["^70",[122,"^;","^53",536870913]],["^70",[122,"^=",true,536870913]],["^70",[122,"^3J",true,536870913]],["^70",[122,"^3U",false,536870913]],["^70",[122,"^4@",true,536870913]],["^70",[122,"^1L","^79",536870913]],["^70",[123,"^4H",1750770383790,536870913]],["^70",[123,"^6K","user avatar",536870913]],["^70",[123,"^5R","d00R4",536870913]],["^70",[123,"^5E",3,536870913]],["^70",[123,"^5F","User Avatar",536870913]],["^70",[123,"^3",1750770383790,536870913]],["^70",[123,"^2M","~u00000002-4165-4885-8000-000000000000",536870913]],["^70",[123,"^>","^?",536870913]],["^70",[123,"^;","^1X",536870913]],["^70",[123,"^=",true,536870913]],["^70",[123,"^3J",true,536870913]],["^70",[123,"^3U",false,536870913]],["^70",[123,"^4@",true,536870913]],["^70",[123,"^1L","^79",536870913]],["^70",[124,"^4H",1750770383790,536870913]],["^70",[124,"^6K","enable property history",536870913]],["^70",[124,"^5R","d00R5",536870913]],["^70",[124,"^5E",3,536870913]],["^70",[124,"^5F","Enable property history",536870913]],["^70",[124,"^3",1750770383790,536870913]],["^70",[124,"^2M","~u00000002-8058-5960-2000-000000000000",536870913]],["^70",[124,"^>","^?",536870913]],["^70",[124,"^;","^4=",536870913]],["^70",[124,"^=",true,536870913]],["^70",[124,"^3J",true,536870913]],["^70",[124,"^W",125,536870913]],["^70",[124,"^4@",true,536870913]],["^70",[124,"^1L","^74",536870913]],["^70",[124,"^3R","^7=",536870913]],["^70",[125,"^4H",1750770383790,536870913]],["^70",[125,"^5R","d00R6",536870913]],["^70",[125,"^65",124,536870913]],["^70",[125,"^5N",124,536870913]],["^70",[125,"^5F","Records history anytime a property's value changes on a node.",536870913]],["^70",[125,"^3",1750770383790,536870913]],["^70",[125,"^2M","~u00000004-1438-1481-0000-000000000000",536870913]],["^70",[125,"^3J",true,536870913]],["^70",[125,"^45",34,536870913]],["^70",[126,"^4H",1750770383790,536870913]],["^70",[126,"^6K","history block",536870913]],["^70",[126,"^5R","d00R7",536870913]],["^70",[126,"^5E",3,536870913]],["^70",[126,"^5F","History block",536870913]],["^70",[126,"^3",1750770383790,536870913]],["^70",[126,"^2M","~u00000002-1142-5541-6000-000000000000",536870913]],["^70",[126,"^>","^?",536870913]],["^70",[126,"^;","^61",536870913]],["^70",[126,"^=",true,536870913]],["^70",[126,"^B","^C",536870913]],["^70",[126,"^3J",true,536870913]],["^70",[126,"^3U",true,536870913]],["^70",[126,"^1L","^75",536870913]],["^70",[127,"^4H",1750770383790,536870913]],["^70",[127,"^6K","history property",536870913]],["^70",[127,"^5R","d00R8",536870913]],["^70",[127,"^5E",3,536870913]],["^70",[127,"^5F","History property",536870913]],["^70",[127,"^3",1750770383790,536870913]],["^70",[127,"^2M","~u00000002-1600-4090-8200-000000000000",536870913]],["^70",[127,"^>","^?",536870913]],["^70",[127,"^;","^6>",536870913]],["^70",[127,"^=",true,536870913]],["^70",[127,"^B","^C",536870913]],["^70",[127,"^3J",true,536870913]],["^70",[127,"^3U",true,536870913]],["^70",[127,"^1L","^7=",536870913]],["^70",[128,"^4H",1750770383790,536870913]],["^70",[128,"^6K","history value",536870913]],["^70",[128,"^5R","d00R9",536870913]],["^70",[128,"^5E",3,536870913]],["^70",[128,"^5F","History value",536870913]],["^70",[128,"^3",1750770383790,536870913]],["^70",[128,"^2M","~u00000002-5131-3603-7000-000000000000",536870913]],["^70",[128,"^>","^?",536870913]],["^70",[128,"^;","^9",536870913]],["^70",[128,"^=",true,536870913]],["^70",[128,"^B","^C",536870913]],["^70",[128,"^3J",true,536870913]],["^70",[128,"^3U",true,536870913]],["^70",[128,"^1L","^75",536870913]],["^70",[129,"^4H",1750770383790,536870913]],["^70",[129,"^6K","history scalar value",536870913]],["^70",[129,"^5R","d00RA",536870913]],["^70",[129,"^5E",3,536870913]],["^70",[129,"^5F","History scalar value",536870913]],["^70",[129,"^3",1750770383790,536870913]],["^70",[129,"^2M","~u00000002-2393-3777-5000-000000000000",536870913]],["^70",[129,"^>","^?",536870913]],["^70",[129,"^;","^N",536870913]],["^70",[129,"^=",true,536870913]],["^70",[129,"^3J",true,536870913]],["^70",[129,"^3U",true,536870913]],["^70",[129,"^1L","^76",536870913]],["^70",[130,"^4H",1750770383790,536870913]],["^70",[130,"^6K","node created by(deprecated)",536870913]],["^70",[130,"^5R","d00RB",536870913]],["^70",[130,"^5E",3,536870913]],["^70",[130,"^5F","Node created by(deprecated)",536870913]],["^70",[130,"^3",1750770383790,536870913]],["^70",[130,"^2M","~u00000002-1367-2955-9500-000000000000",536870913]],["^70",[130,"^>","^?",536870913]],["^70",[130,"^;","^11",536870913]],["^70",[130,"^=",true,536870913]],["^70",[130,"^3J",true,536870913]],["^70",[130,"^3U",true,536870913]],["^70",[130,"^1L","^79",536870913]],["^70",[131,"^4H",1750770383790,536870913]],["^70",[131,"^6K","node created by",536870913]],["^70",[131,"^5R","d00RC",536870913]],["^70",[131,"^5E",3,536870913]],["^70",[131,"^5F","Node created by",536870913]],["^70",[131,"^3",1750770383790,536870913]],["^70",[131,"^2M","~u00000002-8544-3390-8000-000000000000",536870913]],["^70",[131,"^>","^?",536870913]],["^70",[131,"^;","^1@",536870913]],["^70",[131,"^=",true,536870913]],["^70",[131,"^B","^C",536870913]],["^70",[131,"^3J",true,536870913]],["^70",[131,"^3U",true,536870913]],["^70",[131,"^1L","^75",536870913]],["^70",[132,"^4H",1750770383790,536870913]],["^70",[132,"^6K","used template",536870913]],["^70",[132,"^5R","d00RD",536870913]],["^70",[132,"^5E",3,536870913]],["^70",[132,"^5F","Used template",536870913]],["^70",[132,"^3",1750770383790,536870913]],["^70",[132,"^2M","~u00000002-9803-6990-6000-000000000000",536870913]],["^70",[132,"^>","^?",536870913]],["^70",[132,"^;","^1J",536870913]],["^70",[132,"^=",true,536870913]],["^70",[132,"^B","^C",536870913]],["^70",[132,"^3J",true,536870913]],["^70",[132,"^55",4,536870913]],["^70",[132,"^3U",true,536870913]],["^70",[132,"^4@",false,536870913]],["^70",[132,"^1L","^7A",536870913]],["^70",[133,"^4H",1750770383790,536870913]],["^70",[133,"^6K","apply template to tags",536870913]],["^70",[133,"^5R","d00RE",536870913]],["^70",[133,"^5E",3,536870913]],["^70",[133,"^5F","Apply template to tags",536870913]],["^70",[133,"^3",1750770383790,536870913]],["^70",[133,"^2M","~u00000002-4291-2432-2000-000000000000",536870913]],["^70",[133,"^>","^16",536870913]],["^70",[133,"^;","^1T",536870913]],["^70",[133,"^=",true,536870913]],["^70",[133,"^B","^C",536870913]],["^70",[133,"^3J",true,536870913]],["^70",[133,"^4@",true,536870913]],["^70",[133,"^1L","^78",536870913]],["^70",[134,"^4H",1750770383791,536870913]],["^70",[134,"^6K","page",536870913]],["^70",[134,"^5E",2,536870913]],["^70",[134,"^5F","Page",536870913]],["^70",[134,"^3",1750770383791,536870913]],["^70",[134,"^2M","~u00000002-1484-3403-2900-000000000000",536870913]],["^70",[134,"^;","^24",536870913]],["^70",[134,"^3J",true,536870913]],["^70",[134,"^1D",1,536871093]],["^70",[135,"^4H",1750770383791,536870913]],["^70",[135,"^6K","journal",536870913]],["^70",[135,"^5E",2,536870913]],["^70",[135,"^5F","Journal",536870913]],["^70",[135,"^3",1750770383791,536870913]],["^70",[135,"^2M","~u00000002-1979-7410-8100-000000000000",536870913]],["^70",[135,"^;","^2@",536870913]],["^70",[135,"^3J",true,536870913]],["^70",[135,"^1D",134,536871093]],["^70",[135,"^Y","MMM do, yyyy",536870913]],["^70",[136,"^4H",1750770383791,536870913]],["^70",[136,"^6K","whiteboard",536870913]],["^70",[136,"^5E",2,536870913]],["^70",[136,"^5F","Whiteboard",536870913]],["^70",[136,"^3",1750770383791,536870913]],["^70",[136,"^2M","~u00000002-1013-6984-5200-000000000000",536870913]],["^70",[136,"^;","^2Q",536870913]],["^70",[136,"^3J",true,536870913]],["^70",[136,"^1D",134,536871093]],["^70",[137,"^4H",1750770383791,536870913]],["^70",[137,"^6K","task",536870913]],["^70",[137,"^5E",2,536870913]],["^70",[137,"^5F","Task",536870913]],["^70",[137,"^3",1750770383791,536870913]],["^70",[137,"^2M","~u00000002-1282-1814-5700-000000000000",536870913]],["^70",[137,"^;","^33",536870913]],["^70",[137,"^3J",true,536870913]],["^70",[137,"^1D",1,536871093]],["^70",[137,"^2H",69,536870913]],["^70",[137,"^2H",76,536870913]],["^70",[137,"^2H",81,536870913]],["^70",[137,"^2H",83,536870913]],["^70",[138,"^4H",1750770383791,536870913]],["^70",[138,"^6K","query",536870913]],["^70",[138,"^5E",2,536870913]],["^70",[138,"^5F","Query",536870913]],["^70",[138,"^3",1750770383791,536870913]],["^70",[138,"^2M","~u00000002-2324-8016-6000-000000000000",536870913]],["^70",[138,"^;","^3;",536870913]],["^70",[138,"^3J",true,536870913]],["^70",[138,"^K",["^ ","^7C","^7D","^7E","search"],536870913]],["^70",[138,"^1D",1,536871093]],["^70",[138,"^2H",44,536870913]],["^70",[139,"^4H",1750770383791,536870913]],["^70",[139,"^6K","card",536870913]],["^70",[139,"^5E",2,536870913]],["^70",[139,"^5F","Card",536870913]],["^70",[139,"^3",1750770383791,536870913]],["^70",[139,"^2M","~u00000002-1358-2811-0900-000000000000",536870913]],["^70",[139,"^;","^3G",536870913]],["^70",[139,"^3J",true,536870913]],["^70",[139,"^1D",1,536871093]],["^70",[139,"^2H",119,536870913]],["^70",[139,"^2H",120,536870913]],["^70",[140,"^4H",1750770383791,536870913]],["^70",[140,"^6K","cards",536870913]],["^70",[140,"^5E",2,536870913]],["^70",[140,"^5F","Cards",536870913]],["^70",[140,"^3",1750770383791,536870913]],["^70",[140,"^2M","~u00000002-1284-2651-6700-000000000000",536870913]],["^70",[140,"^;","^3Q",536870913]],["^70",[140,"^3J",true,536870913]],["^70",[140,"^K",["^ ","^7C","^7D","^7E","search"],536870913]],["^70",[140,"^1D",138,536871093]],["^70",[141,"^4H",1750770383791,536870913]],["^70",[141,"^6K","asset",536870913]],["^70",[141,"^5E",2,536870913]],["^70",[141,"^5F","Asset",536870913]],["^70",[141,"^3",1750770383791,536870913]],["^70",[141,"^2M","~u00000002-7975-0297-0000-000000000000",536870913]],["^70",[141,"^;","^28",536870913]],["^70",[141,"^3J",true,536870913]],["^70",[141,"^1D",1,536871093]],["^70",[141,"^3A",true,536870913]],["^70",[141,"^2H",113,536870913]],["^70",[141,"^2H",114,536870913]],["^70",[141,"^2H",115,536870913]],["^70",[141,"^1H",103,536870913]],["^70",[142,"^4H",1750770383791,536870913]],["^70",[142,"^6K","code",536870913]],["^70",[142,"^5E",2,536870913]],["^70",[142,"^5F","Code",536870913]],["^70",[142,"^3",1750770383791,536870913]],["^70",[142,"^2M","~u00000002-1454-9866-4100-000000000000",536870913]],["^70",[142,"^;","^4;",536870913]],["^70",[142,"^3J",true,536870913]],["^70",[142,"^1D",1,536871093]],["^70",[142,"^3A",true,536870913]],["^70",[142,"^2H",33,536870913]],["^70",[142,"^2H",35,536870913]],["^70",[143,"^4H",1750770383791,536870913]],["^70",[143,"^6K","quote",536870913]],["^70",[143,"^5E",2,536870913]],["^70",[143,"^5F","Quote",536870913]],["^70",[143,"^3",1750770383791,536870913]],["^70",[143,"^2M","~u00000002-1176-1666-1700-000000000000",536870913]],["^70",[143,"^;","^2D",536870913]],["^70",[143,"^3J",true,536870913]],["^70",[143,"^1D",1,536871093]],["^70",[143,"^3A",true,536870913]],["^70",[143,"^2H",33,536870913]],["^70",[144,"^4H",1750770383791,536870913]],["^70",[144,"^6K","math",536870913]],["^70",[144,"^5E",2,536870913]],["^70",[144,"^5F","Math",536870913]],["^70",[144,"^3",1750770383791,536870913]],["^70",[144,"^2M","~u00000002-2038-9631-2100-000000000000",536870913]],["^70",[144,"^;","^4E",536870913]],["^70",[144,"^3J",true,536870913]],["^70",[144,"^1D",1,536871093]],["^70",[144,"^3A",true,536870913]],["^70",[144,"^2H",33,536870913]],["^70",[145,"^4H",1750770383791,536870913]],["^70",[145,"^6K","pdf annotation",536870913]],["^70",[145,"^5E",2,536870913]],["^70",[145,"^5F","PDF Annotation",536870913]],["^70",[145,"^3",1750770383791,536870913]],["^70",[145,"^2M","~u00000002-5049-5962-0000-000000000000",536870913]],["^70",[145,"^;","^4Z",536870913]],["^70",[145,"^3J",true,536870913]],["^70",[145,"^1D",1,536871093]],["^70",[145,"^3A",true,536870913]],["^70",[145,"^2H",49,536870913]],["^70",[145,"^2H",50,536870913]],["^70",[145,"^2H",51,536870913]],["^70",[145,"^2H",52,536870913]],["^70",[145,"^2H",58,536870913]],["^70",[145,"^2H",59,536870913]],["^70",[145,"^2H",60,536870913]],["^70",[146,"^2M","~u00000004-3919-3813-3000-000000000000",536870913]],["^70",[146,"^1N","{:meta/version 1\n ;; Hide empty block properties\n ;; This is _only_ for DB graphs.\n ;; Default value: false\n ;; :ui/hide-empty-properties? false\n\n ;; Enable tooltip preview on hover.\n ;; Default value: true\n :ui/enable-tooltip? true\n\n ;; Display brackets [[]] around page references.\n ;; Default value: true\n ;; :ui/show-brackets? true\n\n ;; Display all lines of a block when referencing ((block)).\n ;; Default value: false\n :ui/show-full-blocks? false\n\n ;; Automatically expand block references when zooming in.\n ;; Default value: true\n :ui/auto-expand-block-refs? true\n\n ;; Disable accent marks when searching.\n ;; After changing this setting, rebuild the search index by pressing (^C ^S).\n ;; Default value: true\n :feature/enable-search-remove-accents? true\n\n ;; Enable journals.\n ;; Default value: true\n ;; :feature/enable-journals? true\n\n ;; Enable flashcards.\n ;; Default value: true\n ;; :feature/enable-flashcards? true\n\n ;; Enable whiteboards.\n ;; Default value: true\n ;; :feature/enable-whiteboards? true\n\n ;; Disable the journal's built-in 'Scheduled tasks and deadlines' query.\n ;; Default value: false\n ;; :feature/disable-scheduled-and-deadline-query? false\n\n ;; Specify the number of days displayed in the future for\n ;; the 'scheduled tasks and deadlines' query.\n ;; Example usage:\n ;; Display all scheduled and deadline blocks for the next 14 days:\n ;; :scheduled/future-days 14\n ;; Default value: 7\n ;; :scheduled/future-days 7\n\n ;; Specify the first day of the week.\n ;; Available options:\n ;; - integer from 0 to 6 (Monday to Sunday)\n ;; Default value: 6 (Sunday)\n :start-of-week 6\n\n ;; Specify a custom CSS import.\n ;; This option takes precedence over the local `logseq/custom.css` file.\n ;; Example usage:\n ;; :custom-css-url \"@import url('https://cdn.jsdelivr.net/gh/dracula/logseq@master/custom.css');\"\n\n ;; Specify a custom JS import.\n ;; This option takes precedence over the local `logseq/custom.js` file.\n ;; Example usage:\n ;; :custom-js-url \"https://cdn.logseq.com/custom.js\"\n\n ;; Set bullet indentation when exporting\n ;; Available options:\n ;; - `:eight-spaces` as eight spaces\n ;; - `:four-spaces` as four spaces\n ;; - `:two-spaces` as two spaces\n ;; - `:tab` as a tab character (default)\n ;; :export/bullet-indentation :tab\n\n ;; Publish all pages within the Graph\n ;; Regardless of whether individual pages have been marked as public.\n ;; Default value: false\n ;; :publishing/all-pages-public? false\n\n ;; Define the default home page and sidebar status.\n ;; If unspecified, the journal page will be loaded on startup and the right sidebar will stay hidden.\n ;; The `:page` value represents the name of the page displayed at startup.\n ;; Available options for `:sidebar` are:\n ;; - \"Contents\" to display the Contents page in the right sidebar.\n ;; - A specific page name to display in the right sidebar.\n ;; - An array of multiple pages, e.g., [\"Contents\" \"Page A\" \"Page B\"].\n ;; If `:sidebar` remains unset, the right sidebar will stay hidden.\n ;; Examples:\n ;; 1. Set \"Changelog\" as the home page and display \"Contents\" in the right sidebar:\n ;; :default-home {:page \"Changelog\", :sidebar \"Contents\"}\n ;; 2. Set \"Jun 3rd, 2021\" as the home page without the right sidebar:\n ;; :default-home {:page \"Jun 3rd, 2021\"}\n ;; 3. Set \"home\" as the home page and display multiple pages in the right sidebar:\n ;; :default-home {:page \"home\", :sidebar [\"Page A\" \"Page B\"]}\n\n ;; Configure custom shortcuts.\n ;; Syntax:\n ;; 1. + indicates simultaneous key presses, e.g., `Ctrl+Shift+a`.\n ;; 2. A space between keys represents key chords, e.g., `t s` means\n ;; pressing `t` followed by `s`.\n ;; 3. mod refers to `Ctrl` for Windows/Linux and `Command` for Mac.\n ;; 4. Use false to disable a specific shortcut.\n ;; 5. You can define multiple bindings for a single action, e.g., [\"ctrl+j\" \"down\"].\n ;; The full list of configurable shortcuts is available at:\n ;; https://github.com/logseq/logseq/blob/master/src/main/frontend/modules/shortcut/config.cljs\n ;; Example:\n ;; :shortcuts\n ;; {:editor/new-block \"enter\"\n ;; :editor/new-line \"shift+enter\"\n ;; :editor/insert-link \"mod+shift+k\"\n ;; :editor/highlight false\n ;; :ui/toggle-settings \"t s\"\n ;; :editor/up [\"ctrl+k\" \"up\"]\n ;; :editor/down [\"ctrl+j\" \"down\"]\n ;; :editor/left [\"ctrl+h\" \"left\"]\n ;; :editor/right [\"ctrl+l\" \"right\"]}\n :shortcuts {}\n\n ;; Configure the behavior of pressing Enter in document mode.\n ;; if set to true, pressing Enter will create a new block.\n ;; Default value: false\n :shortcut/doc-mode-enter-for-new-block? false\n\n ;; Block content larger than `block/title-max-length` will not be searchable\n ;; or editable for performance.\n ;; Default value: 10000\n :block/title-max-length 10000\n\n ;; Display command documentation on hover.\n ;; Default value: true\n :ui/show-command-doc? true\n\n ;; Display empty bullet points.\n ;; Default value: false\n :ui/show-empty-bullets? false\n\n ;; Pre-defined :view function to use with advanced queries.\n :query/views\n {:pprint\n (fn [r] [:pre.code (pprint r)])}\n\n ;; Advanced queries `:result-transform` function.\n ;; Transform the query result before displaying it.\n ;; Example usage for DB graphs:\n;; :query/result-transforms\n;; {:sort-by-priority\n;; (fn [result] (sort-by (fn [h] (get h :logseq.property/priority \"Z\")) result))}\n\n;; Queries will be displayed at the bottom of today's journal page.\n;; Example usage:\n;; :default-queries\n;; {:journals []}\n\n ;; Add custom commands to the command palette\n ;; Example usage:\n ;; :commands\n ;; [\n ;; [\"js\" \"Javascript\"]\n ;; [\"md\" \"Markdown\"]\n ;; ]\n :commands []\n\n ;; Enable collapsing blocks with titles but no children.\n ;; By default, only blocks with children can be collapsed.\n ;; Setting `:outliner/block-title-collapse-enabled?` to true allows collapsing\n ;; blocks with titles (multiple lines) and content. For example:\n ;; - block title\n ;; block content\n ;; Default value: false\n :outliner/block-title-collapse-enabled? false\n\n ;; Macros replace texts and will make you more productive.\n ;; Example usage:\n ;; Change the :macros value below to:\n ;; {\"poem\" \"Rose is $1, violet's $2. Life's ordered: Org assists you.\"}\n ;; input \"{{poem red,blue}}\"\n ;; becomes\n ;; Rose is red, violet's blue. Life's ordered: Org assists you.\n :macros {}\n\n ;; Configure the default expansion level for linked references.\n ;; For example, consider the following block hierarchy:\n ;; - a [[page]] (level 1)\n ;; - b (level 2)\n ;; - c (level 3)\n ;; - d (level 4)\n ;;\n ;; With the default value of level 2, block b will be collapsed.\n ;; If the level's value is set to 3, block c will be collapsed.\n ;; Default value: 2\n :ref/default-open-blocks-level 2\n\n ;; Graph view configuration.\n ;; Example usage:\n ;; :graph/settings\n ;; {:orphan-pages? true ; Default value: true\n ;; :builtin-pages? false ; Default value: false\n ;; :excluded-pages? false ; Default value: false\n ;; :journal? false} ; Default value: false\n\n ;; Graph view configuration.\n ;; Example usage:\n ;; :graph/forcesettings\n ;; {:link-dist 180 ; Default value: 180\n ;; :charge-strength -600 ; Default value: -600\n ;; :charge-range 600} ; Default value: 600\n\n ;; Mobile photo upload configuration.\n ;; :mobile/photo\n ;; {:allow-editing? true\n ;; :quality 80}\n\n ;; Mobile features options\n ;; Gestures\n ;; Example usage:\n ;; :mobile\n ;; {:gestures/disabled-in-block-with-tags [\"kanban\"]}\n\n ;; Extra CodeMirror options\n ;; See https://codemirror.net/5/doc/manual.html#config for possible options\n ;; Example usage:\n ;; :editor/extra-codemirror-options\n ;; {:lineWrapping false ; Default value: false\n ;; :lineNumbers true ; Default value: true\n ;; :readOnly false} ; Default value: false\n\n ;; Enable logical outdenting\n ;; Default value: false\n ;; :editor/logical-outdenting? false\n\n ;; Prefer pasting the file when text and a file are in the clipboard.\n ;; Default value: false\n ;; :editor/preferred-pasting-file? false\n\n ;; Quick capture templates for receiving content from other apps.\n ;; Each template contains three elements {time}, {text} and {url}, which can be auto-expanded\n ;; by receiving content from other apps. Note: the {} cannot be omitted.\n ;; - {time}: capture time\n ;; - {date}: capture date using current date format, use `[[{date}]]` to get a page reference\n ;; - {text}: text that users selected before sharing.\n ;; - {url}: URL or assets path for media files stored in Logseq.\n ;; You can also reorder them or use only one or two of them in the template.\n ;; You can also insert or format any text in the template, as shown in the following examples.\n ;; :quick-capture-templates\n ;; {:text \"[[quick capture]] **{time}**: {text} from {url}\"\n ;; :media \"[[quick capture]] **{time}**: {url}\"}\n\n ;; Quick capture options.\n ;; - insert-today? Insert the capture at the end of today's journal page (boolean).\n ;; - redirect-page? Redirect to the quick capture page after capturing (boolean).\n ;; - default-page The default page to capture to if insert-today? is false (string).\n ;; :quick-capture-options\n ;; {:insert-today? false ;; Default value: true\n ;; :redirect-page? false ;; Default value: false\n ;; :default-page \"quick capture\"} ;; Default page: \"quick capture\"\n\n ;; Configure the Enter key behavior for\n ;; context-aware editing with DWIM (Do What I Mean).\n ;; context-aware Enter key behavior implies that pressing Enter will\n ;; have different outcomes based on the context.\n ;; For instance, pressing Enter within a list generates a new list item,\n ;; whereas pressing Enter in a block reference opens the referenced block.\n ;; :dwim/settings\n ;; {:admonition&src? true ;; Default value: true\n ;; :markup? false ;; Default value: false\n ;; :block-ref? true ;; Default value: true\n ;; :page-ref? true ;; Default value: true\n ;; :properties? true ;; Default value: true\n ;; :list? false} ;; Default value: false\n }\n",536870913]],["^70",[146,"^@","~m1750770383784",536870913]],["^70",[146,"^46","~m1750770383784",536870913]],["^70",[146,"^6L","logseq/config.edn",536870913]],["^70",[147,"^2M","~u00000004-1713-4660-3800-000000000000",536870913]],["^70",[147,"^1N","",536870913]],["^70",[147,"^@","~m1750770383784",536870913]],["^70",[147,"^46","~m1750770383784",536870913]],["^70",[147,"^6L","logseq/custom.css",536870913]],["^70",[148,"^2M","~u00000004-1335-6485-2300-000000000000",536870913]],["^70",[148,"^1N","",536870913]],["^70",[148,"^@","~m1750770383784",536870913]],["^70",[148,"^46","~m1750770383784",536870913]],["^70",[148,"^6L","logseq/custom.js",536870913]],["^70",[149,"^4H",1750770383791,536870913]],["^70",[149,"^6K","contents",536870913]],["^70",[149,"^5E",134,536870913]],["^70",[149,"^5F","Contents",536870913]],["^70",[149,"^3",1750770383791,536870913]],["^70",[149,"^2M","~u00000004-1690-2597-3200-000000000000",536870913]],["^70",[149,"^3J",true,536870913]],["^70",[150,"^4H",1750770383791,536870913]],["^70",[150,"^6K","$$$views",536870913]],["^70",[150,"^5E",134,536870913]],["^70",[150,"^5F","$$$views",536870913]],["^70",[150,"^R",536871079,536871080]],["^70",[150,"^3",1750770383791,536870913]],["^70",[150,"^2M","~u00000004-1906-3437-5800-000000000000",536870913]],["^70",[150,"^3J",true,536870913]],["^70",[150,"^3U",true,536870913]],["^70",[151,"^4H",1750770383791,536870913]],["^70",[151,"^6K","$$$favorites",536870913]],["^70",[151,"^5E",134,536870913]],["^70",[151,"^5F","$$$favorites",536870913]],["^70",[151,"^3",1750770383791,536870913]],["^70",[151,"^2M","~u00000004-1018-5888-4100-000000000000",536870913]],["^70",[151,"^3J",true,536870913]],["^70",[151,"^3U",true,536870913]],["^70",[152,"^;","^4>",536870914]],["^70",[152,"^25",1755080762424,536871091]],["^70",[153,"^4H",1750770384062,536870915]],["^70",[153,"^5:",20250624,536870915]],["^70",[153,"^6K","jun 24th, 2025",536870915]],["^70",[153,"^62",21,536870919]],["^70",[153,"^62",135,536870919]],["^70",[153,"^3H",21,536871059]],["^70",[153,"^3H",135,536871059]],["^70",[153,"^5E",135,536870915]],["^70",[153,"^5F","Jun 24th, 2025",536870915]],["^70",[153,"^R",536871072,536871073]],["^70",[153,"^3",1750770405685,536871059]],["^70",[153,"^2M","~u00000001-2025-0624-0000-000000000000",536870915]],["^70",[153,"^1@",154,536870917]],["^70",[154,"^4H",1750770384067,536870917]],["^70",[154,"^6K","tienson",536870917]],["^70",[154,"^62",21,536870919]],["^70",[154,"^62",121,536870919]],["^70",[154,"^62",122,536870919]],["^70",[154,"^62",134,536870919]],["^70",[154,"^3H",21,536870918]],["^70",[154,"^3H",121,536870918]],["^70",[154,"^3H",122,536870918]],["^70",[154,"^3H",134,536870918]],["^70",[154,"^5E",134,536870917]],["^70",[154,"^5F","tienson",536870917]],["^70",[154,"^R",536870918,536870919]],["^70",[154,"^3",1750770384067,536870917]],["^70",[154,"^2M","~u59f30f2c-6dc9-4a53-927b-ea405814c9e9",536870917]],["^70",[154,"^53","tiensonqin@gmail.com",536870917]],["^70",[154,"^D","tienson",536870917]],["^70",[155,"^4H",1750770385619,536870922]],["^70",[155,"^5R","a0",536870922]],["^70",[155,"^65",153,536870922]],["^70",[155,"^5N",153,536870922]],["^70",[155,"^62",21,536870940]],["^70",[155,"^62",135,536870940]],["^70",[155,"^62",153,536870940]],["^70",[155,"^62",156,536870940]],["^70",[155,"^3H",21,536870939]],["^70",[155,"^3H",156,536870939]],["^70",[155,"^5E",156,536870937]],["^70",[155,"^5F","b1",536870927]],["^70",[155,"^R",536870939,536870940]],["^70",[155,"^3",1750770387301,536870927]],["^70",[155,"^2M","~u685aa2d1-94a9-4dc5-ae49-8476d1f52856",536870922]],["^70",[155,"^1@",154,536870924]],["^70",[156,"^4H",1750770392547,536870932]],["^70",[156,"^6K","classasproperty",536870932]],["^70",[156,"^62",1,536870954]],["^70",[156,"^62",2,536870954]],["^70",[156,"^62",3,536870954]],["^70",[156,"^62",21,536870954]],["^70",[156,"^62",36,536870954]],["^70",[156,"^3H",1,536870953]],["^70",[156,"^3H",2,536870953]],["^70",[156,"^3H",3,536870953]],["^70",[156,"^3H",21,536870953]],["^70",[156,"^3H",36,536870953]],["^70",[156,"^5E",2,536870932]],["^70",[156,"^5F","ClassAsProperty",536870932]],["^70",[156,"^R",536870953,536870954]],["^70",[156,"^3",1750770392547,536870932]],["^70",[156,"^2M","~u685aa2d8-deeb-4cac-9574-ddeb69fe936e",536870932]],["^70",[156,"^;","^6J",536870932]],["^70",[156,"^1@",154,536870934]],["^70",[156,"^1D",1,536871093]],["^70",[157,"^4H",1750770393195,536870941]],["^70",[157,"^5R","a1",536870941]],["^70",[157,"^65",153,536870941]],["^70",[157,"^5N",153,536870941]],["^70",[157,"^62",21,536870958]],["^70",[157,"^62",135,536870958]],["^70",[157,"^62",153,536870958]],["^70",[157,"^62",155,536870958]],["^70",[157,"^62",156,536870958]],["^70",[157,"^3H",155,536870957]],["^70",[157,"^3H",156,536870957]],["^70",[157,"^5F","b2",536870946]],["^70",[157,"^R",536870957,536870958]],["^70",[157,"^3",1750770398177,536870955]],["^70",[157,"^2M","~u685aa2d9-d53c-4bef-8e9b-7cff1b5b19d9",536870941]],["^70",[157,"^1@",154,536870943]],["^70",[157,"^3=",155,536871092]],["^70",[158,"^4H",1750770399609,536870959]],["^70",[158,"^5R","a2",536870959]],["^70",[158,"^65",153,536870959]],["^70",[158,"^5N",153,536870959]],["^70",[158,"^62",21,536871073]],["^70",[158,"^62",135,536871073]],["^70",[158,"^62",153,536871073]],["^70",[158,"^62",168,536871073]],["^70",[158,"^3H",21,536871072]],["^70",[158,"^3H",168,536871072]],["^70",[158,"^5E",168,536871070]],["^70",[158,"^5F","b3",536870964]],["^70",[158,"^R",536871072,536871073]],["^70",[158,"^3",1750770405684,536871063]],["^70",[158,"^2M","~u685aa2df-a59d-4fd6-8924-e8a1fdb2fcde",536870959]],["^70",[158,"^1@",154,536870961]],["^70",[159,"^4H",1750770417130,536870969]],["^70",[159,"^6K","propertyasclass",536870969]],["^70",[159,"^5R","d00RF",536870969]],["^70",[159,"^62",3,536870973]],["^70",[159,"^62",21,536870973]],["^70",[159,"^3H",3,536870972]],["^70",[159,"^3H",21,536870972]],["^70",[159,"^5E",3,536870969]],["^70",[159,"^5F","PropertyAsClass",536870969]],["^70",[159,"^R",536870972,536870973]],["^70",[159,"^3",1750770417130,536870969]],["^70",[159,"^2M","~u00000002-2619-9717-6000-000000000000",536870969]],["^70",[159,"^>","^?",536870969]],["^70",[159,"^;","^63",536870969]],["^70",[159,"^=",true,536870969]],["^70",[159,"^B","^C",536870969]],["^70",[159,"^1@",154,536870971]],["^70",[159,"^1L","^7<",536870969]],["^70",[168,"^4H",1750770494431,536871065]],["^70",[168,"^6K","tag1",536871065]],["^70",[168,"^5R","a1",536871088]],["^70",[168,"^62",1,536871084]],["^70",[168,"^62",2,536871084]],["^70",[168,"^62",21,536871084]],["^70",[168,"^62",36,536871084]],["^70",[168,"^62",40,536871084]],["^70",[168,"^62",156,536871084]],["^70",[168,"^3H",1,536871083]],["^70",[168,"^3H",2,536871083]],["^70",[168,"^3H",21,536871083]],["^70",[168,"^3H",36,536871083]],["^70",[168,"^3H",40,536871083]],["^70",[168,"^3H",156,536871083]],["^70",[168,"^5E",2,536871065]],["^70",[168,"^5F","tag1",536871065]],["^70",[168,"^R",536871089,536871090]],["^70",[168,"^3",1750770502211,536871081]],["^70",[168,"^2M","~u685aa33e-dbbe-4073-9df0-928acce0bc5f",536871065]],["^70",[168,"^1@",154,536871067]],["^70",[168,"^1D",1,536871093]],["^70",[168,"^2H",170,536871092]],["^70",[169,"^4H",1750770496571,536871074]],["^70",[169,"^5R","a0",536871074]],["^70",[169,"^65",150,536871074]],["^70",[169,"^5N",150,536871074]],["^70",[169,"^62",150,536871080]],["^70",[169,"^62",168,536871080]],["^70",[169,"^3H",168,536871079]],["^70",[169,"^5F","All",536871074]],["^70",[169,"^R",536871079,536871080]],["^70",[169,"^3",1750770496579,536871076]],["^70",[169,"^2M","~u00000006-2099-4103-4600-000000000000",536871074]],["^70",[169,"^1@",154,536871078]],["^70",[169,"^4Q",168,536871075]],["^70",[169,"^2L","~:class-objects",536871076]],["^70",[170,"^4H",1755080762428,536871092]],["^70",[170,"^6K","classasproperty",536871092]],["^70",[170,"^5R","d00RG",536871092]],["^70",[170,"^5E",3,536871092]],["^70",[170,"^5F","ClassAsProperty",536871092]],["^70",[170,"^3",1755080762428,536871092]],["^70",[170,"^2M","~u00000002-1598-4858-2900-000000000000",536871092]],["^70",[170,"^>","^?",536871092]],["^70",[170,"^;","^3=",536871092]],["^70",[170,"^=",true,536871092]],["^70",[170,"^B","^C",536871092]],["^70",[170,"^55",156,536871092]],["^70",[170,"^1L","^7A",536871092]],["^70",[171,"^4H",1755080762444,536871093]],["^70",[171,"^6K","library",536871093]],["^70",[171,"^5E",134,536871093]],["^70",[171,"^5F","Library",536871093]],["^70",[171,"^3",1755080762444,536871093]],["^70",[171,"^2M","~u00000004-1294-7765-6000-000000000000",536871093]],["^70",[171,"^3J",true,536871093]],["^70",[172,"^4H",1755080762459,536871095]],["^70",[172,"^5R","d00Rj",536871095]],["^70",[172,"^65",36,536871095]],["^70",[172,"^5N",36,536871095]],["^70",[172,"^5F","This enables tags to inherit properties from other tags",536871095]],["^70",[172,"^3",1755080762459,536871095]],["^70",[172,"^2M","~u00000004-4485-6574-6000-000000000000",536871095]],["^70",[172,"^3J",true,536871095]],["^70",[172,"^45",34,536871095]],["^70",[173,"^4H",1755080762463,536871095]],["^70",[173,"^6K","hnsw label updated-at",536871095]],["^70",[173,"^5R","d00TF",536871095]],["^70",[173,"^5E",3,536871095]],["^70",[173,"^5F","HNSW label updated-at",536871095]],["^70",[173,"^3",1755080762463,536871095]],["^70",[173,"^2M","~u00000002-1339-6113-0500-000000000000",536871095]],["^70",[173,"^>","^?",536871095]],["^70",[173,"^;","^34",536871095]],["^70",[173,"^=",true,536871095]],["^70",[173,"^3J",true,536871095]],["^70",[173,"^3U",true,536871095]],["^70",[173,"^4@",false,536871095]],["^70",[173,"^1L","^7:",536871095]],["^70",[174,"^4H",1755080762463,536871095]],["^70",[174,"^6K","test1 property",536871095]],["^70",[174,"^5R","d00TG",536871095]],["^70",[174,"^5E",3,536871095]],["^70",[174,"^5F","test1 property",536871095]],["^70",[174,"^3",1755080762463,536871095]],["^70",[174,"^2M","~u00000002-2048-5766-4300-000000000000",536871095]],["^70",[174,"^>","^?",536871095]],["^70",[174,"^;","^1A",536871095]],["^70",[174,"^=",true,536871095]],["^70",[174,"^B","^C",536871095]],["^70",[174,"^3J",true,536871095]],["^70",[174,"^4@",true,536871095]],["^70",[174,"^1L","^7<",536871095]],["^70",[175,"^4H",1755080762463,536871095]],["^70",[175,"^6K","quick add",536871095]],["^70",[175,"^5E",134,536871095]],["^70",[175,"^5F","Quick add",536871095]],["^70",[175,"^3",1755080762463,536871095]],["^70",[175,"^2M","~u00000004-7336-8251-3000-000000000000",536871095]],["^70",[175,"^3J",true,536871095]],["^70",[175,"^3U",true,536871095]],["^70",[176,"^;","^14",536871096]],["^70",[176,"^25","~:sqlite-db",536871096]],["^70",[177,"^;","^2U",536871096]],["^70",[177,"^25",1755080762623,536871096]],["^70",[178,"^4H",1755080762636,536871098]],["^70",[178,"^6K","e2etest",536871098]],["^70",[178,"^5E",134,536871098]],["^70",[178,"^5F","e2etest",536871098]],["^70",[178,"^R",536871097,536871100]],["^70",[178,"^3",1755080762636,536871098]],["^70",[178,"^2M","~u302246b1-72ed-4d45-b531-e5f2e119dd75",536871098]],["^70",[178,"^34",0,536871099]],["^70",[178,"^53","zhiyuan+e2e@logseq.com",536871098]],["^70",[178,"^D","e2etest",536871098]],["^70",[179,"^4H",1755080765331,536871101]],["^70",[179,"^5:",20250813,536871101]],["^70",[179,"^6K","aug 13th, 2025",536871101]],["^70",[179,"^62",21,536871106]],["^70",[179,"^62",135,536871106]],["^70",[179,"^3H",21,536871105]],["^70",[179,"^3H",135,536871105]],["^70",[179,"^5E",135,536871101]],["^70",[179,"^5F","Aug 13th, 2025",536871101]],["^70",[179,"^R",536871105,536871106]],["^70",[179,"^3",1755080765331,536871101]],["^70",[179,"^2M","~u00000001-2025-0813-0000-000000000000",536871101]],["^70",[179,"^1@",178,536871104]],["^70",[179,"^34",0,536871102]]]]]] \ No newline at end of file